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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 19px;
    line-height: 1.6;
    color: #222;
    background-color: #FFFFFF;
    padding-top: 50px;
    /* Space for fixed banner */
}

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

a {
    color: #1a4a7a;
    text-decoration: underline;
}

a:hover {
    color: #cc0000;
}

.bold-red {
    color: #cc0000;
    font-weight: bold;
}

/* ===== STICKY TAKEDOWN TIMER ===== */
.takedown-timer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #cc0000;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.timer-count {
    background: #000;
    padding: 2px 6px;
    border-radius: 4px;
    color: #ff0;
    font-family: 'Courier New', monospace;
    font-size: 16px;
}

/* ===== HEADER ===== */
.site-header {
    background: #FFFFFF;
    border-bottom: 3px solid #cc0000;
    padding: 15px 20px;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #000044;
    /* Dark Navy for authority */
    letter-spacing: -0.5px;
    text-decoration: none;
}

.dateline {
    font-size: 14px;
    color: #cc0000;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

/* ===== TICKER ===== */
.ticker-wrap {
    background: #000;
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid #333;
}

.ticker {
    display: inline-block;
    animation: ticker 25s linear infinite;
    font-size: 14px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticker span {
    color: #ff0000;
    font-weight: bold;
}

@keyframes ticker {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ===== MAIN LAYOUT ===== */
.main-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    gap: 50px;
}

.content-area {
    flex: 1;
    max-width: 700px;
}

.sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* ===== HEADLINE SECTION ===== */
.eyebrow {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: black;
    color: #cc0000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    border-bottom: 2px solid #cc0000;
    display: inline-block;
}

h1 {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 40px;
    line-height: 1.1;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.subheadline {
    font-size: 22px;
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.4;
}

.byline {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

/* ===== URGENCY BOX ===== */
.urgency-box {
    background: #ffffd0;
    border: 2px solid #eebb00;
    padding: 15px 20px;
    margin-bottom: 30px;
    font-size: 16px;
    position: relative;
}

.urgency-box::before {
    content: 'EDITOR\'S NOTE:';
    background: #eebb00;
    color: #000;
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 12px;
    padding: 2px 8px;
    position: absolute;
    top: -12px;
    left: 15px;
}

/* ===== HERO IMAGE ===== */
.hero-image-container {
    margin: 0 0 30px 0;
    border: 1px solid #999;
}

.hero-image {
    width: 100%;
    height: 350px;
    background: #e0e0e0;
    display: flex;
    position: relative;
    overflow: hidden;
}

.image-caption {
    background: #333;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* ===== BODY CONTENT ===== */
.content-area p {
    margin-bottom: 20px;
}

.content-area h2 {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 26px;
    color: #000;
    margin-top: 40px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    border-bottom: 3px solid #cc0000;
    display: inline-block;
    padding-bottom: 5px;
}

.lead-paragraph {
    font-weight: bold;
    font-size: 21px;
    color: #000;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    background: #f0f0f0;
    padding: 25px;
    border-left: 5px solid #cc0000;
    margin: 30px 0;
}

.comparison-title {
    font-family: 'Arial Black', sans-serif;
    font-size: 22px;
    color: #cc0000;
    margin-bottom: 15px;
}

/* ===== OFFER SECTION ===== */
.offer-section {
    background: linear-gradient(to bottom, #fff, #ffecec);
    border: 3px dashed #cc0000;
    padding: 30px;
    margin: 50px 0;
    text-align: center;
    position: relative;
}

.flash-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #cc0000;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    transform: rotate(5deg);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    z-index: 100;
}

.price-grid {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.old-price {
    font-size: 24px;
    text-decoration: line-through;
    color: #999;
}

.new-price-large {
    font-size: 60px;
    font-family: 'Arial Black', sans-serif;
    color: #cc0000;
    line-height: 1;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #555;
    text-transform: uppercase;
    font-weight: bold;
}

.cost-comparison {
    background: #fff;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid #ddd;
    font-family: Arial, sans-serif;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
}

.cost-row:last-child {
    border-bottom: none;
    font-weight: bold;
    color: #cc0000;
    font-size: 18px;
}

.cost-row .cost-note {
    font-size: 11px;
    color: #888;
    font-weight: normal;
}

.cost-row.identity-theft {
    background: #fff3f3;
    margin: 0 -15px;
    padding: 8px 15px;
    border-bottom: 1px solid #ffcccc;
}

/* ===== CTA COUNTDOWN TIMER ===== */
.cta-countdown {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}

.cta-countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6666;
    margin-bottom: 5px;
}

.cta-countdown-timer {
    font-family: 'Courier New', monospace;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 102, 102, 0.5);
}

.cta-countdown-timer span {
    background: #cc0000;
    padding: 5px 10px;
    border-radius: 4px;
    margin: 0 2px;
}

/* ===== STOCK COUNTER ===== */
.stock-counter {
    background: #fffbea;
    border: 1px solid #f0c040;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #8a6d0b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stock-counter .pulse-dot {
    width: 8px;
    height: 8px;
    background: #e6a700;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* ===== FRICTION REDUCTION ===== */
.friction-copy {
    margin-top: 12px;
    font-size: 13px;
    color: #555;
    font-family: Arial, sans-serif;
}

.friction-copy .no-tech {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    opacity: 0.5;
}

.payment-icon {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: bold;
    color: #555;
    font-family: Arial, sans-serif;
}

/* ===== VERIFIED BADGES ===== */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.verified-badge svg {
    width: 12px;
    height: 12px;
}

.review-card.featured {
    background: linear-gradient(135deg, #fffef0, #fff9e6);
    border: 2px solid #f0c040;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.review-card.featured .insider-label {
    background: #cc0000;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 8px;
}

/* ===== PULSING BUTTON ===== */
.cta-button {
    display: inline-block;
    background: #cc0000;
    color: #fff;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 24px;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.4);
    border: 2px solid #ff0000;
    text-transform: uppercase;
    margin-top: 10px;
    animation: pulse-red 2s infinite ease-in-out;
    width: 100%;
    max-width: 500px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 5px rgba(204, 0, 0, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(204, 0, 0, 0);
    }
}

.cta-button:hover {
    color: #fff;
    background: #ff6600;
    border-color: #ff8800;
    animation-play-state: paused;
}

/* ===== REVIEWS ===== */
.reviews-section {
    margin-top: 30px;
    text-align: left;
}

.review-card {
    background: #fff;
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.stars {
    color: #ffaa00;
    margin-right: 10px;
}

/* ===== FAQ ===== */
.faq-section {
    margin-top: 60px;
    border-top: 1px solid #ccc;
    padding-top: 40px;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-q {
    font-weight: bold;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
}

.faq-a {
    color: #444;
}

/* ===== SIDEBAR ===== */
.sidebar-links a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #111;
    text-decoration: none;
    line-height: 1.3;
}

.sidebar-links a:hover {
    color: #cc0000;
    text-decoration: underline;
}

.sidebar-header {
    background: #000;
    color: #fff;
    padding: 10px;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* ===== TOAST NOTIFICATION ===== */
.sales-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid #22aa44;
    max-width: 300px;
}

.sales-toast.show {
    transform: translateY(0);
}

.toast-img {
    width: 40px;
    height: 40px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
    flex-shrink: 0;
}

.toast-text {
    font-size: 13px;
    line-height: 1.3;
    font-family: Arial, sans-serif;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 800px) {
    .main-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        order: 2;
    }

    .hero-image {
        height: 250px;
    }

    .logo {
        font-size: 16px;
    }

    .header-inner {
        padding: 5px 0;
    }

    h1 {
        font-size: 28px;
    }

    .takedown-timer {
        font-size: 12px;
    }

    .new-price-large {
        font-size: 50px;
    }

    .price-grid {
        flex-direction: column;
        gap: 10px;
    }
}