/* ========================================================= */
/* ===================== DESIGN TOKENS ===================== */
/* ========================================================= */


:root {
    --primary: #4f46e5;
    --primary-soft: #6366f1;

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --bg-main: #f7f8fc;
    --bg-card: #ffffff;

    --border-light: #eef2f7;

    --status-safe: #10b981;
    --status-neutral: #f59e0b;
    --status-danger: #ef4444;
	--bg-soft: #f9fafc;
    --bg-light: #ffffff;
    --bg-layer: #f1f5f9;
}

/* ================= LINK SYSTEM ================= */

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--primary);
}

a:visited {
    color: inherit;
}



.section {
    padding: 110px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-light {
    background: var(--bg-light);
}

.section-layer {
    background: var(--bg-layer);
}

.section-dark {
    background: var(--primary);
    color: #ffffff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
    color: #ffffff;
}

/* ========================================================= */
/* ======================= BASE RESET ====================== */
/* ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Barlow', system-ui, -apple-system, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
	overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================================= */
/* ========================= HEADER ======================== */
/* ========================================================= */

.site-header {
    position: relative;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    height: 88px; /* CLS safe */
}

.header-inner {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 52px;
    width: auto;
    flex-shrink: 0;
}


/* Mobile */
@media (max-width: 768px) {
    .logo-img {
        height: 38px;
    }
}

/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: #334155;
    transition: color 0.2s ease;
}

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

/* Mobile Toggle */

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    margin: 5px 0;
    transition: all 0.2s ease;
}

/* ========================================================= */
/* ========================== HERO ========================= */
/* ========================================================= */

.home-hero {
    position: relative;
 
    background: linear-gradient(
        135deg,
        #4f46e5 0%,
        #4338ca 40%,
        #312e81 100%
    );
    padding: 110px 0 120px 0;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}





.home-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-sub {
    max-width: 680px;
    margin: 0 auto 48px auto;
    font-size: 18px;
    opacity: 0.9;
}

.hero-search {
    display: flex;
    align-items: stretch;
    max-width: 640px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    overflow: hidden;
}

/* INPUT */
.hero-search input {
    flex: 1;
    padding: 18px 22px;
    font-size: 16px;
    border: none;
    outline: none;
    background: #ffffff;
    color: #111827;
}

/* PLACEHOLDER */
.hero-search input::placeholder {
    color: #9ca3af;
}

/* BUTTON */
.hero-search button {
    padding: 0 28px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    background: #111827;
    color: #ffffff;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.hero-search button:hover {
    background: #000000;
}

/* ========================================================= */
/* =================== HERO TRUST SECTION ================== */
/* ========================================================= */

.hero-trust {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 80px;
}

.hero-trust-item {
    text-align: center;
    color: #ffffff;
}

.trust-icon {
    width: 28px;
    height: 28px;
    margin: 0 auto 12px auto;
    opacity: 0.9;
}

.trust-icon svg {
    width: 100%;
    height: 100%;
    stroke: #ffffff;
    stroke-width: 2.2;

}

.hero-trust-item strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-trust-item span {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}



@media (max-width: 768px) {

    .home-hero {
        padding: 65px 0 70px 0;
    }

    .home-hero h1 {
        font-size: 30px;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .hero-sub {
        font-size: 15px;
        margin-bottom: 32px;
        padding: 0 12px;
    }

    .hero-search {
        flex-direction: column;
        border-radius: 14px;
    }

    .hero-search button {
        width: 100%;
        padding: 16px;
    }

    .hero-trust {
        gap: 22px;
        margin-top: 20px;
    }

    .hero-trust-item {
        margin: 0;
    }

    .trust-icon {
        margin-bottom: 6px;
    }

    .hero-trust-item strong {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .hero-trust-item span {
        font-size: 13px;
    }
	
	.hero-search input {
    font-size: 16px;
    }
}


.hero-trust-item {
    text-align: center;
}

.hero-trust-item strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.hero-trust-item span {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}
/* ========================================================= */
/* ========================== CARDS ======================== */
/* ========================================================= */

.card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.05);
    border: 1px solid var(--border-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
}

/* Grid System */

.grid {
    display: grid;
    gap: 32px;
}

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

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

/* ========================================================= */
/* ========================== BADGES ======================= */
/* ========================================================= */

.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
}

.badge-safe {
    background: rgba(16,185,129,0.1);
    color: var(--status-safe);
}

.badge-neutral {
    background: rgba(245,158,11,0.1);
    color: var(--status-neutral);
}

.badge-danger {
    background: rgba(239,68,68,0.1);
    color: var(--status-danger);
}

/* ========================================================= */
/* ========================== FOOTER ======================= */
/* ========================================================= */

.site-footer {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    margin-top: 80px;
}

.footer-inner {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 28px;
}

.footer-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    transition: color 0.2s ease;
}

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

.footer-copy p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* ========================================================= */
/* ========================= RESPONSIVE ==================== */
/* ========================================================= */

@media (max-width: 768px) {

    /* Navigation */

    .main-nav {
        position: fixed;
        top: 88px;
        right: -100%;
        width: 260px;
        height: calc(100% - 88px);
        background: #ffffff;
        box-shadow: -10px 0 40px rgba(0,0,0,0.06);
        padding: 32px;
        transition: right 0.3s ease;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .mobile-toggle {
        display: block;
    }

    /* Hero */

    .home-hero {
        padding: 90px 0 100px 0;
    }

    .home-hero h1 {
        font-size: 34px;
    }

    .hero-search {
        flex-direction: column;
        gap: 14px;
    }

    .hero-search input,
    .hero-search button {
        border-radius: 14px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
        font-size: 13px;
    }

    /* Footer */

    .footer-inner {
        padding: 32px 0;
    }

    .footer-links ul {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    /* Grid */

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}


.home-explainer {
    background: var(--bg-soft);
}


.explainer-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.home-explainer h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.explainer-lead {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 50px;
}

.explainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.explainer-item {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(15,23,42,0.04);
}

.explainer-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.explainer-item p {
    font-size: 14px;
    color: var(--text-muted);
}

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



/* ========================================================= */
/* =================== LIVE ACTIVITY ======================= */
/* ========================================================= */

.home-live {
    background: linear-gradient(
        180deg,
        var(--bg-soft) 0%,
        var(--bg-layer) 100%
    );
}

.home-live::before {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(15,23,42,0.08),
        transparent
    );
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .home-live {
        padding: 90px 0;
    }
}

.live-header {
    text-align: center;
    margin-bottom: 50px;
}

.live-header h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.live-header p {
    color: var(--text-muted);
    font-size: 15px;
}

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

.live-card {
    position: relative;
    overflow: hidden;

    display: block;
    background: #ffffff;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(15,23,42,0.05);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(15,23,42,0.04);
}

.live-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15,23,42,0.08);
}

.live-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    opacity: 0;
    transition: opacity 0.2s ease;
}

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




.live-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.live-number {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #0f172a;
}

.live-comment {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.live-meta {
    font-size: 12px;
    color: #94a3b8;
}

.live-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 40px;
    letter-spacing: 0.3px;
	backdrop-filter: blur(4px);
}



/* Status Badges */

.comment-status-safe {
    background: rgba(16,185,129,0.1);
    color: #10b981;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
}

.comment-status-neutral {
    background: rgba(245,158,11,0.1);
    color: #f59e0b;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
}

.comment-status-not-safe,
.comment-status-terror {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
}

/* Responsive */

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

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

}


/* ========================================================= */
/* ===================== POPULAR NUMBERS =================== */
/* ========================================================= */

.home-popular {
    padding: 110px 0;
}

.popular-header {
    text-align: center;
    margin-bottom: 60px;
}

.popular-header h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.popular-header p {
    font-size: 15px;
    color: var(--text-muted);
}

.popular-grid {
    max-width: 800px;
    margin: 0 auto;
}

.popular-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.popular-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: var(--bg-card);
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.popular-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(15,23,42,0.06);
}

.popular-number {
    font-weight: 600;
    color: var(--text-main);
}

.popular-views {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

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

/* ========================================================= */
/* ========================= FAQ =========================== */
/* ========================================================= */

/* =========================
   Home Explainer Section
========================= */

.home-explainer__card {
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:40px;
    box-shadow:0 8px 28px rgba(15,23,42,0.05);
}

.home-explainer__header {
    margin-bottom:32px;
}

.home-explainer__title {
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
    color:#111827;
}

.home-explainer__intro {
    font-size:15px;
    color:#4b5563;
    line-height:1.6;
}

.home-explainer__block {
    margin-top:32px;
}

.home-explainer__subtitle {
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
    color:#111827;
}

.home-explainer__text {
    font-size:15px;
    color:#4b5563;
    line-height:1.7;
}


/* ===== Highlight Numbers ===== */

.home-explainer__highlight {
    margin-top:18px;
}

.home-explainer__highlight-title {
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
    color:#6b7280;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

.home-explainer__numbers {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.home-explainer__number {
    padding:8px 14px;
    background:#eef2ff;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    color:#1e3a8a;
    text-decoration:none;
    transition:all .2s ease;
}

.home-explainer__number:hover {
    background:#6366f1;
    color:#ffffff;
    transform:translateY(-2px);
}

/* ========================================================= */
/* ========================= FAQ =========================== */
/* ========================================================= */

.home-faq {
    padding: 120px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.faq-sub {
    font-size: 15px;
    color: var(--text-muted);
}

.faq-grid {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 18px;
    border: 1px solid var(--border-light);
    margin-bottom: 18px;
    padding: 0;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item:hover {
    box-shadow: 0 20px 40px rgba(15,23,42,0.06);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    flex: 1;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--text-main);
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 26px 24px 26px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}



/* ================= CTA ================= */

.home-cta {
    text-align: center;
}

.cta-box {
    max-width: 760px;
    margin: 0 auto;
}

.home-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.home-cta p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 14px 26px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
}








/* ================= NUMBER HERO ================= */

.number-hero {
    text-align: center;
}

.number-highlight {
    margin-top: 20px;
}

.number-status-badge {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15,23,42,0.05);
}



/* ================= SPAM GAUGE ================= */

.spam-gauge-wrapper {
    position: relative;
    width: 260px;
    margin: 0 auto;
}

.spam-gauge {
    width: 100%;
    height: auto;
}

.gauge-progress {
    transition: stroke-dashoffset 1.2s ease;
}

.gauge-center {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    text-align: center;
}

.gauge-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.gauge-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-main);
}


/* ================= ANALYSIS CARD ================= */

.number-analysis-section {
    padding: 40px 0 80px 0;
    background: linear-gradient(
        180deg,
        #f8fafc 0%,
        #eef2f7 100%
    );
}

.analysis-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;

    background: #ffffff;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(15,23,42,0.08);
    border: 1px solid rgba(15,23,42,0.04);
}

/* Header */

.analysis-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.analysis-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(99,102,241,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.analysis-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* Body Text */

.analysis-body-text {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Stats Row */

.analysis-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(15,23,42,0.06);
    padding-top: 24px;
}

.analysis-stat {
    text-align: left;
}

.stat-big {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Right Side */

.analysis-right {
    display: flex;
    justify-content: center;
}

/* Responsive */

@media (max-width: 900px) {
    .analysis-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .analysis-stats-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .analysis-stat {
        text-align: center;
    }
}

/* ================= SOFT NUMBER HERO ================= */
.hero-eyebrow {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    color: #2f355c;
}

@media (max-width: 768px) {
    .hero-eyebrow {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
}

.number-pill-soft {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 1.6rem;
    font-weight: 600;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.number-hero-soft {
    padding: 5px 0 60px 0;
    text-align: center;
    background: linear-gradient(
        180deg,
        #f8fafc 0%,
        #f1f5f9 100%
    );
    position: relative;
}

.number-hero-soft::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(99,102,241,0.08),
        transparent 60%
    );
    pointer-events: none;
}

.number-title-soft {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
}



/* Risk coloring */

.risk-low {
    color: #10b981;
}

.risk-medium {
    color: #f59e0b;
}

.risk-high {
    color: #ef4444;
}

/* Highlight Block hinter Beschreibung */

.analysis-highlight {
    background: linear-gradient(
        135deg,
        rgba(99,102,241,0.05),
        rgba(99,102,241,0.02)
    );
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 32px;
    border: 1px solid rgba(15,23,42,0.04);
}

.analysis-body-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 10px;
}

.analysis-subtext {
    font-size: 14px;
    color: #64748b;
}

.gauge-progress {
    transition: stroke-dashoffset 1.2s cubic-bezier(.4,0,.2,1);
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.15));
}

.gauge-progress.high-risk {
    filter: drop-shadow(0 0 6px rgba(239,68,68,0.4));
}


.number-activity-section {
    margin-top: 60px;
}

.activity-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.activity-header h2 {
    font-size: 20px;
    font-weight: 600;
}

.activity-chart {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    height: 180px;
    margin-bottom: 30px;
}


.chart-bar-wrapper {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    position: relative;
}

.chart-bar {
    width: 100%;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.chart-bar:hover {
    transform: translateY(-4px);
    filter: brightness(1.1);
}

/* Tooltip */
.chart-bar::after {
    content: attr(data-count) " Meldungen";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: white;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    margin-bottom: 8px;
    transition: opacity 0.2s ease;
}

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

/* Skala */
.chart-scale {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
}

.chart-label {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #6b7280;
}

.activity-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid #f3f4f6;
    padding-top: 25px;
}

.activity-stat {
    text-align: center;
}

.stat-big {
    font-size: 22px;
    font-weight: 700;
}

.stat-label {
    font-size: 13px;
    color: #6b7280;
}

.no-activity {
    padding: 40px 0;
    text-align: center;
    font-size: 15px;
    color: #6b7280;
}

.number-comments-section {
    margin-top: 60px;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.comment-filter {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 20px;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.filter-btn.active {
    background: linear-gradient(90deg,#6366f1,#8b5cf6);
    color: white;
}

.comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    gap: 20px;
}

.comment-card {
    background: white;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
}

.comment-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: white;
}

.status-betrug { background:#ef4444; }
.status-telefonterror { background:#dc2626; }
.status-unsicher { background:#f59e0b; }
.status-neutral { background:#6b7280; }
.status-hotline { background:#3b82f6; }
.status-seriös { background:#10b981; }

.comment-text {
    font-size: 15px;
}

.number-comments-section {
    margin-top: 70px;
}

.comments-card {
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.95) 0%,
        rgba(245,247,255,0.85) 100%
    );
    border-radius: 32px;
    padding: 48px;
    box-shadow:
        0 40px 80px rgba(99,102,241,0.06),
        0 10px 25px rgba(0,0,0,0.04);
    backdrop-filter: blur(20px);
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.number-comments-section {
    margin-top: 70px;
}



.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.comments-title {
    font-size: 22px;
    font-weight: 600;
}

.comment-filter {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 20px;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: #e5e7eb;
}

.filter-btn.active {
    background: linear-gradient(90deg,#6366f1,#8b5cf6);
    color: white;
}

.comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    gap: 20px;
}



.comment-card {
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.comment-card:hover {
    transform: none;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.comment-author {
    font-weight: 600;
    font-size: 15px;
}

.comment-date {
    margin-left: auto;
    font-size: 13px;
    color: #6b7280;
}

.comment-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.status-betrug { background:#ef4444; }
.status-telefonterror { background:#dc2626; }
.status-unsicher { background:#f59e0b; }
.status-neutral { background:#9ca3af; }
.status-hotline { background:#3b82f6; }
.status-seriös { background:#10b981; }

.comment-text {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    color: #111827;
}

.no-comments {
    padding: 40px 0;
    text-align: center;
    color: #6b7280;
}

.comment-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* Farben */
.status-betrug,
.status-telefonterror {
    background: #ef4444;
}

.status-unsicher {
    background: #f59e0b;
}

.status-seriös {
    background: #10b981;
}

.status-neutral {
    background: #9ca3af;
}

.status-hotline {
    background: #3b82f6;
}

.comment-form-wrapper {
    margin-top: 40px;
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(145deg, #f5f7ff, #ffffff);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.comment-form-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-select,
.form-textarea,
.form-input {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    transition: 0.2s ease;
}

.form-select:focus,
.form-textarea:focus,
.form-input:focus {
    border-color: #6366f1;
    outline: none;
}

.submit-btn {
    padding: 14px 22px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    opacity: 0.9;
}

.comment-card {
    background: linear-gradient(145deg, #ffffff, #f5f7ff);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.comment-meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-meta-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.comment-status {
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.comment-rating {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 14px;
    color: #d1d5db;
}

.star.filled {
    color: #f59e0b;
}

.comment-body-text {
    font-size: 15px;
    line-height: 1.6;
}

.comment-report-link {
    background: transparent;
    border: none;
    font-size: 12px;
    color: #64748b;
    cursor: pointer;
}

.comment-report-link:hover {
    color: #ef4444;
}

.level-2 { margin-left: 30px; }
.level-3 { margin-left: 60px; }

.hero-rating {
    margin-top: 10px;
    text-align: center;
}

.hero-stars {
    font-size: 22px;
}

.hero-stars .star {
    color: #d1d5db;
}

.hero-stars .star.filled {
    color: #f59e0b;
}

.hero-rating-text {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}
.comment-rating-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.rating-label {
    font-weight: 600;
    font-size: 15px;
    color: #1f2937;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    gap: 6px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    font-size: 26px;
    color: #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: #fbbf24;
    transform: scale(1.1);
}

.rating-stars input:checked ~ label {
    color: #f59e0b;
}

.comment-form-card {
    background: linear-gradient(145deg, #ffffff, #f5f7ff);
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    margin-top: 30px;
}

.comment-form-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.comment-rating-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.rating-label {
    font-weight: 600;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    gap: 6px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    font-size: 26px;
    color: #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: #fbbf24;
}

.rating-stars input:checked ~ label {
    color: #f59e0b;
}

.comment-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.comment-row input,
.comment-row select,
textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}

textarea {
    margin-bottom: 16px;
    resize: vertical;
}

.comment-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-submit-btn {
    background: linear-gradient(to right, #6366f1, #4f46e5);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s ease;
}

.comment-submit-btn:hover {
    opacity: 0.9;
}

.consent-checkbox {
    font-size: 13px;
    color: #6b7280;
}

@media (max-width: 768px) {

    .activity-chart {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .activity-chart::-webkit-scrollbar {
        height: 6px;
    }

    .activity-chart::-webkit-scrollbar-thumb {
        background: #d1d5db;
        border-radius: 10px;
    }

    .chart-bar-wrapper {
        min-width: 28px;
        flex: 0 0 28px;
    }

    .chart-label {
        font-size: 10px;
    }


}

@media (max-width: 768px) {

    .activity-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-big {
        font-size: 18px;
    }

}

@media (max-width: 768px) {

    .activity-chart {
        height: 140px;
    }

}

@media (max-width: 768px) {

    .comments-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

}

@media (max-width: 768px) {

    .comment-filter {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        width: 100%;
    }

    .comment-filter::-webkit-scrollbar {
        height: 5px;
    }

    .comment-filter::-webkit-scrollbar-thumb {
        background: #e5e7eb;
        border-radius: 10px;
    }

    .filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 13px;
        padding: 6px 14px;
    }

}

@media (max-width: 768px) {

    .comment-row {
        grid-template-columns: 1fr;
    }

    .comment-form-card {
        padding: 22px;
    }

    .comment-form-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .comment-rating-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .rating-stars label {
        font-size: 24px;
    }

    textarea {
        min-height: 120px;
    }

    .comment-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .comment-submit-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 16px;
        font-size: 15px;
    }

    .consent-checkbox {
        font-size: 12px;
    }

}

@media (max-width: 768px) {

    .comment-row input,
    .comment-row select,
    textarea {
        font-size: 15px;
        padding: 12px 14px;
        border-radius: 12px;
    }

}

@media (max-width: 768px) {

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

}

.ad-top-wrapper {
    margin: 30px 0;
}

.ad-top {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {

    .number-hero-soft {
        padding: 40px 0 35px;
    }

}

@media (max-width: 768px) {

    .comment-form-card {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

}

.number-seo-section {
    margin-top: 50px;
}

.seo-card {
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.05);
}

.seo-card h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.seo-card h3 {
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 18px;
}

.seo-card p {
    margin-bottom: 14px;
    line-height: 1.7;
}

.confidence-notice {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 12px;
    line-height: 1.5;
    border-left: 4px solid #cbd5e1;
}

.spam-gauge-wrapper {
    position: relative;
    width: 340px;
    margin: 0 auto;
}

.spam-gauge {
    width: 100%;
    height: auto;
}

.gauge-center {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 200px;
}

.gauge-label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #6b7280;
    line-height: 1.4;
}

.gauge-value-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gauge-value {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.gauge-subtext {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
}

.section-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}



/* ==================================
   COMMUNITY SUMMARY SECTION
================================== */

.community-summary-section {
    padding: 60px 0;
}

.community-summary {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Heading */
.community-summary h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

/* Overview */
.summary-overview {
    margin-bottom: 24px;
}

.summary-overview strong {
    font-size: 22px;
    font-weight: 700;
    color: #ef4444;
}

.summary-overview span {
    font-size: 14px;
    color: #6b7280;
}

/* Report rows */
.report-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

/* Label */
.label {
    width: 150px;
    font-size: 14px;
    color: #374151;
}

/* Bar wrapper */
.bar-wrapper {
    flex: 1;
    height: 10px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

/* Bar */
.bar {
    height: 100%;
    background: #ef4444;
    border-radius: 6px;
    transition: width 0.6s ease;
}

/* Percent */
.percent {
    width: 45px;
    text-align: right;
    font-size: 13px;
    color: #6b7280;
}

/* Last activity */
.last-activity {
    margin-top: 20px;
    font-size: 13px;
    color: #6b7280;
    border-top: 1px solid #f1f1f1;
    padding-top: 12px;
}

/* ==================================
   RELATED NUMBERS SECTION
================================== */

/* ==================================
   RELATED NUMBERS SECTION
================================== */

.related-numbers-section {
    padding: 60px 0;
}

.related-card {
    background: #ffffff;
	border-top: 4px solid #6366f1;
    border-radius: 20px; /* ← wichtig */
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
	overflow: hidden;
}

.related-card h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1f2937;
}

/* Grid */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

/* Item */
.related-item {
    display: block;
    background: #f9fafb;
    border-radius: 14px;
    padding: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.related-item:hover {
    background: #eef2ff;
    border-color: rgba(99, 102, 241, 0.25);
    transform: translateY(-2px);
}

/* Nummer */
.related-number {
    font-weight: 600;
    font-size: 16px;
    color: #111827;
    margin-bottom: 6px;
}

/* Kommentar Preview */
.related-comment {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

/* ==================================
   MOBILE
================================== */

@media (max-width: 768px) {

    .related-numbers-section {
        padding: 40px 0;
    }

    .related-card {
        padding: 20px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

}

/* ==================================
   NUMBER FAQ SECTION
================================== */

.number-faq-section {
    padding: 60px 0;
}

.faq-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.faq-card h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 28px;
    color: #1f2937;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 22px 24px;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Frage */
.faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

/* Antwort */
.faq-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

@media (max-width: 768px) {

    .number-faq-section {
        padding: 40px 0;
    }

    .faq-card {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 15px;
    }

    .faq-item p {
        font-size: 13px;
    }

}

.number-faq-section .faq-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 4px solid #e5e7eb; /* neutraler Akzent */
}


/* ===== Gauge Mobile Fix ===== */

.analysis-right {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0; /* VERY IMPORTANT */
}

/* =========================
   Spam Gauge
========================= */

.spam-gauge-wrapper {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 40px auto 0;
}

.spam-gauge {
    width: 100%;
    height: auto;
    display: block;
}

/* TEXT ZENTRIERUNG */
.gauge-center {
    position: absolute;
    left: 50%;
    top: 65%;              /* WICHTIG – weiter nach unten */
    transform: translate(-50%, -50%);
    text-align: center;
    width: 75%;
}

/* RISIKO LABEL */
.gauge-label {
    font-size: 11px;
	max-width:200px;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 8px;
	margin:0 auto;
}

/* PROZENT WERT */
.gauge-value {
    font-size: 44px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

/* SUBTEXT */
.gauge-subtext {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 6px;
}

@media (max-width: 768px) {
.gauge-label {
    max-width: 170px;
    margin-left: auto;
    margin-right: auto;
    }  
}

@media (max-width: 768px) {

    .comments-card {
        padding: 22px;     /* statt 48px */
        border-radius: 22px;
    }

}

/* ===== MOBILE OPTIMIERUNG ANALYSE ===== */

@media (max-width: 768px) {

    /* 2 Spalten statt 3 untereinander */
    .analysis-stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    /* Datum volle Breite */
    .analysis-stats-row .analysis-stat:nth-child(3) {
        grid-column: span 2;
    }

    .analysis-stat .stat-big {
        font-size: 18px;
        font-weight: 700;
    }

    .analysis-stat .stat-label {
        font-size: 12px;
        color: #6b7280;
    }

    /* Weniger Abstand zwischen Stats und Gauge */
    .analysis-right {
        margin-top: 15px;
    }

    /* Gauge etwas kleiner auf Mobile */
    .spam-gauge-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

}

/* =============================
   SUMMARY BOX
============================= */
/* =============================
   NUMBER SUMMARY
============================= */

.number-summary-section {
    margin: 60px 0;
}

.summary-card {
    background: linear-gradient(145deg, #ffffff, #f3f4f6);
    border-radius: 18px;
    padding: 28px 32px;
    border: 1px solid #e5e7eb;
    box-shadow:
        0 12px 30px rgba(0,0,0,0.04),
        0 4px 12px rgba(99,102,241,0.05);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,#6366f1,#8b5cf6);
}

.summary-title {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #111827;
}


.summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #374151;
}

.summary-icon {
    font-size: 14px;
    margin-top: 2px;
}



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

.summary-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #6366f1;
}

/* Mobile */
@media (max-width: 768px) {

    .summary-card {
        padding: 18px;
    }

    .summary-title {
        font-size: 16px;
    }

    .summary-list li {
        font-size: 14px;
    }

}