/* ===== CSS Variables ===== */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: #16161f;
    --border-color: #262633;
    
    --text-primary: #e8e8ed;
    --text-secondary: #a0a0b0;
    --text-muted: #6a6a7a;
    
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --accent-yellow: #f59e0b;
    --accent-purple: #8b5cf6;
    --accent-cyan: #06b6d4;
    
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    --gradient-danger: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow-blue: 0 0 20px rgba(59, 130, 246, 0.3);
    --shadow-glow-green: 0 0 20px rgba(16, 185, 129, 0.3);
    --shadow-glow-red: 0 0 20px rgba(239, 68, 68, 0.3);
    --shadow-glow-yellow: 0 0 20px rgba(245, 158, 11, 0.3);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #60a5fa;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md), var(--shadow-glow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-blue);
    background: var(--bg-card);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-blue);
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.2s ease;
}

/* ===== Hero Section ===== */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-blue);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.trust-metrics {
    display: flex;
    gap: 40px;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== Browser Visual ===== */
.hero-visual {
    position: relative;
    z-index: 2;
}

.browser-mockup {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.browser-header {
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.browser-controls {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #f59e0b; }
.control.green { background: #10b981; }

.browser-url {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.lock-icon {
    width: 14px;
    height: 14px;
    color: var(--accent-green);
}

.status-badge {
    margin-left: auto;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-secure {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
}

.status-caution {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-yellow);
}

.status-danger {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-red);
}

.browser-content {
    padding: 24px;
    min-height: 400px;
}

/* ===== Scan Overlay ===== */
.scan-overlay {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
}

.scan-header {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scan-header::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.scan-details {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.scan-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
}

.scan-item.check {
    border-left: 3px solid var(--accent-green);
}

.scan-item.warn {
    border-left: 3px solid var(--accent-yellow);
}

.check-icon {
    color: var(--accent-green);
    font-weight: 700;
}

.warn-icon {
    color: var(--accent-yellow);
}

.scan-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.scan-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.scan-traffic {
    display: flex;
    align-items: center;
    color: var(--accent-green);
    font-weight: 500;
}

/* ===== Floating Indicator ===== */
.indicator-float {
    position: absolute;
    bottom: -20px;
    right: -30px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.indicator-secure {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-glow-green);
}

.indicator-secure .indicator-icon {
    color: var(--accent-green);
}

.indicator-caution {
    border-color: var(--accent-yellow);
    box-shadow: var(--shadow-glow-yellow);
}

.indicator-caution .indicator-icon {
    color: var(--accent-yellow);
}

.indicator-danger {
    border-color: var(--accent-red);
    box-shadow: var(--shadow-glow-red);
}

.indicator-danger .indicator-icon {
    color: var(--accent-red);
}

.indicator-icon {
    width: 18px;
    height: 18px;
}

/* ===== Sections ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

/* ===== Indicators Section ===== */
.indicators-section {
    background: var(--bg-secondary);
}

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

.indicator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.indicator-card:hover {
    transform: translateY(-4px);
}

.indicator-card.risk-high {
    border-color: var(--accent-red);
    box-shadow: var(--shadow-glow-red);
}

.indicator-card.risk-caution {
    border-color: var(--accent-yellow);
    box-shadow: var(--shadow-glow-yellow);
}

.indicator-card.risk-secure {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-glow-green);
}

.indicator-dot {
    position: absolute;
    top: -10px;
    left: 32px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--bg-card);
}

.risk-high .indicator-dot {
    background: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
}

.risk-caution .indicator-dot {
    background: var(--accent-yellow);
    box-shadow: 0 0 10px var(--accent-yellow);
}

.risk-secure .indicator-dot {
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.indicator-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.indicator-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.indicator-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.example-tag {
    padding: 4px 10px;
    background: var(--bg-tertiary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* ===== Features Section ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--shadow-glow-blue);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-blue);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ===== How It Works ===== */
.how-it-works {
    background: var(--bg-secondary);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step {
    flex: 1;
    max-width: 220px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-glow-blue);
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    border-radius: 2px;
}

/* ===== Report Section ===== */
.report-mockup {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.report-header {
    padding: 20px 24px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.report-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.report-status {
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 24px;
}

.report-section h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1rem;
}

.report-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

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

.report-item .label {
    color: var(--text-secondary);
}

.report-item .value {
    font-weight: 600;
}

.report-item .value.positive {
    color: var(--accent-green);
}

.report-item .value.warn {
    color: var(--accent-yellow);
}

.report-item .value.danger {
    color: var(--accent-red);
}

/* ===== Download Section ===== */
.download-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.download-content > p {
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.download-btn svg {
    width: 32px;
    height: 32px;
}

.download-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn .small {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.download-btn .large {
    font-size: 1rem;
    font-weight: 600;
}

.download-btn.chrome:hover {
    border-color: #3b82f6;
    box-shadow: var(--shadow-glow-blue);
}

.download-btn.firefox:hover {
    border-color: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.download-btn.safari:hover {
    border-color: #00d8ff;
    box-shadow: 0 0 20px rgba(0, 216, 255, 0.3);
}

.download-btn.edge:hover {
    border-color: #0078d4;
    box-shadow: 0 0 20px rgba(0, 120, 212, 0.3);
}

.enterprise-cta {
    margin-top: 32px;
}

.enterprise-cta p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 24px;
}

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

.footer-brand p {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 280px;
}

.footer-links-group h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links-group a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 12px;
}

.footer-badges .badge {
    padding: 4px 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* ===== Animations & Utilities ===== */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    h1 { font-size: 2.75rem; }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual {
        order: -1;
    }
    .indicators-grid,
    .features-grid,
    .report-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .download-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .hero {
        padding: 120px 0 60px;
    }
    .hero-cta {
        flex-direction: column;
    }
    .indicators-grid,
    .features-grid,
    .report-grid,
    .download-buttons {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        flex-direction: column;
    }
    .step-connector {
        width: 2px;
        height: 40px;
    }
    .trust-metrics {
        flex-direction: column;
        gap: 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Dating Section Specific */
.dating-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.dating-section .section-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dating-mockup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.dating-phone {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.safe { background: var(--accent-green); }
.status-dot.caution { background: var(--accent-yellow); }
.status-dot.danger { background: var(--accent-red); }

.profile-preview {
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border: 2px solid var(--accent-blue);
}

.profile-photo svg {
    width: 40px;
    height: 40px;
    color: var(--text-muted);
}

.profile-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.profile-bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

.scan-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.result-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    background: var(--bg-tertiary);
    border-left: 3px solid var(--accent-blue);
}

.result-item.bad { border-left-color: var(--accent-red); background: rgba(239,68,68,0.05); }
.result-item.warn { border-left-color: var(--accent-yellow); background: rgba(245,158,11,0.05); }
.result-item.caution { border-left-color: var(--accent-purple); background: rgba(139,92,246,0.05); }
.result-item.info { border-left-color: var(--accent-blue); }

.result-icon {
    font-size: 1.1rem;
    line-height: 1.2;
}

.risk-badge {
    text-align: center;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.risk-badge.critical { background: rgba(239,68,68,0.1); color: var(--accent-red); border: 1px solid var(--accent-red); }
.risk-badge.high { background: rgba(249,115,22,0.1); color: var(--accent-yellow); border: 1px solid var(--accent-yellow); }
.risk-badge.medium { background: rgba(59,130,246,0.1); color: var(--accent-blue); border: 1px solid var(--accent-blue); }
.risk-badge.low { background: rgba(16,185,129,0.1); color: var(--accent-green); border: 1px solid var(--accent-green); }

.dating-info {
    padding: 24px;
}

.dating-info h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.dating-info ul {
    list-style: none;
    margin-bottom: 24px;
}

.dating-info li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
}

.dating-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

@media (max-width: 900px) {
    .dating-mockup {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .dating-info {
        order: -1; /* Put info first on mobile if desired, but keep natural flow */
    }
}
