/* Synthix Brand - Premium Dark Theme with Cyan Accent */
:root {
    --primary: #00BFFF;
    --primary-dark: #009ACD;
    --dark-bg: #0a0a0a;
    --card-surface: #131313;
    --light-bg: #1a1a1a;
    --text-dark: #f5f5f5;
    --text-light: #B0B0B0;
    --white: #ffffff;
    --accent: #00BFFF;
    --accent-soft: #67d5ff;
    --success: #00BFFF;
    --warning: rgba(0, 191, 255, 0.6);
    --error: rgba(255, 100, 100, 0.7);
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.06);
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --card-bg: linear-gradient(180deg, #131313 0%, #101010 100%);
    --input-bg: #050505;
    --gradient: linear-gradient(135deg, #0a0a0a 0%, #101010 100%);
    --glow-cyan: 0 0 16px rgba(0, 191, 255, 0.4);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--dark-bg) url('../img/hero-audit.jpg') center top / 100% auto no-repeat fixed;
}

a { color: var(--accent); }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
    background: var(--dark-bg);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.brand-logo { display: flex; align-items: center; gap: 10px; }

.brand-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--glow-cyan);
    flex-shrink: 0;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.brand-wordmark {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.06em;
    color: var(--text-dark);
}

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

/* ===== Hero ===== */
.hero {
    background: rgba(10, 10, 10, 0.65);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 28px 70px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* SVG Animations */
@keyframes orb-pulse-slow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}
@keyframes orb-pulse-medium {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.08); }
}
.orb-pulse-slow { transform-origin: center; animation: orb-pulse-slow 6s ease-in-out infinite; }
.orb-pulse-medium { transform-origin: center; animation: orb-pulse-medium 4s ease-in-out infinite; animation-delay: 1s; }

@keyframes node-pulse-a { 0%, 100% { opacity: 0.8; } 50% { opacity: 1; } }
@keyframes node-pulse-b { 0%, 100% { opacity: 0.6; } 50% { opacity: 0.9; } }
@keyframes node-pulse-c { 0%, 100% { opacity: 0.9; } 50% { opacity: 0.5; } }
.node-pulse-a { animation: node-pulse-a 3s ease-in-out infinite; }
.node-pulse-b { animation: node-pulse-b 3.5s ease-in-out infinite; animation-delay: 0.8s; }
.node-pulse-c { animation: node-pulse-c 4s ease-in-out infinite; animation-delay: 1.5s; }
.node-glow { animation: node-pulse-a 3s ease-in-out infinite; }

/* Hero Badge Pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,191,255,0.08);
    border: 1px solid rgba(0,191,255,0.25);
    padding: 8px 18px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    margin-bottom: 30px;
}

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

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
    50% { opacity: 0.6; box-shadow: 0 0 14px var(--accent); }
}

.hero-badge-text {
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 0.16em;
    font-weight: 600;
}

/* Gradient headline text */
.hero h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.08;
}

.gradient-text {
    background: linear-gradient(135deg, #00BFFF, #67d5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 19px;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.55;
}

.tech-pipe {
    font-size: 14px;
    color: #888;
    margin: 0;
}
.pipe-item { color: var(--accent); }
.pipe-sep { margin: 0 12px; opacity: 0.3; }
/* Legacy support */
.tech-pipe .sep { opacity: 0.4; margin: 0 6px; }

/* ===== Trust Bar ===== */
.trust-bar {
    background: rgba(10, 10, 10, 0.92);
    border-top: 1px solid rgba(0, 191, 255, 0.12);
    border-bottom: 1px solid rgba(0, 191, 255, 0.12);
    padding: 18px 0;
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.trust-icon {
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
}

/* ===== Audit Layout (Split) ===== */
.audit-section {
    padding: 36px 0 64px;
    background: rgba(10, 10, 10, 0.88);
}

.audit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* ===== Audit Card (shared style for form-card & teaser) ===== */
.audit-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.audit-card:hover {
    border-color: rgba(0,191,255,0.2);
}

/* Cyan top beam */
.audit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,191,255,0.5), transparent);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.card-header-icon {
    font-size: 14px;
    color: var(--accent);
}

.card-header-label {
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.14em;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

/* ===== Form Card ===== */
.form-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,191,255,0.5), transparent);
}

/* form-card h2 is now inside .card-header, styled via .card-header-label */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--text-light);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-dark);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder { color: #666; }
.form-group select { appearance: auto; }
.form-group select option { background: var(--dark-bg); color: var(--text-dark); }

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.15);
}

.form-group--checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 13px;
    cursor: pointer;
    color: var(--text-light);
}

.form-group--checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--accent);
}

.form-group--checkbox a { color: var(--accent); }

.error-msg {
    display: block;
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 4px;
    min-height: 1.2em;
}

.form-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 14px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn--primary {
    background: linear-gradient(135deg, #00BFFF, #009ACD);
    color: var(--dark-bg);
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,191,255,0.25);
}

.btn--primary:hover {
    box-shadow: 0 6px 28px rgba(0,191,255,0.4);
    transform: translateY(-1px);
}

.btn--primary:active {
    transform: scale(0.98);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ===== Hero CTA ===== */
.cta-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00BFFF, #009ACD);
    color: var(--dark-bg);
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 6px 28px rgba(0,191,255,0.35);
    border: none;
    cursor: pointer;
    margin-bottom: 32px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cta-hero:hover {
    box-shadow: 0 8px 36px rgba(0,191,255,0.5);
    transform: translateY(-2px);
}

.cta-hero:active {
    transform: translateY(0);
}

.cta-arrow {
    font-size: 18px;
}

.audit-section {
    scroll-margin-top: 32px;
}

/* ===== Audit Counter ===== */
.audit-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    margin: -16px 0 32px;
    transition: opacity 0.6s ease;
}

.counter-icon {
    font-size: 15px;
}

.audit-counter strong {
    color: var(--accent);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

/* ===== Teaser Panel ===== */
.progress-teaser {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.progress-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,191,255,0.5), transparent);
}

/* progress-teaser h2 is now inside .card-header, styled via .card-header-label */

.teaser-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.teaser-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark);
    padding: 4px 0;
}

.teaser-icon {
    width: 26px;
    height: 26px;
    background: rgba(0,191,255,0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 14px;
}

.teaser-note {
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ===== Live Panel ===== */
.progress-live {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.progress-live::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,191,255,0.5), transparent);
}

.progress-live h2 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

/* ===== Time Display (Running state) ===== */
.time-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 18px 0 22px;
}

.time-block {
    background: rgba(0,191,255,0.04);
    border: 1px solid rgba(0,191,255,0.12);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    text-align: center;
}

.time-label {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.time-value {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

/* ===== Queue Display (Queued state) ===== */
.queue-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}

.queue-stat {
    background: rgba(0,191,255,0.04);
    border: 1px solid rgba(0,191,255,0.12);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
}

.queue-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.queue-stat-label {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

.queue-explanation {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

.queue-explanation .q-icon {
    font-size: 16px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== Progress Bar ===== */
.progress-bar-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
}

.progress-bar-track {
    flex: 1;
    height: 6px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00BFFF, #67d5ff);
    border-radius: 3px;
    transition: width 0.6s ease;
    box-shadow: 0 0 12px rgba(0,191,255,0.4);
}

.progress-percent {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    min-width: 40px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.status-text {
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 20px;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
}

/* Hide progress bar + status text on completion */
.progress-bar-wrap.done-hidden,
.status-text.done-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* ===== Checklist ===== */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 16px 0;
    overflow: hidden;
    max-height: 600px;
    transition: max-height 0.6s ease, opacity 0.4s ease, margin 0.6s ease;
}

.checklist.checklist--collapsed {
    max-height: 0;
    opacity: 0;
    margin: 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 10px;
    border-radius: 6px;
    transition: background 0.3s, opacity 0.3s;
    font-size: 13px;
}

.check-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: color 0.3s;
}

.check-label { flex: 1; }

/* Checklist States */
.check-item--pending {
    opacity: 0.35;
}
.check-item--pending .check-icon {
    color: rgba(255, 255, 255, 0.15);
}

.check-item--active {
    background: rgba(0, 191, 255, 0.06);
    opacity: 1;
}
.check-item--active .check-icon {
    color: var(--accent);
    animation: checkPulse 1.2s ease-in-out infinite;
}
.check-item--active .check-label {
    font-weight: 600;
    color: var(--accent);
}

.check-item--done { opacity: 1; }
.check-item--done .check-icon { color: var(--accent); }
.check-item--done .check-label { color: var(--text-dark); }

@keyframes checkPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}

/* ===== Error Banner ===== */
.error-banner {
    background: rgba(255, 100, 100, 0.08);
    border: 1px solid rgba(255, 100, 100, 0.3);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: rgba(255, 100, 100, 0.9);
    text-align: center;
    margin-bottom: 20px;
}

/* ===== Result Dashboard ===== */
.result-dashboard {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Score Circle */
.score-wrap {
    text-align: center;
    margin-bottom: 28px;
}

.score-circle {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 120px;
}

.score-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 8;
}

.score-fg {
    fill: none;
    stroke: var(--accent);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke 0.3s;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.score-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 60%);
    font-size: 12px;
    color: var(--text-light);
}

.score-verdict {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-light);
}

/* Category Bars */
.category-scores {
    max-width: 100%;
    margin: 0 0 24px;
}

.category-bar { margin-bottom: 12px; }

.cat-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 4px;
}

.cat-name { font-weight: 600; color: var(--text-dark); }
.cat-score { color: var(--text-light); }

.cat-track {
    height: 6px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
}

.cat-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.8s ease;
}

/* PDF Download */
.pdf-download {
    text-align: center;
    margin-bottom: 16px;
}

.btn--pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: rgba(0, 191, 255, 0.08);
    border: 1px solid rgba(0, 191, 255, 0.25);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.btn--pdf:hover {
    background: rgba(0, 191, 255, 0.14);
    border-color: rgba(0, 191, 255, 0.4);
}

.pdf-icon {
    font-size: 20px;
}

/* Result CTA */
.result-cta {
    text-align: center;
    background: rgba(0, 191, 255, 0.04);
    border: 1px solid rgba(0, 191, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
}

.result-cta p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 0;
}

.result-cta .btn {
    margin-top: 12px;
}

/* Result dashboard inside progress panel */
.progress-live .result-dashboard {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ===== Footer ===== */
.site-footer {
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(5,5,5,0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0 32px;
    font-size: 13px;
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-col h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-anchor {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.footer-anchor .cyan { color: var(--accent); }

.footer-copy {
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.6;
}

/* ===== Legal Pages ===== */
.legal-page {
    padding: 48px 0;
    max-width: 640px;
    margin: 0 auto;
}

.legal-page h1 { margin-bottom: 24px; }

.legal-page h2 {
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.legal-page ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

/* ===== AI Features Section ===== */
.ai-features-section {
    position: relative;
    overflow: hidden;
    padding: 56px 28px 64px;
    background: rgba(10, 10, 10, 0.92);
}

.features-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.features-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 36px;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,191,255,0.08);
    border: 1px solid rgba(0,191,255,0.2);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.14em;
    font-weight: 600;
}

.features-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    color: var(--text-dark);
}

.features-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 auto 6px;
    max-width: 520px;
}

.features-disclaimer {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.features-disclaimer span {
    color: var(--accent);
    font-weight: 500;
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
    border-color: rgba(0,191,255,0.25);
    transform: translateY(-2px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,191,255,0.5), transparent);
}

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

.feature-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--text-dark);
}

.feature-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0 0 16px;
}

.feature-benefit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
    padding-top: 12px;
    border-top: 1px solid rgba(0,191,255,0.12);
}

/* Trust Boxes */
.trust-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.trust-box {
    background: rgba(0,191,255,0.04);
    border: 1px solid rgba(0,191,255,0.15);
    border-radius: var(--radius);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-box-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.trust-box-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.trust-box-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    .orb-pulse-slow,
    .orb-pulse-medium,
    .node-pulse-a,
    .node-pulse-b,
    .node-pulse-c,
    .node-glow,
    .hero-badge-dot,
    .check-item--active .check-icon {
        animation: none !important;
    }
    .progress-bar { transition: none; }
    .feature-card { transition: none; }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .audit-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .audit-form-col { order: 1; }
    .audit-progress-col { order: 2; }

    .hero h1 {
        font-size: 36px;
        line-height: 1.12;
        letter-spacing: -0.02em;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .tech-pipe {
        font-size: 12px;
        line-height: 1.8;
    }

    .tech-pipe .pipe-sep {
        margin: 0 6px;
    }

    .cta-hero {
        font-size: 14px;
        padding: 12px 24px;
    }

    .trust-bar .container {
        flex-direction: column;
        gap: 10px;
        padding: 14px 20px;
    }

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

    .form-card { padding: 20px; }
    .progress-teaser { padding: 20px; }
    .progress-live { padding: 20px; }

    .score-circle { width: 90px; height: 90px; }
    .score-value { font-size: 1.6rem; }

    .category-scores { margin: 0 0 20px; }

    .result-cta .btn { width: 100%; text-align: center; }

    .queue-info { grid-template-columns: 1fr; }
    .time-display { grid-template-columns: 1fr; }

    /* Hero SVG pattern reduced on mobile */
    .hero-bg-pattern { opacity: 0.7; }
    .orb-pulse-slow, .orb-pulse-medium {
        animation: orb-pulse-slow 8s ease-in-out infinite;
        transform: none;
    }
    .hero-content { padding: 56px 20px 48px; }

    /* AI Features responsive */
    .features-grid { grid-template-columns: 1fr; }
    .trust-boxes { grid-template-columns: 1fr; }
    .features-title { font-size: 22px; }
    .ai-features-section { padding: 40px 20px 48px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 28px; }
    .subtitle { font-size: 14px; }
    .hero-badge-text { font-size: 10px; }

    .check-label { font-size: 12px; }
    .check-item { padding: 5px 8px; gap: 10px; }

    .teaser-item { font-size: 12px; }
    .trust-item { font-size: 12px; }
}
