/* =============================================
   AUDITOR HERO - Enhanced Design (Same as Solutions)
   ============================================= */
.auditor-hero-enhanced {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f172a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}


/* Background Effects */
.auditor-hero-enhanced .hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    bottom: 0;
    right: -200px;
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.15) 0%, transparent 60%);
    animation: pulseGlow 5s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.05);
    }
}

/* Floating Particles */
.hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    animation: floatParticleHero 15s infinite;
}

.hero-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
    left: 20%;
    top: 60%;
    animation-delay: -3s;
}

.hero-particles span:nth-child(3) {
    left: 70%;
    top: 30%;
    animation-delay: -5s;
}

.hero-particles span:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: -8s;
}

.hero-particles span:nth-child(5) {
    left: 50%;
    top: 80%;
    animation-delay: -12s;
}

@keyframes floatParticleHero {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-40px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Hero Content */
.auditor-hero-enhanced .hero-content-center {
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

/* Badge Animated */
.hero-badge-animated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge-animated svg {
    stroke: #a5b4fc;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22d3ee;
    border-radius: 50%;
    animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.3);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
}

@keyframes dotBlink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px #22d3ee;
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 4px #22d3ee;
    }
}

/* Hero Title */
.auditor-hero-enhanced h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.text-gradient-animated {
    background: linear-gradient(135deg, #22d3ee 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Hero Subtitle */
.auditor-hero-enhanced .hero-subtitle-dark {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Hero Badge */
.auditor-hero-enhanced .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: badgePulse 3s ease-in-out infinite;
}

.auditor-hero-enhanced .hero-badge svg {
    stroke: #a5b4fc;
}

/* Trust Indicators */
.auditor-hero-enhanced .hero-trust-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.auditor-hero-enhanced .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
}

.auditor-hero-enhanced .trust-item svg {
    stroke: #22d3ee;
}

/* Benefits Grid Enhanced */
.auditor-hero-enhanced .benefits-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.auditor-hero-enhanced .benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.auditor-hero-enhanced .benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
}

.auditor-hero-enhanced .benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.auditor-hero-enhanced .benefit-icon-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
}

.auditor-hero-enhanced .benefit-icon-cyan svg {
    stroke: #22d3ee;
}

.auditor-hero-enhanced .benefit-icon-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
}

.auditor-hero-enhanced .benefit-icon-purple svg {
    stroke: #a855f7;
}

.auditor-hero-enhanced .benefit-icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
}

.auditor-hero-enhanced .benefit-icon-green svg {
    stroke: #10b981;
}

.auditor-hero-enhanced .benefit-icon-rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(244, 63, 94, 0.1));
}

.auditor-hero-enhanced .benefit-icon-rose svg {
    stroke: #f43f5e;
}

.auditor-hero-enhanced .benefit-content {
    text-align: left;
}

.auditor-hero-enhanced .benefit-content strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.15rem;
}

.auditor-hero-enhanced .benefit-content span {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Legacy Features Grid - kept for backward compatibility */

.feature-card-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.feature-card-hero:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
}

.feature-icon-hero {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.feature-icon-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
}

.feature-icon-cyan svg {
    stroke: #22d3ee;
}

.feature-icon-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
}

.feature-icon-purple svg {
    stroke: #a855f7;
}

.feature-icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
}

.feature-icon-green svg {
    stroke: #10b981;
}

.feature-icon-amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
}

.feature-icon-amber svg {
    stroke: #f59e0b;
}

.feature-text {
    text-align: left;
}

.feature-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.15rem;
}

.feature-text span {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* =============================================
   AUDIT FORM SECTION - Premium White Design
   ============================================= */
.audit-form-section-enhanced {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #eef2ff 100%);
    position: relative;
}

.audit-form-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.audit-card-premium {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
    position: relative;
}

/* Card Header Premium */
.audit-card-header-premium {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.header-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2ff, #f0fdff);
    border-radius: 20px;
    flex-shrink: 0;
}

.header-icon-wrapper svg {
    stroke: #6366f1;
}

.header-text {
    flex: 1;
}

.header-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    color: #6366f1;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.header-text h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.header-text p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Premium */
.audit-form-premium {
    margin-bottom: 2rem;
}

.form-group-premium {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group-premium label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.form-group-premium label svg {
    stroke: #6366f1;
}

.input-wrapper-premium {
    display: flex;
    align-items: stretch;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.input-wrapper-premium:focus-within {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.input-prefix-premium {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    border-right: 2px solid #e2e8f0;
}

.audit-form-premium input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    font-size: 1rem;
    color: #0f172a;
    background: transparent;
    min-width: 0;
}

.audit-form-premium input:focus {
    outline: none;
}

.audit-form-premium input::placeholder {
    color: #94a3b8;
}

.btn-scan-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-scan-premium:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.btn-scan-premium svg {
    stroke: #ffffff;
}

/* Trust Indicators */
.audit-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.trust-indicator svg {
    stroke: #10b981;
}

/* Analysis Preview */
.audit-analysis-preview {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f0fdff);
    border: 1px solid #e0e7ff;
    border-radius: 16px;
}

.audit-analysis-preview h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.analysis-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.analysis-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #475569;
}

.analysis-check {
    color: #10b981;
    font-weight: 700;
}

/* =============================================
   LEGACY STYLES (kept for backwards compatibility)
   ============================================= */
.audit-form-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

.audit-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.audit-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.audit-card-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.audit-card-header p {
    color: #64748b;
    font-size: 1rem;
}

.audit-form-white {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.input-wrapper-white {
    display: flex;
    align-items: stretch;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-wrapper-white:focus-within {
    border-color: #6366f1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.input-prefix {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    border-right: 2px solid #e2e8f0;
}

.audit-form-white input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    font-size: 1rem;
    color: #0f172a;
    background: transparent;
}

.audit-form-white input:focus {
    outline: none;
}

.audit-form-white input::placeholder {
    color: #94a3b8;
}

.btn-scan-solid {
    padding: 1rem 2rem;
    background: #6366f1;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-scan-solid:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.audit-disclaimer-white {
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 1.5rem;
}

/* =============================================
   CAPTCHA STYLES - Premium Design
   ============================================= */
.captcha-group-premium {
    margin-top: 0.5rem;
}

.captcha-container-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

.captcha-container-premium:focus-within {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.captcha-question-premium {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.captcha-text-premium {
    font-size: 1rem;
    color: #334155;
}

.captcha-text-premium strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0.25rem;
}

.captcha-input-premium {
    width: 145px !important;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.6rem 1rem !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background: #ffffff;
    color: #0f172a;
    transition: all 0.3s ease;
}

.captcha-input-premium:focus {
    outline: none;
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Hide number input spinners */
.captcha-input-premium::-webkit-outer-spin-button,
.captcha-input-premium::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.captcha-input-premium[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.captcha-group-premium label {
    justify-content: center;
}

.captcha-hint-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.captcha-hint-premium::before {
    content: '🛡️';
    font-size: 0.9rem;
}

/* Responsive for Captcha */
@media (max-width: 640px) {
    .captcha-container-premium {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .captcha-question-premium {
        width: 100%;
        justify-content: center;
    }

    .captcha-input-premium {
        width: 100% !important;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid-dark {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .auditor-hero-dark {
        padding: 100px 0 40px;
    }

    .auditor-hero-dark h1 {
        font-size: 2rem;
    }

    .benefits-grid-dark {
        grid-template-columns: 1fr;
    }

    .audit-card {
        padding: 1.5rem;
    }
}

/* =============================================
   LOADING OVERLAY
   ============================================= */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-content h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 300px;
    margin: 0 auto;
}

.loading-steps .step {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    text-align: left;
}

.loading-steps .step.active {
    background: rgba(0, 210, 255, 0.2);
    color: var(--accent-primary);
    border-left: 3px solid var(--accent-primary);
}

.loading-steps .step.done {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.loading-steps .step.done::before {
    content: '✓ ';
}

/* =============================================
   RESULTS SECTION
   ============================================= */
.results-section {
    padding: 4rem 0;
    background: var(--bg-darker);
}

.results-card {
    padding: 3rem;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.result-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.result-domain {
    color: var(--accent-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.result-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.result-score {
    text-align: center;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid var(--score-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.score-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--score-color);
    line-height: 1;
    font-family: var(--font-code);
}

.score-label {
    font-size: 1rem;
    color: var(--text-muted);
}

.score-grade {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--score-color);
}

/* Results Summary */
.results-summary {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.summary-item {
    display: flex;
    flex-direction: column;
}

.summary-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.summary-value {
    font-size: 1.3rem;
    font-weight: 600;
    font-family: var(--font-code);
}

/* Results Checks */
.results-checks h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.check-item {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid transparent;
}

.check-item.success {
    border-color: #22c55e;
}

.check-item.warning {
    border-color: #eab308;
}

.check-item.error {
    border-color: #ef4444;
}

.check-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    font-size: 1.5rem;
}

.check-name {
    flex: 1;
    font-weight: 600;
    font-size: 1.1rem;
}

.check-value {
    color: var(--text-muted);
    font-family: var(--font-code);
    font-size: 0.9rem;
}

.check-recommendation {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--accent-secondary);
    font-size: 0.95rem;
}

.rec-icon {
    flex-shrink: 0;
}

/* Results CTA */
.results-cta {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    text-align: center;
}

.cta-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.warning-icon {
    font-size: 2.5rem;
}

.cta-warning strong {
    color: #ef4444;
    display: block;
    margin-bottom: 0.3rem;
}

.cta-warning p {
    color: var(--text-muted);
    margin: 0;
}

.results-success {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.results-success span {
    font-size: 2rem;
}

.results-success p {
    color: var(--text-muted);
    margin: 0;
}

/* Error Card */
.error-card {
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.error-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.error-card h3 {
    margin-bottom: 1rem;
}

.error-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* =============================================
   CTA SECTION - ENHANCED
   ============================================= */
.cta-section-enhanced {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0f1a 0%, #0f172a 50%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

/* Floating particles */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.cta-particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.cta-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    width: 8px;
    height: 8px;
}

.cta-particles span:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-delay: -3s;
    width: 12px;
    height: 12px;
    background: rgba(168, 85, 247, 0.3);
}

.cta-particles span:nth-child(3) {
    left: 70%;
    top: 15%;
    animation-delay: -6s;
    width: 6px;
    height: 6px;
}

.cta-particles span:nth-child(4) {
    left: 85%;
    top: 50%;
    animation-delay: -9s;
    width: 14px;
    height: 14px;
    background: rgba(34, 211, 238, 0.3);
}

.cta-particles span:nth-child(5) {
    left: 50%;
    top: 80%;
    animation-delay: -12s;
    width: 10px;
    height: 10px;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-40px) translateX(20px) scale(1.2);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-20px) translateX(-10px) scale(0.8);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-60px) translateX(30px) scale(1.1);
        opacity: 0.5;
    }
}

.cta-enhanced-wrapper {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    backdrop-filter: blur(20px);
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #c4b5fd;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulseGlow 3s ease-in-out infinite;
}

.cta-badge svg {
    color: #fbbf24;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
    }
}

/* Main title */
.cta-main-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.text-gradient-animated {
    background: linear-gradient(135deg, #22d3ee 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Main description */
.cta-main-description {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* Benefits grid */
.cta-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.cta-benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
}

.benefit-icon-wrapper {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.benefit-icon-security {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: #22c55e;
}

.benefit-icon-speed {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.2) 0%, rgba(250, 204, 21, 0.05) 100%);
    color: #facc15;
}

.benefit-icon-ssl {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.05) 100%);
    color: #818cf8;
}

.benefit-icon-seo {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2) 0%, rgba(244, 63, 94, 0.05) 100%);
    color: #fb7185;
}

.cta-benefit-item:hover .benefit-icon-wrapper {
    transform: scale(1.1);
}

.benefit-text {
    text-align: center;
}

.benefit-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.2rem;
}

.benefit-text span {
    font-size: 0.8rem;
    color: #64748b;
}

/* Score comparison */
.cta-score-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.score-before,
.score-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.score-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.score-circle-small {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-code);
}

.score-low {
    border: 4px solid #ef4444;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.score-high {
    border: 4px solid #22c55e;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    animation: scoreGlow 2s ease-in-out infinite;
}

@keyframes scoreGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(34, 197, 94, 0.6);
    }
}

.score-arrow {
    color: #6366f1;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

/* CTA Button Enhanced */
.cta-button-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button-enhanced:hover::before {
    left: 100%;
}

.cta-button-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.cta-button-enhanced .btn-icon {
    display: flex;
    transition: transform 0.3s ease;
}

.cta-button-enhanced:hover .btn-icon {
    transform: translateX(5px);
}

/* Trust indicators */
.cta-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.trust-item svg {
    color: #22c55e;
}

/* Responsive */
@media (max-width: 1024px) {
    .cta-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cta-section-enhanced {
        padding: 4rem 0;
    }

    .cta-enhanced-wrapper {
        padding: 2rem 1.5rem;
    }

    .cta-main-title {
        font-size: 2rem;
    }

    .cta-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .cta-benefit-item {
        padding: 1rem 0.75rem;
    }

    .cta-score-comparison {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .score-circle-small {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-trust-indicators {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .cta-main-title {
        font-size: 1.75rem;
    }

    .cta-main-description {
        font-size: 1rem;
    }

    .cta-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefit-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .benefit-icon-wrapper svg {
        width: 20px;
        height: 20px;
    }

    .benefit-text strong {
        font-size: 0.85rem;
    }

    .cta-button-enhanced {
        padding: 1rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .analysis-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .auditor-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .audit-form {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .results-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .result-score {
        margin: 0 auto;
    }

    .results-summary {
        flex-direction: column;
        text-align: center;
    }

    .check-header {
        flex-wrap: wrap;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-warning {
        flex-direction: column;
        text-align: center;
    }

    /* New Enhanced Styles */
    .auditor-hero-enhanced {
        padding: 100px 0 60px;
    }

    .auditor-hero-enhanced h1 {
        font-size: 2.5rem;
    }

    .auditor-hero-enhanced .hero-subtitle-dark {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .auditor-hero-enhanced .hero-trust-row {
        gap: 1rem;
    }

    .auditor-hero-enhanced .trust-item {
        font-size: 0.8rem;
    }

    .auditor-hero-enhanced .benefits-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .auditor-hero-enhanced .benefit-card {
        padding: 1rem;
    }

    .auditor-hero-enhanced .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .auditor-hero-enhanced .benefit-icon svg {
        width: 24px;
        height: 24px;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .feature-card-hero {
        padding: 1rem;
    }

    .feature-icon-hero {
        width: 48px;
        height: 48px;
    }

    .feature-icon-hero svg {
        width: 24px;
        height: 24px;
    }

    .audit-form-section-enhanced {
        padding: 3rem 0 4rem;
    }

    .audit-card-premium {
        padding: 2rem;
    }

    .audit-card-header-premium {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .header-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .header-icon-wrapper svg {
        width: 32px;
        height: 32px;
    }

    .header-text h2 {
        font-size: 1.5rem;
    }

    .input-wrapper-premium {
        flex-direction: column;
        border-radius: 14px;
    }

    .input-prefix-premium {
        border-right: none;
        border-bottom: 2px solid #e2e8f0;
        padding: 0.75rem 1rem;
        justify-content: center;
    }

    .btn-scan-premium {
        padding: 1rem;
        justify-content: center;
        border-radius: 0 0 12px 12px;
    }

    .audit-trust-indicators {
        gap: 1rem;
    }

    .trust-indicator {
        font-size: 0.8rem;
    }

    .analysis-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-shapes {
        display: none;
    }
}

@media (max-width: 480px) {
    .auditor-hero h1 {
        font-size: 2rem;
    }

    .audit-box {
        padding: 1.5rem;
    }

    .results-card {
        padding: 1.5rem;
    }

    /* New Enhanced Styles */
    .auditor-hero-enhanced h1 {
        font-size: 2rem;
    }

    .hero-badge-animated {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .audit-card-premium {
        padding: 1.5rem;
    }

    .header-text h2 {
        font-size: 1.3rem;
    }

    .audit-trust-indicators {
        flex-direction: column;
        gap: 0.75rem;
    }

    .analysis-items-grid {
        grid-template-columns: 1fr;
    }

    /* New benefit cards responsive */
    .auditor-hero-enhanced .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .auditor-hero-enhanced .hero-trust-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .auditor-hero-enhanced .benefits-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .auditor-hero-enhanced .benefit-card {
        padding: 1rem;
    }

    .auditor-hero-enhanced .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .auditor-hero-enhanced .benefit-icon svg {
        width: 24px;
        height: 24px;
    }

    .audit-card-header-premium {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .captcha-container-premium {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-input-premium {
        width: 100% !important;
    }
}

/* =============================================
   BENEFITS HIGHLIGHT SECTION (Moved from Hero)
   ============================================= */
.benefits-highlight-section {
    background: linear-gradient(180deg, #f2f2f2 0%, #f2f2f2 100%);
    padding: 6rem 0;
    position: relative;
}

.benefits-highlight-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-highlight-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    /* Slate 900 for Light Theme */
    letter-spacing: -0.03em;
}

.benefits-highlight-section .section-title .highlight {
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-highlight-section .benefits-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-highlight-section .benefit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.benefits-highlight-section .benefit-card:hover {
    transform: translateY(-8px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.benefits-highlight-section .benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
}

.benefits-highlight-section .benefit-icon-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.benefits-highlight-section .benefit-icon-cyan svg {
    stroke: #0891b2;
}

.benefits-highlight-section .benefit-icon-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.benefits-highlight-section .benefit-icon-purple svg {
    stroke: #9333ea;
}

.benefits-highlight-section .benefit-icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.benefits-highlight-section .benefit-icon-green svg {
    stroke: #059669;
}

.benefits-highlight-section .benefit-icon-rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.1), rgba(244, 63, 94, 0.05));
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.benefits-highlight-section .benefit-icon-rose svg {
    stroke: #e11d48;
}

.benefits-highlight-section .benefit-content {
    text-align: left;
    width: 100%;
}

.benefits-highlight-section .benefit-content strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    /* Slate 800 */
    margin-bottom: 0.5rem;
}

.benefits-highlight-section .benefit-content span {
    font-size: 0.95rem;
    color: #64748b;
    /* Slate 500 */
    line-height: 1.5;
    display: block;
}

/* Responsive Benefits Section */
@media (max-width: 1024px) {
    .benefits-highlight-section .benefits-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-highlight-section {
        padding: 3rem 0;
    }

    .benefits-highlight-section .section-title {
        font-size: 2rem;
    }

    .benefits-highlight-section .benefits-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .benefits-highlight-section .benefit-card {
        padding: 1.25rem;
    }

    .benefits-highlight-section .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .benefits-highlight-section .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Hero Description */
.auditor-hero-enhanced .hero-description {
    max-width: 700px;
    margin: 0 auto;
}

.auditor-hero-enhanced .hero-description p {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.auditor-hero-enhanced .hero-description p:last-child {
    margin-bottom: 0;
}

/* =============================================
   CAPTCHA STYLES (Copied from Contact.css)
   ============================================= */
.captcha-group {
    margin-top: 0.5rem;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

.captcha-container:focus-within {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.captcha-question {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.captcha-text {
    font-size: 1rem;
    color: #334155;
}

.captcha-text strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0.25rem;
}

.captcha-input {
    width: 145px !important;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.6rem 1rem !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background: white !important;
    color: #0f172a !important;
}

.captcha-input:focus {
    border-color: #6366f1 !important;
    outline: none !important;
}

/* Hide number input spinners */
.captcha-input::-webkit-outer-spin-button,
.captcha-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.captcha-input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.captcha-hint {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.captcha-hint::before {
    content: '🛡️';
    font-size: 0.9rem;
}
/* =============================================
   METRICS SECTION - What We Measure
   ============================================= */
.auditor-metrics-section {
    padding: 6rem 0;
    background: #0f172a;
}

.auditor-metrics-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.auditor-metrics-header h2 {
    font-size: 2.2rem;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.auditor-metrics-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.auditor-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.auditor-metric-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.auditor-metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.auditor-metric-icon.cyan {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
}

.auditor-metric-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.auditor-metric-icon.rose {
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
}

.auditor-metric-icon svg {
    stroke: currentColor;
}

.auditor-metric-card h3 {
    color: #f1f5f9;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.auditor-metric-list {
    list-style: none;
    padding: 0;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.auditor-metric-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auditor-metric-list li:last-child {
    margin-bottom: 0;
}

.auditor-metric-list li .bullet { flex-shrink: 0; }
.auditor-metric-list li .bullet.cyan { color: #22d3ee; }
.auditor-metric-list li .bullet.purple { color: #a855f7; }
.auditor-metric-list li .bullet.rose { color: #f43f5e; }

/* =============================================
   COMPARISON SECTION - Plans Table
   ============================================= */
.auditor-comparison-section {
    padding: 6rem 0;
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.auditor-comparison-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.auditor-comparison-header h2 {
    font-size: 2.2rem;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.auditor-comparison-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.auditor-comparison-table-wrapper {
    overflow-x: auto;
}

.auditor-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.auditor-comparison-table th,
.auditor-comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.auditor-comparison-table thead th {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auditor-comparison-table th:first-child {
    text-align: left;
    color: #94a3b8;
}

.auditor-comparison-table th.col-free {
    text-align: center;
    color: #f8fafc;
    width: 25%;
}

.auditor-comparison-table th.col-pro {
    text-align: center;
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.05);
    border-bottom-color: rgba(34, 211, 238, 0.3);
    width: 25%;
}

.auditor-comparison-table td:first-child {
    color: #cbd5e1;
}

.auditor-comparison-table td { text-align: center; color: #94a3b8; }
.auditor-comparison-table td.col-pro { color: #f8fafc; background: rgba(34, 211, 238, 0.02); }
.auditor-comparison-table .check-yes { color: #22c55e; }
.auditor-comparison-table .check-no { color: #ef4444; }

.auditor-comparison-table .cta-row td {
    padding: 1.5rem;
    border-bottom: none;
}

.auditor-comparison-table .cta-row .cta-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .auditor-metrics-section, .auditor-comparison-section { padding: 4rem 0; }
    .auditor-metrics-header h2, .auditor-comparison-header h2 { font-size: 1.75rem; }
    .auditor-metrics-grid { grid-template-columns: 1fr; }
}
