/* ============================================================
   attack-identification.css — 钓鱼攻击识别研究专题页专属样式
   与 style.css 全局变量完全兼容，不修改全局样式
   三页共享：attack-identification.html / -02.html / -03.html
   ============================================================ */

/* ===== CSS VARIABLES EXTENSION ===== */
:root {
    --accent-cyan: #00c6ff;
    --accent-purple: #8b5cf6;
    --accent-orange: #f59e0b;
    --accent-green: #10b981;
    --accent-red: #dc2626;
    --bg-warm-deep: #f0f4f8;
    --code-bg: #1e293b;
    --chart-primary: #1a6eff;
    --chart-secondary: #00c6ff;
    --chart-tertiary: #8b5cf6;
    --chart-quaternary: #f59e0b;
}

/* ===== HERO ===== */
.attack-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 60%, #f8fafc 100%);
    padding-top: 72px;
}
#attackCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.attack-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(240,245,255,0.2) 50%, rgba(255,255,255,0.6) 100%);
    pointer-events: none;
}
.attack-hero-content {
    position: relative;
    z-index: 3;
    max-width: 980px;
    text-align: center;
    padding: 40px 24px;
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-light);
    animation: fadeInDown 0.6s ease-out;
}
.breadcrumb-nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.breadcrumb-nav a:hover { text-decoration: underline; }
.attack-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 110, 255, 0.08);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 16px;
    border: 1px solid rgba(26, 110, 255, 0.15);
    animation: fadeInDown 0.8s ease-out;
}
.pulse-dot {
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.attack-hero h1 {
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}
.attack-hero h1 .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.attack-hero-content > p {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--text-secondary);
    max-width: 760px;
    margin: 0 auto 28px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}
.hero-meta-item {
    text-align: center;
    padding: 12px 20px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}
.hero-meta-item .num {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.hero-meta-item .label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 500;
}

/* ===== PAGE NAVIGATION (上下页) ===== */
.page-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 48px;
    padding: 0 24px;
}
.page-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 1.5px solid var(--border);
    background: white;
    color: var(--text-secondary);
}
.page-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    transform: translateX(-4px);
}
.page-nav-btn.next:hover {
    transform: translateX(4px);
}
.page-nav-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
.page-nav-btn .arrow {
    font-size: 18px;
    line-height: 1;
}
.page-indicator {
    display: flex;
    gap: 8px;
    align-items: center;
}
.page-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition);
}
.page-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}
.page-dot:hover {
    background: var(--primary-light);
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 64px 0;
}
.content-section-alt {
    background: var(--bg-warm);
}
.content-section-deep {
    background: var(--bg-warm-deep);
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.content-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.content-block {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.content-block:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow-hover);
}
.content-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.content-block h3 .icon {
    width: 36px; height: 36px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.content-block h3 .icon svg {
    width: 18px; height: 18px;
    color: var(--primary);
}
.content-block p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}
.content-block ul {
    list-style: none;
    padding: 0;
}
.content-block ul li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}
.content-block ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* ===== INFO CARD ===== */
.info-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.info-card:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow-hover);
}
.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.info-card-header .icon-box {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-card-header .icon-box.blue { background: var(--primary-light); }
.info-card-header .icon-box.purple { background: #ede9fe; }
.info-card-header .icon-box.orange { background: #fff7ed; }
.info-card-header .icon-box.green { background: #f0fdf4; }
.info-card-header .icon-box.red { background: #fef2f2; }
.info-card-header h4 {
    font-size: 16px;
    font-weight: 700;
}
.info-card p, .info-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}
.info-card ul {
    list-style: none;
    padding: 0;
    margin-top: 8px;
}
.info-card ul li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 6px;
}
.info-card ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 5px; height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

/* ===== TECH TABLE ===== */
.tech-table-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.tech-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background: white;
}
.tech-table th {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 2px solid var(--primary);
    white-space: nowrap;
}
.tech-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    line-height: 1.6;
}
.tech-table tr:hover td {
    background: var(--bg-warm);
}
.tech-table td strong {
    color: var(--text);
}

/* ===== COMPARISON TABLE ===== */
.compare-table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: white;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.compare-table thead th {
    background: linear-gradient(135deg, var(--primary-light) 0%, #e0e7ff 100%);
    color: var(--primary);
    font-weight: 700;
    text-align: center;
    padding: 14px 12px;
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
}
.compare-table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
}
.compare-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text);
    background: var(--bg-warm);
}
.compare-table tbody tr:hover td {
    background: rgba(26,110,255,0.03);
}
.compare-table .score-high {
    color: #16a34a;
    font-weight: 700;
}
.compare-table .score-mid {
    color: #f59e0b;
    font-weight: 700;
}
.compare-table .score-low {
    color: #dc2626;
    font-weight: 700;
}

/* ===== DATA HIGHLIGHT ===== */
.data-highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(26,110,255,0.05) 100%);
    border: 1px dashed rgba(26,110,255,0.3);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}
.data-highlight h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.data-highlight p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== STAT GRID ===== */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0;
}
.stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}
.stat-card:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.stat-card .stat-icon {
    width: 44px; height: 44px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.stat-card .stat-icon svg {
    width: 22px; height: 22px;
    color: var(--primary);
}
.stat-card .stat-number {
    display: inline-block;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.stat-card .stat-unit {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}
.stat-card .stat-label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
    font-weight: 500;
}

/* ===== TIMELINE ===== */
.timeline-evolution {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
}
.timeline-evolution::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 50%, var(--border) 100%);
}
.evolution-item {
    position: relative;
    padding-bottom: 40px;
}
.evolution-item:last-child { padding-bottom: 0; }
.evolution-dot {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 20px; height: 20px;
    background: white;
    border: 3px solid var(--border);
    border-radius: 50%;
    transition: var(--transition);
}
.evolution-item.past .evolution-dot {
    border-color: var(--primary);
    background: var(--primary);
}
.evolution-item.current .evolution-dot {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(26, 110, 255, 0.15);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 5px rgba(26, 110, 255, 0.15); }
    50% { box-shadow: 0 0 0 8px rgba(26, 110, 255, 0.08); }
}
.evolution-content {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}
.evolution-content:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow);
}
.evolution-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.evolution-phase {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 100px;
}
.evolution-status {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}
.evolution-status.past {
    background: #e6f7ed;
    color: #2ea043;
}
.evolution-status.current {
    background: #fff7ed;
    color: #f57c00;
}
.evolution-content h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}
.evolution-content > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}
.evolution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.evolution-tags span {
    font-size: 12px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 500;
}

/* ===== CASE STUDY ===== */
.case-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.case-card:hover {
    border-color: rgba(26, 110, 255, 0.2);
    box-shadow: var(--shadow-hover);
}
.case-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--primary-gradient);
}
.case-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.case-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
}
.case-tag.real {
    background: #fef2f2;
    color: #dc2626;
}
.case-tag.simulation {
    background: #f0fdf4;
    color: #16a34a;
}
.case-tag.research {
    background: #e0e7ff;
    color: #4338ca;
}
.case-date {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}
.case-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}
.case-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}
.case-source {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-weight: 500;
}

/* ===== REFERENCE LIST ===== */
.ref-section {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}
.ref-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}
.ref-section ol {
    padding-left: 20px;
}
.ref-section ol li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 4px;
}
.ref-section ol li a {
    color: var(--primary);
    text-decoration: none;
    word-break: break-all;
}
.ref-section ol li a:hover { text-decoration: underline; }

/* ===== RELATED NAV ===== */
.related-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 32px;
}
.related-nav a {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
}
.related-nav a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}
.related-nav a.current {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

/* ===== CHART CONTAINER ===== */
.chart-container {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}
.chart-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

/* ===== CODE BLOCK ===== */
.code-block {
    background: var(--code-bg);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin: 16px 0;
    overflow-x: auto;
}
.code-block code {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', 'Monaco', monospace;
    font-size: 12px;
    color: #e2e8f0;
    line-height: 1.7;
    white-space: pre-wrap;
    word-break: break-all;
    display: block;
}
.code-block .code-comment { color: #64748b; }
.code-block .code-keyword { color: #c084fc; }
.code-block .code-string { color: #4ade80; }
.code-block .code-number { color: #fbbf24; }

/* ===== FIGURE ===== */
.figure {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
    text-align: center;
}
.figure-caption {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 12px;
    font-weight: 500;
}

/* ===== QUOTE BLOCK ===== */
.quote-block {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(26,110,255,0.05) 100%);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin: 20px 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
}
.quote-block .quote-author {
    font-style: normal;
    font-weight: 600;
    color: var(--text);
    margin-top: 8px;
    font-size: 13px;
}

/* ===== ALERT BOX ===== */
.alert-box {
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 16px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.alert-box.info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}
.alert-box.warning {
    background: #fffbeb;
    border: 1px solid #fcd34d;
}
.alert-box.danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
}
.alert-box svg {
    width: 20px; height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.alert-box.info svg { color: var(--primary); }
.alert-box.warning svg { color: #f59e0b; }
.alert-box.danger svg { color: #dc2626; }
.alert-box p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 48px 0;
}
.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.section-divider span {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr; }
    .content-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .related-nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .attack-hero { min-height: 420px; padding-top: 96px; }
    .attack-hero h1 { font-size: clamp(24px, 6vw, 32px); }
    .hero-meta { gap: 12px; }
    .content-grid-3 { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr; }
    .page-nav { flex-direction: column; gap: 12px; }
    .page-indicator { order: -1; }
    .related-nav { grid-template-columns: 1fr; }
    .content-block { padding: 24px; }
    .ref-section { padding: 24px; }
    .tech-table { font-size: 12px; }
    .tech-table th, .tech-table td { padding: 10px 12px; }
}


/* ===== MOBILE NAVIGATION FIX ===== */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex !important;
        width: 40px;
        height: 40px;
        border: none;
        background: var(--primary-light);
        border-radius: 10px;
        cursor: pointer;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        z-index: 1001;
    }
    .mobile-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
        transition: var(--transition);
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        gap: 4px;
        border-bottom: 1px solid var(--border);
        z-index: 999;
        list-style: none;
        margin: 0;
    }
    .nav-links.active {
        display: flex !important;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
        text-decoration: none;
        color: var(--text-secondary);
        font-size: 14px;
        font-weight: 500;
        transition: var(--transition);
    }
    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary);
        background: var(--primary-light);
    }
    /* Hero adjustments */
    .attack-hero { min-height: 420px !important; padding-top: 96px !important; }
    .attack-hero h1 { font-size: clamp(24px, 6vw, 32px) !important; }
    .hero-meta { gap: 12px !important; margin-top: 20px !important; }
    .hero-meta-item { padding: 10px 14px !important; }
    .hero-meta-item .num { font-size: 20px !important; }
    /* Page nav */
    .page-nav { flex-direction: column !important; gap: 12px !important; }
    .page-indicator { order: -1 !important; }
    /* Content */
    .content-grid { grid-template-columns: 1fr !important; }
    .content-grid-3 { grid-template-columns: 1fr !important; }
    .stat-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .related-nav { grid-template-columns: 1fr !important; }
    .content-block { padding: 20px !important; }
    .ref-section { padding: 20px !important; }
    .tech-table { font-size: 11px !important; }
    .tech-table th, .tech-table td { padding: 8px 10px !important; }
    .compare-table { font-size: 11px !important; }
    .compare-table th, .compare-table td { padding: 8px 6px !important; }
    /* Timeline */
    .timeline-evolution { padding-left: 32px !important; }
    .evolution-dot { left: -26px !important; width: 16px !important; height: 16px !important; }
    /* Case cards */
    .case-header { flex-wrap: wrap !important; gap: 8px !important; }
    /* Footer */
    .footer-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .footer-bottom { flex-direction: column !important; text-align: center !important; }
    /* CTA */
    .phishing-cta { padding: 40px 24px !important; }
    .cta-actions { flex-direction: column !important; align-items: center !important; }
}

@media (max-width: 1024px) {
    .content-grid { grid-template-columns: 1fr !important; }
    .content-grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
    .stat-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .related-nav { grid-template-columns: repeat(2, 1fr) !important; }
}
