/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --accent-primary: #00ff88;
    --accent-secondary: #00d4ff;
    --border-color: rgba(255, 255, 255, 0.08);
    --glow-color: rgba(0, 255, 136, 0.4);
    --shadow-glow: 0 0 60px rgba(0, 255, 136, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    animation: slideDown 0.6s ease-out;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 32px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.logo svg {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.logo span {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 19px;
}

.nav-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 2px;
    align-items: center;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 43px;
    padding: 4px 16px;
}

.nav-link {
    padding: 6px 17px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 42px;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    gap: 6px;
    background: rgb(155 152 152 / 12%) !important;
    color: var(--text-primary) !important;
    
}

.protection-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12) !important;
    color: var(--text-primary) !important;
    padding: 13px 17px !important;
}

.protection-link svg {
    width: 10px;
    height: 10px;
    opacity: 0.9;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-shield-inline {
    background: var(--text-primary);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
    margin-left: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-shield-inline:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-shield-inline svg {
    width: 18px;
    height: 18px;
}

/* Skip Link */

.btn-login {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 10px 18px;
    border-radius: 42px;
    border: 1px solid var(--border-color);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-create-account {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 13px 17px;
    border-radius: 42px;
    text-decoration: none;
}

.btn-create-account:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-create-account svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 42px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.btn-primary-small {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 42px;
    padding: 13px 17px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    padding: 60px 0 80px;
    position: relative;
    min-height: auto;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, rgba(0, 212, 255, 0.1) 30%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    animation: fadeInLines 2s ease-out;
}

@keyframes fadeInLines {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.4;
    }
}

.lines-svg {
    width: 100%;
    height: 100%;
}

.lines-svg path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s ease-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

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

/* Feature Banner */
.feature-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 42px;
    padding: 13px 17px;
    margin: 0 auto 36px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    transition: all 0.3s ease;
}

.feature-banner:hover {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.25);
    transform: translateY(-2px);
}

.feature-banner svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.5));
}

.hero-text {
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.3));
    animation: titleGlow 3s ease-in-out infinite;
    position: relative;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(0, 255, 136, 0.6));
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    animation: subtitleFade 1.5s ease-out 0.5s both;
    position: relative;
}

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

/* Network Nodes */
.network-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.network-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    min-width: 140px;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: nodeFadeIn 1s ease-out both, nodeFloat 4s ease-in-out infinite;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

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

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

.network-node:nth-child(1) {
    animation-delay: 0.8s, 0s;
}

.network-node:nth-child(2) {
    animation-delay: 1s, 0.5s;
}

.network-node:nth-child(3) {
    animation-delay: 1.2s, 1s;
}

.network-node:nth-child(4) {
    animation-delay: 1.4s, 1.5s;
}

.network-node:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(0, 255, 136, 0.4);
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.25);
}

.node-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
    transition: transform 0.3s ease;
}

.network-node:hover .node-icon {
    transform: rotate(5deg) scale(1.1);
}

.node-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: 0.5px;
}

.node-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-primary);
    text-align: center;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.5));
}

.node-top-left {
    top: 8%;
    left: 3%;
}

.node-bottom-left {
    bottom: 15%;
    left: 3%;
}

.node-top-right {
    top: 8%;
    right: 3%;
}

.node-bottom-right {
    bottom: 15%;
    right: 3%;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-dark {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    border-radius: 42px;
    padding: 13px 17px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.btn-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-dark:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
}

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

.btn-dark span,
.btn-dark svg {
    position: relative;
    z-index: 1;
}

.btn-light {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 42px;
    padding: 13px 17px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.4);
}

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

/* Search Container */
.search-container {
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 1s both;
    display: flex;
    justify-content: center;
}

.search-section {
    width: 100%;
    padding: 20px 0;
}

.search-form {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 42px;
    padding: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.search-form:focus-within {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
    transform: translateY(-2px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.search-label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1px 8px;
}

.search-icon {
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.search-form:focus-within .search-icon {
    color: var(--accent-primary);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    padding: 6px 4px;
    outline: none;
    font-weight: 400;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 42px;
    padding: 13px 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 44px;
    height: 44px;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Results Section */
/* ─── Results Section ──────────────────────────────────────── */
.results-section {
    margin-top: 48px;
    animation: fadeInUp 0.5s ease-out;
}

.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    padding: 14px 20px;
    background: rgba(0, 255, 136, 0.04);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: 10px;
}

.results-title {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    margin: 0;
}

.results-title svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.results-title span {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 20px;
}

.results-subtitle {
    color: var(--text-muted);
    font-size: 12px;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

/* ─── Table Container ──────────────────────────────────────── */
.table-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 16px;
    background: rgba(10, 10, 10, 0.7);
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.results-table thead {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.results-table th {
    padding: 11px 16px;
    text-align: left;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.results-table th:first-child  { width: 44px;   text-align: center; }
.results-table th:nth-child(2) { width: 34%; }
.results-table th:nth-child(3) { width: 100px; }
.results-table th:nth-child(4) { width: auto; }
.results-table th:nth-child(5) { width: 130px; }

.results-table td {
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
    color: var(--text-secondary);
    vertical-align: middle;
    transition: background 0.12s ease;
}

.results-table tbody tr {
    position: relative;
}

.results-table tbody tr td:first-child {
    border-left: 2px solid transparent;
    transition: border-color 0.15s ease, background 0.12s ease;
}

.results-table tbody tr:hover td {
    background: rgba(0, 255, 136, 0.03);
}

.results-table tbody tr:hover td:first-child {
    border-left-color: var(--accent-primary);
}

.results-table tbody tr:last-child td {
    border-bottom: none;
}

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

/* Row number cell */
.row-num {
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 11px;
    font-variant-numeric: tabular-nums;
    user-select: none;
}

/* Username cell */
.email-cell {
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 13px;
    word-break: break-all;
    overflow-wrap: anywhere;
}

/* Date cell */
.date-cell {
    white-space: nowrap;
    color: var(--text-muted);
    font-size: 12px;
}

/* URL cell */
.url-cell {
    max-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.url-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #6496ff;
    font-size: 12px;
    text-decoration: none;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.url-link:hover {
    color: #90b4ff;
    text-decoration: underline;
}

.url-link svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.url-none {
    color: rgba(255, 255, 255, 0.15);
    font-size: 12px;
}

/* Source badge */
.source-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.source-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.8;
    flex-shrink: 0;
}

.source-stealerlog {
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.25);
    color: #ff7070;
}

.source-combolist {
    background: rgba(255, 150, 0, 0.1);
    border: 1px solid rgba(255, 150, 0, 0.25);
    color: #ff9f30;
}

.source-telegram {
    background: rgba(100, 150, 255, 0.1);
    border: 1px solid rgba(100, 150, 255, 0.25);
    color: #7aa8ff;
}

.source-default {
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--accent-primary);
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    flex-wrap: wrap;
}

.pagination-info {
    font-size: 14px;
    color: var(--text-secondary);
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    height: 36px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
}

.page-number {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0 8px;
}

.page-number:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.page-number.active {
    background: rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.3);
    color: var(--accent-primary);
    font-weight: 600;
}

.pagination-ellipsis {
    color: var(--text-muted);
    padding: 0 4px;
    font-size: 14px;
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 64px;
    color: var(--text-secondary);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.spinner {
    width: 56px;
    height: 56px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error State */
.error-state {
    text-align: center;
    padding: 64px;
    color: #ff4444;
    animation: fadeIn 0.5s ease-out;
}

.error-state svg {
    margin-bottom: 20px;
    filter: drop-shadow(0 0 12px rgba(255, 68, 68, 0.5));
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Bottom Indicators */
.bottom-indicators {
    position: fixed;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 48px;
    z-index: 100;
    pointer-events: none;
    animation: fadeIn 1s ease-out 1.5s both;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 14px;
    pointer-events: auto;
}

.scroll-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.scroll-circle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px) scale(1.05);
}

.progress-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    pointer-events: auto;
}

.progress-indicator span {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.progress-bars {
    display: flex;
    gap: 8px;
}

.progress-bar {
    width: 10px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-bar.active {
    background: var(--text-primary);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.6);
    transform: scaleY(1.2);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    border-radius: 42px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

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

.benefit-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(0, 255, 136, 0.2);
    background: rgba(26, 26, 26, 0.95);
    transform: translateY(-4px);
}

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

.benefit-number {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
    opacity: 0.5;
    letter-spacing: 1px;
    font-family: 'Inter', monospace;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    background: rgba(0, 255, 136, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.12);
}

.benefit-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.benefit-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.benefit-arrow {
    color: var(--text-muted);
    align-self: flex-end;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translate(-4px, 4px);
}

.benefit-card:hover .benefit-arrow {
    opacity: 1;
    color: var(--accent-primary);
    transform: translate(0, 0);
}

/* ─── Threat Intelligence Overview ────────────────────────── */
.infographic-section {
    padding: 80px 0;
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Two-column layout */
.intel-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 16px;
    align-items: stretch;
}

/* ── Left KPI panel ── */
.intel-kpi-panel {
    background: rgba(13, 13, 13, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.intel-kpi-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.intel-kpi-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.intel-kpi-number {
    font-size: 54px;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
    letter-spacing: -2px;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 48px rgba(0, 255, 136, 0.35);
}

.intel-kpi-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

.intel-kpi-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
}

.intel-kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.intel-kpi-mini {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 14px 12px;
    text-align: center;
}

.intel-kpi-mini--full {
    grid-column: 1 / -1;
}

.intel-kpi-mini-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 5px;
    font-variant-numeric: tabular-nums;
}

.intel-kpi-mini-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

/* ── Right chart panel ── */
.intel-chart-panel {
    background: rgba(13, 13, 13, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.intel-chart-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 22px 26px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.intel-chart-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

.intel-chart-sub {
    font-size: 11px;
    color: var(--text-muted);
}

.intel-chart-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-primary);
    background: rgba(0, 255, 136, 0.07);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 20px;
    padding: 4px 10px;
}

.intel-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-primary);
    animation: livePulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

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

/* Source rows */
.source-chart {
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.source-row {
    display: grid;
    grid-template-columns: 8px 140px 1fr 96px;
    align-items: center;
    gap: 14px;
}

.source-row-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.source-row:nth-child(1) .source-row-dot { background: #ff6464; box-shadow: 0 0 8px rgba(255,100,100,0.7); }
.source-row:nth-child(2) .source-row-dot { background: #ff9f30; box-shadow: 0 0 8px rgba(255,159,48,0.7); }
.source-row:nth-child(3) .source-row-dot { background: #7aa8ff; box-shadow: 0 0 8px rgba(122,168,255,0.7); }
.source-row:nth-child(4) .source-row-dot { background: #00ff88; box-shadow: 0 0 8px rgba(0,255,136,0.7); }

.source-row-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.source-row-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.source-row-bar {
    height: 100%;
    border-radius: 3px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.source-row:nth-child(1) .source-row-bar { background: linear-gradient(90deg, rgba(200,50,50,0.6), #ff6464); }
.source-row:nth-child(2) .source-row-bar { background: linear-gradient(90deg, rgba(200,120,0,0.6), #ff9f30); }
.source-row:nth-child(3) .source-row-bar { background: linear-gradient(90deg, rgba(48,96,200,0.6), #7aa8ff); }
.source-row:nth-child(4) .source-row-bar { background: linear-gradient(90deg, rgba(0,170,85,0.6), #00ff88); }

.source-row-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
}

.source-row-count {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.source-row-pct {
    font-size: 11px;
    color: var(--text-muted);
}

.chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 20px;
    height: 240px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.visualizer-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-end;
    height: 200px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.visualizer-panel {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 100%;
    flex: 1;
    max-width: 300px;
}

.visualizer-left .visualizer-bar {
    background: linear-gradient(180deg, 
        rgba(255, 200, 0, 1) 0%, 
        rgba(255, 180, 0, 0.9) 50%,
        rgba(200, 140, 0, 0.8) 100%);
    box-shadow: 0 0 20px rgba(255, 200, 0, 0.6),
                0 0 40px rgba(255, 180, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.visualizer-right .visualizer-bar {
    background: linear-gradient(180deg, 
        rgba(0, 255, 200, 1) 0%, 
        rgba(0, 220, 180, 0.9) 50%,
        rgba(0, 180, 160, 0.8) 100%);
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.6),
                0 0 40px rgba(0, 220, 180, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.visualizer-bar {
    flex: 1;
    min-width: 8px;
    max-width: 12px;
    border-radius: 42px 42px 0 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: visualizerPulse 2s ease-in-out infinite, growBar 1s ease-out both;
    animation-delay: calc(var(--bar-index, 0) * 0.1s), calc(var(--bar-index, 0) * 0.05s);
}

@keyframes visualizerPulse {
    0%, 100% {
        opacity: 0.8;
        filter: brightness(1);
    }
    50% {
        opacity: 1;
        filter: brightness(1.3);
    }
}

.visualizer-bar:nth-child(1) { --bar-index: 0; animation-delay: 0s; }
.visualizer-bar:nth-child(2) { --bar-index: 1; animation-delay: 0.1s; }
.visualizer-bar:nth-child(3) { --bar-index: 2; animation-delay: 0.2s; }
.visualizer-bar:nth-child(4) { --bar-index: 3; animation-delay: 0.3s; }
.visualizer-bar:nth-child(5) { --bar-index: 4; animation-delay: 0.4s; }
.visualizer-bar:nth-child(6) { --bar-index: 5; animation-delay: 0.5s; }
.visualizer-bar:nth-child(7) { --bar-index: 6; animation-delay: 0.6s; }
.visualizer-bar:nth-child(8) { --bar-index: 7; animation-delay: 0.7s; }
.visualizer-bar:nth-child(9) { --bar-index: 8; animation-delay: 0.8s; }
.visualizer-bar:nth-child(10) { --bar-index: 9; animation-delay: 0.9s; }
.visualizer-bar:nth-child(11) { --bar-index: 10; animation-delay: 1s; }

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, 
        rgba(0, 255, 136, 1) 0%, 
        rgba(0, 255, 136, 0.8) 50%,
        rgba(0, 200, 100, 0.9) 100%);
    border-radius: 42px 42px 0 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: growBar 1.2s ease-out both;
    box-shadow: 0 -4px 20px rgba(0, 255, 136, 0.4),
                0 0 30px rgba(0, 255, 136, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-width: 60px;
    cursor: pointer;
}

.chart-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    border-radius: 42px 42px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-bar:hover::before {
    opacity: 1;
}

.chart-bar:nth-child(1) { 
    animation-delay: 0.2s; 
    background: linear-gradient(180deg, 
        rgba(0, 255, 136, 1) 0%, 
        rgba(0, 255, 136, 0.8) 50%,
        rgba(0, 200, 100, 0.9) 100%);
}
.chart-bar:nth-child(2) { 
    animation-delay: 0.4s; 
    background: linear-gradient(180deg, 
        rgba(0, 255, 200, 1) 0%, 
        rgba(0, 255, 180, 0.8) 50%,
        rgba(0, 220, 150, 0.9) 100%);
}
.chart-bar:nth-child(3) { 
    animation-delay: 0.6s; 
    background: linear-gradient(180deg, 
        rgba(0, 220, 136, 1) 0%, 
        rgba(0, 220, 120, 0.8) 50%,
        rgba(0, 180, 100, 0.9) 100%);
}
.chart-bar:nth-child(4) { 
    animation-delay: 0.8s; 
    background: linear-gradient(180deg, 
        rgba(0, 255, 150, 1) 0%, 
        rgba(0, 255, 140, 0.8) 50%,
        rgba(0, 210, 110, 0.9) 100%);
}

@keyframes growBar {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.chart-bar:hover {
    transform: scaleY(1.08) translateY(-4px);
    box-shadow: 0 -8px 40px rgba(0, 255, 136, 0.6),
                0 0 40px rgba(0, 255, 136, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: brightness(1.15);
}

.chart-label {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    z-index: 2;
}

.chart-title {
    text-align: center;
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.3));
}

/* Dashboard Section */
.dashboard-section {
    padding: 120px 0;
    background: rgba(10, 10, 10, 0.5);
    position: relative;
}

.dashboard-section .section-header {
    margin-bottom: 64px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
    margin-bottom: 60px;
}

.kpi-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 42px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out both;
    position: relative;
}

.kpi-card:nth-child(1) { animation-delay: 0.1s; }
.kpi-card:nth-child(2) { animation-delay: 0.2s; }
.kpi-card:nth-child(3) { animation-delay: 0.3s; }
.kpi-card:nth-child(4) { animation-delay: 0.4s; }
.kpi-card:nth-child(5) { animation-delay: 0.5s; }
.kpi-card:nth-child(6) { animation-delay: 0.6s; }
.kpi-card:nth-child(7) { animation-delay: 0.7s; }

.kpi-card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 8px 40px rgba(0, 255, 136, 0.1);
    transform: translateY(-8px);
}

.kpi-card:empty,
.kpi-card[style*="opacity: 0.3"] {
    background: rgba(26, 26, 26, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: default;
}

.kpi-card:empty:hover,
.kpi-card[style*="opacity: 0.3"]:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.kpi-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.4));
}

.kpi-icon svg {
    width: 100%;
    height: 100%;
}

.kpi-value {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.kpi-label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.6;
}

.dashboard-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.chart-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 42px;
    padding: 32px;
    transition: all 0.3s ease;
}

.chart-card:hover {
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.chart-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.source-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.source-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.source-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    min-width: 100px;
}

.source-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.source-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 42px;
    transition: width 1s ease-out;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        width: 0;
    }
}

.source-percentage {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    min-width: 45px;
    text-align: right;
}

/* Pie Chart Styles */
.pie-chart-container {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.pie-chart {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.pie-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    filter: drop-shadow(0 0 20px rgba(255, 100, 100, 0.3));
}

.pie-segment {
    transition: all 0.4s ease;
    animation: drawPie 1.5s ease-out both;
}

.pie-segment:nth-child(2) { animation-delay: 0.1s; }
.pie-segment:nth-child(3) { animation-delay: 0.3s; }
.pie-segment:nth-child(4) { animation-delay: 0.5s; }
.pie-segment:nth-child(5) { animation-delay: 0.7s; }
.pie-segment:nth-child(6) { animation-delay: 0.9s; }

@keyframes drawPie {
    from {
        stroke-dasharray: 0 502.65;
    }
}

.pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.pie-center-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.pie-center-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pie-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 42px;
    transition: all 0.2s ease;
}

.legend-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px currentColor;
}

.legend-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 12px;
}

.legend-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.legend-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-primary);
}

/* Donut Chart Styles */
.donut-chart-container {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.donut-chart {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.donut-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    filter: drop-shadow(0 0 20px rgba(0, 255, 200, 0.3));
}

.donut-segment {
    transition: all 0.4s ease;
    animation: drawDonut 1.5s ease-out both;
}

.donut-segment:nth-child(2) { animation-delay: 0.1s; }
.donut-segment:nth-child(3) { animation-delay: 0.3s; }
.donut-segment:nth-child(4) { animation-delay: 0.5s; }
.donut-segment:nth-child(5) { animation-delay: 0.7s; }

@keyframes drawDonut {
    from {
        stroke-dasharray: 0 439.82;
    }
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.donut-center-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.donut-center-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

/* Threat Timeline Styles */
.threat-timeline {
    width: 100%;
}

.timeline-header {
    text-align: center;
    margin-bottom: 28px;
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.timeline-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    opacity: 0.8;
    letter-spacing: 0.3px;
}


/* FAQ Section */
.faq-section {
    padding: 120px 0;
    position: relative;
}

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

.faq-item {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 42px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 255, 136, 0.2);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    padding-top: 16px;
}


/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 48px 0;
    margin-top: 120px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(24px) saturate(180%);
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 56px;
}

.footer-logo {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.footer-logo:hover {
    color: var(--text-primary);
    opacity: 1;
    transform: translateY(-2px);
}

/* Responsive Design */
/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .header-container {
        padding: 14px 24px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        max-width: 600px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .network-node {
        min-width: 120px;
        padding: 16px;
    }
    
    .node-top-left,
    .node-bottom-left,
    .node-top-right,
    .node-bottom-right {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        margin: 12px;
    }
    
    .network-nodes {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 40px;
        margin-top: 40px;
    }
    
    .intel-layout {
        grid-template-columns: 1fr;
    }

    .intel-kpi-number {
        font-size: 42px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .source-row {
        grid-template-columns: 8px 110px 1fr 80px;
    }
    
    .timeline-bar {
        min-width: 6px;
        max-width: 18px;
    }
}

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .btn-dark,
    .btn-light {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .search-container {
        margin-bottom: 40px;
    }
    
    .search-form {
        padding: 3px;
    }
    
    .search-input-wrapper {
        padding: 1px 6px;
        gap: 6px;
    }
    
    .search-input {
        font-size: 14px;
        padding: 8px 4px;
    }
    
    .search-btn {
        min-width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 32px;
    }

    .kpi-card {
        padding: 20px 16px;
    }

    .kpi-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .kpi-value {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .kpi-label {
        font-size: 12px;
        line-height: 1.5;
    }

    .dashboard-charts {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .source-name {
        min-width: 80px;
        font-size: 13px;
    }

    .pie-chart-container,
    .donut-chart-container {
        flex-direction: column;
        gap: 24px;
    }

    .pie-legend,
    .donut-legend {
        width: 100%;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .section-header {
        margin-bottom: 40px;
        padding-bottom: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .table-container {
        overflow-x: auto;
        padding: 16px;
        margin: 0 -16px;
        -webkit-overflow-scrolling: touch;
    }

    .email-cell {
        max-width: 200px;
        font-size: 12px;
    }

    .exposed-cell {
        max-width: 250px;
    }

    .exposed-tag {
        font-size: 10px;
        padding: 3px 8px;
    }

    .btn-view {
        padding: 6px 12px;
        font-size: 12px;
    }

    .bottom-indicators {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        padding: 0 24px;
    }

    .progress-indicator {
        align-items: center;
    }

    .footer-logos {
        gap: 32px;
    }

    .header-container {
        padding: 12px 20px;
    }

    .nav-wrapper {
        gap: 16px;
    }

    .nav-menu {
        gap: 1px;
        padding: 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        padding: 6px 12px;
        font-size: 13px;
    }

    .logo {
        font-size: 17px;
        gap: 8px;
    }

    .logo svg {
        width: 30px;
        height: 30px;
    }

    .logo span {
        font-size: 17px;
    }

    .btn-create-account span {
        display: none;
    }

    .btn-create-account {
        padding: 8px;
    }

    .btn-shield-inline {
        width: 32px;
        height: 32px;
    }

    .btn-shield-inline svg {
        width: 16px;
        height: 16px;
    }

    .section-title {
        font-size: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .intel-layout {
        grid-template-columns: 1fr;
    }

    .intel-kpi-number {
        font-size: 40px;
    }

    .source-row {
        grid-template-columns: 8px 100px 1fr 75px;
        gap: 10px;
    }

    .chart-card {
        padding: 20px;
    }
    
    .chart-card-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .pie-chart,
    .donut-chart {
        width: 160px;
        height: 160px;
    }
    
    .results-title {
        font-size: 28px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .results-subtitle {
        font-size: 14px;
    }
    
    .footer {
        padding: 32px 0;
        margin-top: 80px;
    }
    
    .footer-logos {
        gap: 24px;
        flex-wrap: wrap;
    }
}

/* Small Mobile Styles (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .header-container {
        padding: 10px 12px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .kpi-card {
        padding: 16px;
    }
    
    .kpi-value {
        font-size: 24px;
    }
    
    .kpi-label {
        font-size: 11px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .intel-layout {
        grid-template-columns: 1fr;
    }

    .intel-kpi-panel {
        padding: 24px 20px;
    }

    .intel-kpi-number {
        font-size: 36px;
    }

    .source-row {
        grid-template-columns: 8px 90px 1fr 65px;
        gap: 8px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefit-card {
        padding: 24px;
    }
    
    .results-table {
        min-width: 600px;
        font-size: 12px;
    }
    
    .results-table th,
    .results-table td {
        padding: 8px 10px;
    }
    
    .pie-chart,
    .donut-chart {
        width: 140px;
        height: 140px;
    }
    
    .logo {
        font-size: 16px;
        gap: 6px;
    }
    
    .logo svg {
        width: 28px;
        height: 28px;
    }
    
    .logo span {
        font-size: 16px;
    }
    
    .btn-create-account {
        padding: 6px;
    }

    .btn-shield-inline {
        width: 28px;
        height: 28px;
    }

    /* Results Cards Container */
    .results-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .results-card {
        background: rgba(12, 12, 12, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-left: 3px solid rgba(0, 255, 136, 0.3);
        border-radius: 10px;
        padding: 14px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        animation: fadeInRow 0.25s ease both;
        transition: border-left-color 0.2s ease, background 0.2s ease;
    }

    .results-card:hover {
        border-left-color: var(--accent-primary);
        background: rgba(0, 255, 136, 0.03);
    }

    .card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .card-index {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.2);
        font-variant-numeric: tabular-nums;
    }

    .card-email {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-primary);
        word-break: break-all;
        font-family: 'Courier New', monospace;
    }

    .card-meta {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .card-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .card-label {
        font-size: 10px;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.8px;
        flex-shrink: 0;
    }

    .card-value {
        font-size: 12px;
        color: var(--text-secondary);
        text-align: right;
    }

    .card-exposed {
        display: none;
    }

    .card-exposed-item {
        display: none;
    }

    /* Card Buttons */
    .card-button {
        width: 100%;
        min-height: 44px;
        background: var(--accent-primary);
        color: var(--bg-primary);
        border: none;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 8px;
    }

    .card-button:hover {
        background: var(--accent-secondary);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
    }

    .card-button:active {
        transform: translateY(0);
    }

    /* Hide table on mobile */
    .results-table {
        display: none;
    }

    /* Show hamburger menu */
    .hamburger-menu {
        display: flex;
    }

    /* Hide nav menu by default, show when active */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 4px;
    }


    /* Increase touch target sizes */
    button {
        min-height: 44px;
    }

    .pagination-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Section Padding for Mobile */
    .hero-section {
        padding: 40px 0;
    }

    .search-section {
        padding: 32px 0;
    }

    .results-section {
        padding: 24px 0;
    }

    /* Typography adjustments for mobile */
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    /* Pagination layout */
    .pagination-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
        align-items: center;
    }

    .pagination-controls {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination-numbers {
        display: flex;
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination-btn {
        min-width: 44px;
        padding: 8px 12px;
    }
}

/* Skip Link Styles */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-primary);
    color: var(--bg-primary);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
}

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

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

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

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

/* Tablet Styles (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {

    .hamburger-menu {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pagination-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ── Empty State ─────────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-secondary);
}

.empty-state-icon {
    margin: 0 auto 20px;
    width: 56px;
    height: 56px;
    color: var(--text-muted);
}

.empty-state-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.empty-state-query {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.empty-state-query span {
    color: var(--accent-primary);
}

.empty-state-tips {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.empty-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.tip-icon {
    color: var(--accent-primary);
    font-weight: 600;
    flex-shrink: 0;
    min-width: 16px;
}

/* ── How It Works ────────────────────────────────────────────── */
.how-it-works-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

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

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s ease;
}

.step-card:hover {
    border-color: rgba(0, 255, 136, 0.25);
}

.step-number {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    opacity: 0.7;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 255, 136, 0.07);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(0, 255, 136, 0.04);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 13px;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
}

.privacy-note svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 1px;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Data Sources Section ────────────────────────────────────── */
.sources-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

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

.source-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: border-color 0.2s ease;
}

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

.source-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.source-card-body {
    flex: 1;
    min-width: 0;
}

.source-card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.tag-stealer  { background: rgba(255, 100, 100, 0.12); color: #ff6464; }
.tag-telegram { background: rgba(0, 212, 255, 0.12);   color: #00d4ff; }
.tag-combo    { background: rgba(255, 150, 0, 0.12);   color: #ff9600; }
.tag-darknet  { background: rgba(180, 100, 255, 0.12); color: #b464ff; }
.tag-paste    { background: rgba(0, 255, 136, 0.12);   color: #00ff88; }

.source-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.source-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.source-card--update {
    background: rgba(0, 255, 136, 0.03);
    border-color: rgba(0, 255, 136, 0.12);
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.source-update-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.source-update-icon { color: var(--accent-primary); }

.source-update-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.source-update-freq {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-primary);
}

.source-update-note {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 180px;
}

@media (max-width: 1024px) {
    .sources-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .sources-grid { grid-template-columns: 1fr; }
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding: 48px 0 32px;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    max-width: 260px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

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

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

.footer-col-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.footer-col a,
.footer-col span {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-main { flex-direction: column; gap: 32px; }
    .footer-links { flex-wrap: wrap; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

}
