﻿/* Reflect.app inspired CSS */
    .reflect-hero {
        position: relative;
        overflow: hidden;
        padding: 8rem 0 6rem 0;
        min-height: 85vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: transparent;
    }
    
    .radar-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100vw;
        height: 100vw;
        max-width: 1200px;
        max-height: 1200px;
        border-radius: 50%;
        border: 1px solid rgba(189, 255, 3, 0.4);
        z-index: 0;
        pointer-events: none;
    }
    
    html.dark .radar-bg {
        border: 1px solid rgba(189, 255, 3, 0.08);
    }
    
    .radar-bg::before, .radar-bg::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        border: 1px solid rgba(189, 255, 3, 0.3);
    }
    
    html.dark .radar-bg::before, html.dark .radar-bg::after {
        border: 1px solid rgba(189, 255, 3, 0.05);
    }
    
    .radar-bg::before { width: 60%; height: 60%; }
    .radar-bg::after { width: 25%; height: 25%; }
    
    .radar-sweep {
        position: absolute;
        top: 0;
        left: 50%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, rgba(189,255,3,0.02) 0%, rgba(189,255,3,0.2) 100%);
        border-right: 1px solid rgba(189,255,3,0.6);
        transform-origin: left center;
        animation: radar-spin 10s linear infinite;
        border-top-right-radius: 600px;
        border-bottom-right-radius: 600px;
        clip-path: polygon(0 50%, 100% 0, 100% 100%);
    }
    
    html.dark .radar-sweep {
        background: linear-gradient(90deg, rgba(189,255,3,0.01) 0%, rgba(189,255,3,0.1) 100%);
        border-right: 1px solid rgba(189,255,3,0.3);
    }
    
    @keyframes radar-spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .reflect-title {
        font-family: 'Inter', sans-serif;
        font-size: clamp(3rem, 8vw, 5.5rem);
        font-weight: 700;
        letter-spacing: -0.04em;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        z-index: 10;
        color: inherit;
    }
    
    .reflect-title span {
        color: #bdff03;
    }
    
    .reflect-subtitle {
        font-size: clamp(1.1rem, 2vw, 1.4rem);
        color: var(--bs-secondary);
        max-width: 600px;
        margin: 0 auto 3rem auto;
        line-height: 1.6;
        z-index: 10;
        font-weight: 400;
    }

    .reflect-input-group {
        display: flex;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        border-radius: 999px;
        background: #ffffff;
        padding: 0.5rem;
        max-width: 600px;
        margin: 0 auto;
        border: 1px solid rgba(0,0,0,0.1);
        z-index: 10;
        position: relative;
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }
    
    html.dark .reflect-input-group {
        border-color: rgba(255,255,255,0.15);
        background: #1a1a1a;
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }
    
    .reflect-input-group:focus-within {
        box-shadow: 0 10px 40px rgba(189, 255, 3, 0.15);
        border-color: #bdff03;
    }
    
    html.dark .reflect-input-group:focus-within {
        box-shadow: 0 10px 40px rgba(189, 255, 3, 0.15);
        border-color: #bdff03;
    }
    
    .reflect-input {
        border: none;
        background: transparent;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        flex: 1;
        outline: none;
        color: inherit;
    }
    
    .scan-progress-box {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        padding: 1.25rem 1.5rem;
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    }
    
    html.dark .scan-progress-box {
        background: rgba(26, 26, 26, 0.5);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    }

    .scan-progress-box small#scan-progress-text {
        color: #555555 !important;
    }

    html.dark .scan-progress-box small#scan-progress-text {
        color: #cccccc !important;
    }

    .scan-progress-box small#scan-progress-pct {
        color: #bdff03 !important;
    }

    html.dark .scan-progress-box small#scan-progress-pct {
        color: #bdff03 !important;
    }

    .scan-progress-box .progress {
        background-color: rgba(0,0,0,0.05);
    }

    html.dark .scan-progress-box .progress {
        background-color: rgba(255,255,255,0.1);
    }
    
    .dashboard-preview-wrapper {
        position: relative;
        z-index: 20;
        margin-top: 5rem;
        width: 100%;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .features-backdrop {
        position: relative;
        padding-top: 3rem;
        margin-top: -3rem;
        padding-bottom: 2rem;
    }
    
    .features-backdrop::before {
        content: '';
        position: absolute;
        bottom: 0; left: 0; width: 100%; height: 10rem;
        background: linear-gradient(to bottom, rgba(253,253,253,0) 0%, rgba(253,253,253,0.9) 60%, rgba(253,253,253,1) 100%);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
        z-index: 0;
        pointer-events: none;
    }
    
    html.dark .features-backdrop::before {
        background: linear-gradient(to bottom, rgba(17,17,17,0) 0%, rgba(17,17,17,0.9) 60%, rgba(17,17,17,1) 100%);
    }
    
    .features-backdrop .row {
        position: relative;
        z-index: 10;
    }
    
    .dashboard-preview-img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(0, 0, 0, 0.05);
        display: block;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    html.dark .dashboard-preview-img {
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
        border-color: rgba(255, 255, 255, 0.05);
    }

    .hero-feature-inline {
        display: flex;
        align-items: flex-start;
        font-size: 1rem;
        line-height: 1.5;
        color: #666666;
    }
    
    html.dark .hero-feature-inline {
        color: #a1a1aa;
    }
    
    .hero-feature-inline strong {
        color: #111111;
        font-weight: 700;
        margin-right: 0.25rem;
    }
    
    html.dark .hero-feature-inline strong {
        color: #ffffff;
    }
    
    .hero-feature-icon {
        color: #bdff03;
        margin-right: 0.75rem;
        margin-top: 0.15rem;
        flex-shrink: 0;
    }
    
    html.dark .hero-feature-icon {
        color: #bdff03;
    }
    
    .reflect-btn {
        background-color: #1a1a1a;
        color: #ffffff;
        border: none;
        border-radius: 999px;
        padding: 0.75rem 2.5rem;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    
    html.dark .reflect-btn {
        background-color: #bdff03;
        color: #1a1a1a;
    }

    .reflect-btn:hover {
        background-color: #bdff03;
        color: #1a1a1a !important;
        transform: translateY(-2px);
        text-decoration: none;
    }
    
    html.dark .reflect-btn:hover {
        background-color: #bdff03;
    }
    
    .reflect-btn-outline {
        background-color: transparent;
        color: #111111;
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 999px;
        padding: 0.75rem 2.5rem;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    
    .reflect-btn-outline:hover {
        border-color: #111111;
        color: #111111;
        text-decoration: none;
    }

    html.dark .reflect-btn-outline {
        border-color: rgba(189, 255, 3, 0.4);
        color: #bdff03;
    }

    html.dark .reflect-btn-outline:hover {
        background-color: rgba(189, 255, 3, 0.1);
        color: #bdff03;
    }

    .reflect-features {
        padding: 6rem 0;
        background: var(--bs-base-1);
        border-top: 1px solid var(--bs-base-2);
        border-bottom: 1px solid var(--bs-base-2);
    }
    
    .feature-card {
        background: var(--bs-base-0);
        border-radius: 24px;
        padding: 3rem 2rem;
        text-align: left;
        border: 1px solid var(--bs-base-2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.03);
        border-color: rgba(189, 255, 3, 0.4);
    }
    
    .feature-icon-wrapper {
        width: 56px;
        height: 56px;
        background: rgba(189, 255, 3, 0.1);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
        color: #bdff03;
    }
    
    html.dark .feature-icon-wrapper {
        background: rgba(189, 255, 3, 0.05);
        color: #bdff03;
    }
    
    .feature-title {
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 1rem;
        letter-spacing: -0.01em;
        color: inherit;
    }
    
    .feature-text {
        color: var(--bs-secondary);
        font-size: 1.05rem;
        line-height: 1.6;
        margin: 0;
    }

    /* Advanced Reports Section */
    .reflect-advanced {
        padding: 6rem 0;
        background: #fdfdfd;
        border-top: 1px solid rgba(0,0,0,0.05);
        position: relative;
        overflow: hidden;
    }
    
    html.dark .reflect-advanced {
        background: transparent;
        border-color: rgba(255,255,255,0.05);
    }
    
    .advanced-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(189, 255, 3, 0.05) 0%, transparent 60%);
        pointer-events: none;
        z-index: 0;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    html.dark .advanced-glow {
        background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(189, 255, 3, 0.07) 0%, transparent 60%);
    }

    .reflect-advanced.is-hovered .advanced-glow {
        opacity: 1;
    }
    
    .advanced-report-stack {
        position: relative;
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    html.dark .advanced-report-stack::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 45%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 90%;
        background: #bdff03;
        opacity: 0.05;
        filter: blur(50px);
        border-radius: 40px;
        z-index: 0;
    }
    
    .report-row-card {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        padding: 1.25rem 1.5rem;
        background: #ffffff;
        border-radius: 12px;
        margin-bottom: 0.75rem;
        border: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }
    
    html.dark .report-row-card {
        background: #1a1a1a;
        border-color: rgba(255,255,255,0.05);
    }
    
    .report-row-icon {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.25rem;
    }
    
    html.dark .report-row-icon.text-success { color: #bdff03 !important; }
    html.dark .report-row-icon.text-danger { color: #ff6b6b !important; }
    html.dark .report-row-icon.text-warning { color: #ffbd2e !important; }
    html.dark .report-row-icon.text-secondary { color: #a1a1aa !important; }
    
    .report-row-title {
        font-weight: 600;
        flex: 1;
        color: #111111;
        font-size: 0.95rem;
    }
    
    html.dark .report-row-title {
        color: #ffffff;
    }
    
    .report-row-desc {
        flex: 1.5;
        color: #666666;
        font-size: 0.95rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-right: 1rem;
    }
    
    html.dark .report-row-desc {
        color: #aaaaaa;
    }
    
    .report-row-info {
        color: #999999;
        opacity: 0.5;
    }
    
    html.dark .report-row-info {
        color: #666666;
    }
    
    .advanced-feature-item {
        margin-top: 2rem;
        display: flex;
    }
    
    .advanced-feature-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: rgba(189, 255, 3, 0.1);
        color: #bdff03;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-right: 1.5rem;
    }
    
    html.dark .advanced-feature-icon {
        background: rgba(189, 255, 3, 0.05);
        color: #bdff03;
        border: 1px solid rgba(189, 255, 3, 0.1);
    }
    
    .advanced-feature-title {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 0.35rem;
        color: #111111;
    }
    
    html.dark .advanced-feature-title {
        color: #ffffff;
    }

    /* Tools Section */
    .reflect-tools {
        padding: 6rem 0;
        background: #fdfdfd;
        position: relative;
    }
    
    html.dark .reflect-tools {
        background: #111111;
    }
    
    .tool-grid-item {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        border-radius: 12px;
        transition: all 0.2s ease;
        text-decoration: none;
        color: #111111;
        cursor: default;
        text-align: left;
    }
    
    html.dark .tool-grid-item {
        color: #ffffff;
    }
    
    .tool-grid-item:hover {
        background: rgba(0,0,0,0.03);
        transform: translateX(4px);
        text-decoration: none;
        color: #111111;
    }
    
    html.dark .tool-grid-item:hover {
        background: rgba(255,255,255,0.03);
        color: #ffffff;
    }
    
    .tool-grid-icon {
        width: 34px;
        height: 34px;
        background: rgba(189, 255, 3, 0.15);
        color: #bdff03;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.25rem;
        flex-shrink: 0;
    }
    
    html.dark .tool-grid-icon {
        background: rgba(189, 255, 3, 0.08); /* slightly higher opacity for visibility */
        color: #bdff03 !important; /* Ensure no bootstrap override */
        border: 1px solid rgba(189, 255, 3, 0.15);
        box-shadow: 0 0 10px rgba(189, 255, 3, 0.05); /* very soft glow */
    }
    
    .tools-fade-gradient {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 15vw;
        background: linear-gradient(to bottom, rgba(253,253,253,0), #fdfdfd);
        z-index: 5;
        pointer-events: none;
    }
    
    html.dark .tools-fade-gradient {
        background: linear-gradient(to bottom, rgba(17,17,17,0), #111111);
    }
    
    @media (max-width: 575.98px) {
        .reflect-input-group {
            flex-direction: column;
            border-radius: 20px;
            padding: 0.5rem;
            background: transparent;
            box-shadow: none !important;
            border: none !important;
        }
        .reflect-input {
            width: 100%;
            border-radius: 20px;
            background: #ffffff;
            border: 1px solid rgba(0,0,0,0.1);
            margin-bottom: 0.5rem;
            min-width: 0;
            padding: 1rem;
        }
        html.dark .reflect-input {
            background: #1a1a1a;
            border-color: rgba(255,255,255,0.15);
        }
        .reflect-input:focus {
            border-color: #bdff03;
            box-shadow: 0 0 0 2px rgba(189, 255, 3, 0.15);
        }
        html.dark .reflect-input:focus {
            border-color: #bdff03;
            box-shadow: 0 0 0 2px rgba(189, 255, 3, 0.15);
        }
        .reflect-input-group .reflect-btn {
            width: 100%;
            border-radius: 20px;
            padding: 1rem;
        }
    }
    
    .reflect-encryption {
        position: relative;
        padding: 8rem 0;
        background: #fafafa;
        border-top: 1px solid rgba(0,0,0,0.05);
        color: #111111;
        overflow: hidden;
    }
    
    html.dark .reflect-encryption {
        background: #000000;
        border-color: rgba(255,255,255,0.05);
        color: #ffffff;
    }
    
    .encryption-bg {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0.15;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
        mask-image: radial-gradient(circle at center, black 0%, transparent 60%);
        -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 60%);
    }
    
    .crypto-line {
        font-family: 'Courier New', Courier, monospace;
        font-size: 1rem;
        white-space: nowrap;
        color: #bdff03;
        margin: 0.2rem 0;
        opacity: 0.3;
        transform: translateX(0);
        animation: crypto-scroll 20s linear infinite alternate;
    }
    
    html.dark .crypto-line {
        color: #bdff03;
        opacity: 0.8;
    }
    
    .crypto-line:nth-child(even) {
        animation-direction: alternate-reverse;
        animation-duration: 25s;
        opacity: 0.5;
    }
    
    @keyframes crypto-scroll {
        0% { transform: translateX(-5%); }
        100% { transform: translateX(5%); }
    }
    
    .encryption-icon-wrapper {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #111111;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.1);
        position: relative;
    }
    
    html.dark .encryption-icon-wrapper {
        background: rgba(189, 255, 3, 0.1);
        color: #bdff03;
        box-shadow: 0 0 40px rgba(189, 255, 3, 0.2);
        border: none;
    }
    
    .encryption-badge {
        display: inline-block;
        padding: 0.4rem 1rem;
        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        border-radius: 999px;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #111111;
        backdrop-filter: blur(10px);
    }
    
    html.dark .encryption-badge {
        background: rgba(189, 255, 3, 0.1);
        border: 1px solid rgba(189, 255, 3, 0.2);
        color: #bdff03;
        box-shadow: 0 0 15px rgba(189, 255, 3, 0.1);
    }
    
    .encryption-title {
        font-family: 'Inter', sans-serif;
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 700;
        letter-spacing: -0.04em;
    }
    
    .encryption-desc {
        font-size: 1.15rem;
        color: var(--bs-secondary);
        line-height: 1.6;
        max-width: 500px;
    }
    
    html.dark .encryption-desc {
        color: rgba(255,255,255,0.7);
    }

    /* Security Scan Card */
    .security-scan-card {
        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    }
    html.dark .security-scan-card {
        background: rgba(26, 26, 26, 0.4);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-color: rgba(255,255,255,0.08);
        box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    }
    .security-scan-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.25rem;
        background: #fcfcfc;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    html.dark .security-scan-header {
        background: rgba(17, 17, 17, 0.6);
        border-color: rgba(255,255,255,0.06);
    }
    .security-scan-dot {
        width: 12px; height: 12px;
        border-radius: 50%;
        flex-shrink: 0;
    }
    .security-scan-dot--red    { background: #ff5f57; }
    .security-scan-dot--yellow { background: #ffbd2e; }
    .security-scan-dot--green  { background: #28c840; }
    .security-scan-url {
        margin-left: 0.5rem;
        font-size: 0.8rem;
        font-weight: 600;
        color: #555555;
        font-family: 'Courier New', monospace;
        flex: 1;
    }
    html.dark .security-scan-url { color: #aaaaaa; }
    .security-scan-status {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.75rem;
        color: #bdff03;
        font-weight: 500;
    }
    html.dark .security-scan-status { color: #bdff03; }
    .security-scan-pulse {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: #bdff03;
        animation: pulse-dot 1.4s ease-in-out infinite;
    }
    html.dark .security-scan-pulse { background: #bdff03; }
    @keyframes pulse-dot {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.4; transform: scale(0.7); }
    }
    .security-scan-body { padding: 0.5rem 1.25rem 1.25rem; }
    .security-check-row {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        margin-bottom: 0;
    }
    html.dark .security-check-row { border-color: rgba(255,255,255,0.05); }
    .security-check-icon {
        width: 22px; height: 22px;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
    }
    .security-check--pass .security-check-icon { background: rgba(40,200,64,0.12); color: #28c840; }
    .security-check--fail .security-check-icon { background: rgba(255,59,48,0.12); color: #ff3b30; }
    .security-check--warn .security-check-icon { background: rgba(255,189,0,0.12); color: #ffa500; }
    
    html.dark .security-check--pass .security-check-icon { background: rgba(189,255,3,0.12); color: #bdff03; }
    html.dark .security-check--fail .security-check-icon { background: rgba(255,107,107,0.12); color: #ff6b6b; }
    html.dark .security-check--warn .security-check-icon { background: rgba(255,189,46,0.12); color: #ffbd2e; }
    .security-check-label {
        flex: 1;
        font-size: 0.9rem;
        font-weight: 500;
        color: #222222;
    }
    html.dark .security-check-label { color: #dddddd; }
    .security-check-badge {
        font-size: 0.72rem;
        font-weight: 600;
        padding: 0.2rem 0.6rem;
        border-radius: 999px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    .security-check-badge--pass { background: rgba(40,200,64,0.12); color: #1aaa38; }
    .security-check-badge--fail { background: rgba(255,59,48,0.12); color: #ff3b30; }
    .security-check-badge--warn { background: rgba(255,189,0,0.12); color: #c87800; }
    html.dark .security-check-badge--pass { background: rgba(189,255,3,0.15); color: #bdff03; }
    html.dark .security-check-badge--fail { background: rgba(255,107,107,0.15); color: #ff6b6b; }
    html.dark .security-check-badge--warn { background: rgba(255,189,46,0.15); color: #ffbd2e; }

    /* Security feature rows (right column) */
    .security-feature-row {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 0.85rem 1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        margin: 0 -1rem;
    }
    .security-feature-row:hover {
        background: rgba(0,0,0,0.02);
        border-color: rgba(0,0,0,0.05);
        transform: translateX(4px);
    }
    html.dark .security-feature-row:hover {
        background: rgba(189,255,3,0.03);
        border-color: rgba(189,255,3,0.1);
    }
    .security-feature-icon {
        width: 44px; height: 44px;
        border-radius: 12px;
        background: rgba(189, 255, 3,0.1);
        color: #bdff03;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
        border: 1px solid rgba(189, 255, 3,0.2);
        transition: all 0.3s ease;
    }
    .security-feature-row:hover .security-feature-icon {
        background: rgba(189, 255, 3,0.15);
        color: #bdff03;
        border-color: rgba(189, 255, 3,0.3);
        box-shadow: 0 0 15px rgba(189, 255, 3,0.15);
    }
    html.dark .security-feature-icon {
        background: rgba(189,255,3,0.08);
        color: #bdff03;
        border-color: rgba(189,255,3,0.15);
    }
    html.dark .security-feature-row:hover .security-feature-icon {
        background: rgba(189,255,3,0.15);
        color: #bdff03;
        box-shadow: 0 0 15px rgba(189,255,3,0.2);
    }
    .security-feature-row strong {
        display: block;
        font-size: 0.95rem;
        font-weight: 600;
        color: #111111;
        margin-bottom: 0.15rem;
    }
    html.dark .security-feature-row strong { color: #ffffff; }
    .security-feature-text {
        font-size: 0.85rem;
        color: #777777;
    }
    html.dark .security-feature-text { color: #888888; }

    /* AI Insights Section */
    .reflect-ai-section {
        padding: 8rem 0 6rem 0;
        background: #ffffff;
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    html.dark .reflect-ai-section {
        background: #0a0a0a;
        border-color: rgba(255,255,255,0.05);
    }
    .ai-glow-bg {
        position: absolute;
        top: 50%; right: -10%;
        transform: translateY(-50%);
        width: 800px; height: 800px;
        background: radial-gradient(circle, rgba(189, 255, 3, 0.05) 0%, transparent 60%);
        pointer-events: none; z-index: 0;
    }
    html.dark .ai-glow-bg {
        background: radial-gradient(circle, rgba(189, 255, 3, 0.05) 0%, transparent 60%);
    }
    .ai-badge {
        display: inline-flex; align-items: center; justify-content: center;
        padding: 0.4rem 1rem; background: #ffffff;
        border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        border-radius: 999px; font-size: 0.85rem; font-weight: 600;
        letter-spacing: 0.05em; text-transform: uppercase; color: #111111;
        margin-bottom: 2rem; gap: 0.4rem;
        backdrop-filter: blur(10px);
    }
    html.dark .ai-badge {
        background: rgba(189, 255, 3, 0.1); border-color: rgba(189, 255, 3, 0.2);
        color: #bdff03; box-shadow: 0 0 15px rgba(189, 255, 3, 0.1);
    }
    .ai-image-box {
        position: relative; z-index: 10; border-radius: 16px; overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.05);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    html.dark .ai-image-box {
        box-shadow: 0 20px 60px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.08);
    }
    .ai-image-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 80px rgba(189, 255, 3, 0.1);
    }
    .ai-image-box img { width: 100%; height: auto; }
    .ai-feature-row {
        display: flex; align-items: flex-start; gap: 1rem; border-radius: 12px;
        padding: 1rem; margin: 0 -1rem; transition: background 0.3s ease;
        border: 1px solid transparent;
    }
    .ai-feature-row:hover { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.05); }
    html.dark .ai-feature-row:hover { background: rgba(189, 255, 3, 0.03); border-color: rgba(189, 255, 3, 0.1); }
    .ai-icon-wrapper {
        width: 44px; height: 44px; border-radius: 12px;
        background: rgba(189, 255, 3,0.1); color: #bdff03;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0; border: 1px solid rgba(189, 255, 3,0.2);
        transition: all 0.3s ease;
    }
    html.dark .ai-icon-wrapper { background: rgba(189,255,3,0.08); color: #bdff03; border-color: rgba(189,255,3,0.15); }
    .ai-feature-row:hover .ai-icon-wrapper {
        background: rgba(189, 255, 3,0.15); color: #bdff03;
        border-color: rgba(189, 255, 3,0.3); box-shadow: 0 0 15px rgba(189, 255, 3,0.15);
    }
    html.dark .ai-feature-row:hover .ai-icon-wrapper {
        background: rgba(189,255,3,0.15); color: #bdff03; box-shadow: 0 0 15px rgba(189,255,3,0.2);
    }
    .ai-feature-title { font-weight: 600; font-size: 0.95rem; color: #111; margin-bottom:0.15rem; }
    html.dark .ai-feature-title { color: #fff; }
    .ai-feature-desc { font-size: 0.85rem; color: #777; line-height: 1.5; }
    html.dark .ai-feature-desc { color: #888; }

    /* Animated AI Working Illustration */
    .ai-image-box {
        position: relative; z-index: 10; border-radius: 16px; overflow: hidden;
        border: 1px solid transparent; background: transparent; box-shadow: none;
        transition: transform 0.4s ease;
    }
    html.dark .ai-image-box {
        border-color: transparent; box-shadow: none;
    }
    .ai-image-wrap {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: ai-floating 6s ease-in-out infinite;
    }
    
    .ai-img-light {
        display: block; width: 100%; height: auto;
        mix-blend-mode: darken; filter: contrast(1.05);
    }
    .ai-img-dark {
        display: none; width: 100%; height: auto;
        mix-blend-mode: screen; filter: contrast(1.1);
    }
    
    html.dark .ai-img-light { display: none; }
    html.dark .ai-img-dark { display: block; }
    
    @keyframes ai-floating {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }
    
    .ai-scanner-line {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 3px;
        background: #bdff03;
        box-shadow: 0 0 15px #bdff03, 0 0 30px #bdff03;
        opacity: 0;
        border-radius: 50%;
        animation: ai-scan-move 5s ease-in-out infinite;
        z-index: 10;
        pointer-events: none;
    }
    html.dark .ai-scanner-line {
        mix-blend-mode: screen;
    }
    
    @keyframes ai-scan-move {
        0%, 10% { top: 5%; opacity: 0; }
        15% { opacity: 0.8; }
        50% { opacity: 0.8; }
        85% { opacity: 0.8; }
        90%, 100% { top: 95%; opacity: 0; }
    }
