/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ef4444;
    --primary-dark: #dc2626;
    --bg-dark: #ffffff;
    --bg-card: #f9fafb;
    --bg-hover: #f3f4f6;
    --text: #111827;
    --text-muted: #6b7280;
    --border: #e5e7eb;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-toggle {
    position: absolute;
    left: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    display: block;
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle:hover span {
    background: var(--primary);
}

.header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.warning-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
}

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

.header-title .name {
    color: var(--text);
    font-size: 20px;
}

.header-title .scam {
    color: var(--primary);
    font-size: 20px;
}

@media (min-width: 768px) {
    .header-title .name,
    .header-title .scam {
        font-size: 24px;
    }
}

/* ===== MOBILE SIDEBAR ===== */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -350px;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background-color: hsl(207, 53%, 11%); /* Dark navy blue */
    padding: 25px 0;
    z-index: 9998;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    left: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
    padding: 0;
    z-index: 1001;
}

.close-btn:hover {
    color: hsl(0, 0%, 100%) !important;
}

.mobile-sidebar a {
    display: block;
    color: hsl(0, 0%, 100%);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 14px 40px;
    margin-bottom: 2px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.mobile-sidebar a:hover {
    color: hsl(42, 52%, 54%);
    background-color: transparent;
}

/* ===== OVERLAY ===== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9997;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== LAYOUT ===== */
.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px 40px;
}

.content {
    width: 100%;
}

/* ===== SECTIONS ===== */
.section {
    margin-bottom: 60px;
}

/* Section Header Card */
.section-header-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header-card h1 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--text);
}

.section-header-card .subtitle {
    color: var(--text-muted);
    font-size: 18px;
    margin: 0;
}

.section hr {
    display: none;
}

/* Content Cards */
.content-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.content-card h2 {
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 700;
    margin: 0 0 25px 0;
    color: var(--text);
}

.content-card h3 {
    margin-top: 0;
}

.section-title {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    margin: 35px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== IMAGE GRID (3 COLUMNS) ===== */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.image-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 48px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.image-caption {
    padding: 15px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== OVERVIEW CONTENT ===== */
.overview-content {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    line-height: 1.8;
    color: var(--text);
    margin: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* ===== EVIDENCE LIST ===== */
/* ===== EVIDENCE LIST ===== */
.evidence-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.evidence-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.evidence-item:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.evidence-number {
    flex-shrink: 0;
    background: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* ===== NUMBERS GRID ===== */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.number-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.number-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}

.phone-icon {
    color: #ef4444; /* red */
    flex-shrink: 0;
    margin-top: 2px;
}

.number-info {
    flex-grow: 1;
}

.number-text {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.number-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* ===== TESTIMONIAL ===== */
/* ===== TESTIMONIALS GRID ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.testimonial {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 10px;
}

.testimonial-content {
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 15px;
}

.testimonial-author {
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.author-name {
    font-size: 14px;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 600;
}

/* ===== NOTE BOX ===== */
.note {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 20px;
    border-radius: 12px;
    font-size: 14px;
    margin: 25px 0;
    color: var(--text-muted);
    line-height: 1.7;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.note-icon {
    font-size: 20px;
    flex-shrink: 0;
}

/* ===== DOWNLOAD CARD ===== */
.download-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.download-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.download-info {
    flex: 1;
}

.download-info h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.download-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}

.download-card .download-btn {
    background: white;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: none;
    margin: 0;
    display: inline-block;
}

.download-card .download-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ===== IMAGE MODAL ===== */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-modal.active {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10001;
}

.modal-close:hover {
    background: var(--primary-dark);
    transform: rotate(90deg);
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-content p {
    color: var(--text);
    margin-top: 20px;
    font-size: 16px;
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    margin-top: 60px;
    padding: 50px 20px 30px;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-disclaimer {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-disclaimer p {
    line-height: 1.8;
    color: var(--text-muted);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

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

.footer-copy {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .content-card {
        padding: 25px 20px;
    }

    .section-header-card {
        padding: 30px 20px;
    }

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

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

    .download-card {
        flex-direction: column;
        text-align: center;
    }

    .download-card .download-btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .wrapper {
        padding: 90px 15px 30px;
    }

    .content-card {
        padding: 20px 15px;
    }

    .section-header-card {
        padding: 25px 15px;
    }

    .header-title .name,
    .header-title .scam {
        font-size: 16px;
    }
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== SELECTION ===== */
::selection {
    background: var(--primary);
    color: white;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f3f4f6;
}

::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ===== NEW HERO SECTION ===== */
.hero-section {
    background-color: #f7f6f2;
    padding: 40px 0 60px;
    margin-top: -100px;
    margin-bottom: 60px;
    padding-top: 120px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.hero-carousel-inner {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    background: #eef1f5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-slide {
    display: none;
    width: 100%;
    height: 100%;
}
.hero-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slide img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.hero-slide.empty-state {
    color: #9ca3af;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
}
.hero-nav-btn {
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    color: #4b5563;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.hero-nav-btn:hover {
    transform: scale(1.05);
}
.hero-bottom-area {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-main-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 15px 0;
    font-family: 'Inter', -apple-system, sans-serif;
}
.hero-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background-color 0.3s;
}
.hero-dot.active {
    background: #eab308;
}
.hero-download-wrapper {
    position: absolute;
    right: 20px;
    bottom: -10px;
}
.hero-download-btn {
    background: #0f172a;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}
.hero-download-btn:hover {
    background: #1e293b;
    color: white;
}
@media (max-width: 768px) {
    .hero-carousel-wrapper {
        padding: 0 20px;
        gap: 15px;
    }
    .hero-nav-btn {
        width: 35px;
        height: 35px;
    }
    .hero-carousel-inner {
        max-width: 100%;
    }
    .hero-download-wrapper {
        position: static;
        margin-top: 30px;
    }
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: 60px 20px;
    background-color: #ffffff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 60px;
}
.intro-container {
    max-width: 1200px;
    margin: 0 auto;
}
.intro-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 40px;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}
.intro-alert {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.intro-alert .alert-icon {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}
.intro-alert p {
    color: #1f2937;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}
.intro-text {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 24px;
}
.intro-image-container {
    width: 100%;
}
.intro-image-placeholder {
    width: 100%;
    aspect-ratio: 9/11;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.intro-image-placeholder span {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===== CENTERED OVERVIEW (First Section) ===== */
.centered-overview {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.9;
    padding: 0 20px;
    font-weight: 400;
}

/* ===== FEATURED VIDEOS SECTION ===== */
.featured-videos-section {
    padding: 60px 20px;
    background-color: #f7f9fc;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 60px;
}
.section-heading {
    text-align: center;
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 50px;
}
.video-carousel-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}
.video-carousel-track {
    flex: 1;
    overflow: hidden;
}
.video-cards-wrapper {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}
.video-card {
    flex: 0 0 calc(25% - 18px); /* 4 cards visible */
    min-width: 250px;
}
.video-thumbnail {
    background-color: #e2e8f0;
    aspect-ratio: 16/9;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    overflow: hidden;
}
.thumb-text {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}
.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #cca450;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background-color 0.2s;
}
.video-thumbnail:hover .play-btn-circle {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #d1b168;
}
.video-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}
.video-nav-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    color: #4b5563;
    flex-shrink: 0;
    transition: transform 0.2s;
    z-index: 10;
}
.video-nav-btn:hover {
    transform: scale(1.05);
}

/* Custom Scrollbar under carousel */
.video-scrollbar-container {
    max-width: 1200px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.video-scrollbar-track {
    flex: 1;
    height: 12px;
    background-color: #fff;
    border-radius: 6px;
    position: relative;
}
.video-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background-color: #9ca3af;
    border-radius: 6px;
    cursor: grab;
    transition: background-color 0.2s;
}
.video-scrollbar-thumb:active {
    cursor: grabbing;
    background-color: #6b7280;
}
.scroll-arrow {
    color: #9ca3af;
}

@media (max-width: 1024px) {
    .video-card { flex: 0 0 calc(33.333% - 16px); }
}
@media (max-width: 768px) {
    .video-card { flex: 0 0 calc(50% - 12px); }
    .video-nav-btn { display: none; }
}
@media (max-width: 480px) {
    .video-card { flex: 0 0 100%; }
}
.centered-overview p {
    margin-bottom: 24px;
}

/* ===== SCAM SECTIONS (CASE #2+) ===== */
.scam-section {
    padding: 90px 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
.scam-section.bg-light {
    background-color: #f8fafc;
}
.scam-section.bg-white {
    background-color: #ffffff;
}
.scam-container {
    max-width: 1200px;
    margin: 0 auto;
}
.scam-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}
.scam-number {
    width: 40px;
    height: 40px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(239, 68, 68, 0.2);
}
.scam-title {
    font-size: clamp(26px, 4vw, 32px);
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.scam-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}
.scam-image-side {
    width: 100%;
}
.scam-image-placeholder {
    width: 408px;
    height: 500px;
    max-width: 100%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px dashed #cbd5e1;
}
.scam-image-placeholder span {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}
.scam-main-image {
    width: 408px;
    height: 500px;
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s;
}
.scam-main-image:hover {
    transform: scale(1.02);
}
.scam-content-side {
    color: #4b5563;
}
.scam-overview {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #64748b;
}
.facts-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}
.key-facts-icon {
    color: #ef4444;
}
.facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.facts-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}
.facts-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background-color: #ef4444;
    border-radius: 1px;
}

/* Optional extras below grid */
/* ===== GLOBAL TESTIMONIALS SECTION ===== */
.global-testimonials {
    background-color: #f8fafc; /* light gray background */
    padding: 80px 20px;
    text-align: center;
}
.testimonials-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: #0f172a; /* dark blue/black */
    margin-bottom: 50px;
}
.testimonial-carousel-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-slider-viewport {
    overflow: hidden;
    width: 100%;
}
.testimonial-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}
.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.quote-icon {
    color: #ef4444; /* red quote icon */
    margin-bottom: 25px;
}
.testimonial-slide p {
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    color: #4b5563; /* slightly faded text */
    margin-bottom: 30px;
    max-width: 700px;
}
.testimonial-slide span {
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
}
.testimonial-slide small {
    display: block;
    color: #94a3b8;
    font-size: 14px;
    margin-top: 5px;
}
.testi-nav-btn {
    background-color: white;
    border: 1px solid #e2e8f0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    color: #1e293b;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 0.2s;
}
.testi-nav-btn:hover {
    background-color: #f8fafc;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.testi-nav-btn.prev {
    left: -20px;
}
.testi-nav-btn.next {
    right: -20px;
}
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: background-color 0.2s;
}
.testi-dot.active {
    background-color: #ef4444;
}
.scam-pdf {
    margin-top: 40px;
    display: flex;
}
.download-btn-small {
    background-color: #ef4444;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}
.download-btn-small:hover {
    background-color: #dc2626;
}

@media (max-width: 900px) {
    .scam-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== NEW FOOTER DESIGN ===== */
.main-footer {
    background-color: #0f172a; /* dark blue */
    color: white;
    padding: 60px 20px 30px;
    font-family: inherit;
}
.footer-top-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}
.footer-brand {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
}
.text-red {
    color: #ef4444;
}
.footer-socials {
    display: flex;
    gap: 15px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    transition: all 0.2s ease;
    text-decoration: none;
}
.social-icon:hover {
    background-color: rgba(255,255,255,0.1);
    color: #ef4444;
}
.footer-divider {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background-color: rgba(255,255,255,0.1);
}
.footer-bottom-container {
    max-width: 1200px;
    margin: 30px auto 0;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-top-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* ===== NUMBERS LIST SECTION ===== */
.numbers-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.category-column {
    display: flex;
}

.category-card {
    background: #ffffff;
    border-left: 5px solid var(--primary);
    border-radius: 12px;
    padding: 24px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.category-header {
    color: var(--primary);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-hover);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.numbers-list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.number-item {
    display: flex;
    flex-direction: column;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all 0.2s ease;
}

.number-item:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.phone-num {
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
    font-family: monospace;
}

.number-note {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    margin-top: 5px;
}

.no-numbers {
    color: var(--text-muted);
    font-size: 14px;
    font-style: italic;
    padding: 20px;
    text-align: center;
}

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

@media (max-width: 640px) {
    .numbers-category-grid {
        grid-template-columns: 1fr;
    }
    .category-card {
        padding: 20px;
    }
}

