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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* URGENCY BAR */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #ff0000, #ff4444, #ff0000);
    background-size: 200% 100%;
    animation: urgencyPulse 2s ease-in-out infinite;
    padding: 8px 0;
    z-index: 1000;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

.urgency-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@keyframes urgencyPulse {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* PROGRESS BAR */
.progress-bar {
    position: fixed;
    top: 40px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ff6666);
    z-index: 999;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 20px;
    position: relative;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 40px 20px 60px;
    position: relative;
}

.warning-badge {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 40px;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
    animation: warningGlow 2s ease-in-out infinite;
    transform: perspective(1000px) rotateX(5deg);
}

@keyframes warningGlow {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3); }
    50% { box-shadow: 0 10px 30px rgba(255, 0, 0, 0.6); }
}

/* BOOK COVERS */
.book-covers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.book-cover {
    position: relative;
    transition: all 0.3s ease;
}

.book-cover img {
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.book-cover:hover {
    transform: scale(1.05) rotateY(5deg);
}

.book-cover:hover img {
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3);
}

.book-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.2), transparent);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.book-cover:hover .book-glow {
    opacity: 1;
}

.plus-symbol {
    font-size: 48px;
    font-weight: 900;
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    animation: plusPulse 2s ease-in-out infinite;
}

@keyframes plusPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.bonus-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(45deg, #ff0000, #ff6666);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    animation: bonusBounce 2s ease-in-out infinite;
}

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

.bonus-value {
    display: block;
    font-size: 11px;
}

.bonus-free {
    display: block;
    font-size: 13px;
}

/* HEADLINES */
.main-headline {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 40px 0 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.headline-top {
    display: block;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.headline-middle {
    display: block;
    background: linear-gradient(45deg, #ff0000, #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.8)); }
}

.headline-bottom {
    display: block;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.subheadline {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* PRICE SECTION */
.price-section {
    margin: 40px 0;
}

.price-strike {
    position: relative;
    margin-bottom: 10px;
}

.old-price {
    font-size: 24px;
    color: #666666;
    text-decoration: line-through;
    text-decoration-color: #ff0000;
    text-decoration-thickness: 3px;
}

.current-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price-label {
    font-size: 18px;
    color: #ff0000;
    font-weight: 700;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.save-badge {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    animation: saveBadgePulse 1.5s ease-in-out infinite;
}

@keyframes saveBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* COUNTDOWN TIMER */
.countdown-container {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.countdown-title {
    font-size: 20px;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-unit {
    text-align: center;
    background: linear-gradient(145deg, #1a1a1a, #333333);
    padding: 20px;
    border-radius: 15px;
    min-width: 80px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.time-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #ff0000;
    line-height: 1;
}

.time-label {
    display: block;
    font-size: 12px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.separator {
    font-size: 36px;
    font-weight: 900;
    color: #ff0000;
    animation: separatorBlink 1s ease-in-out infinite;
}

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

/* CTA BUTTONS */
.cta-container {
    margin: 50px 0;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: linear-gradient(145deg, #ff0000, #cc0000);
    color: white;
    padding: 25px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(-5deg);
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover:before {
    left: 100%;
}

.cta-button:hover {
    transform: perspective(1000px) rotateX(-5deg) translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.6);
}

.cta-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.cta-text {
    font-size: 22px;
    line-height: 1.2;
}

.cta-price {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 5px;
    font-weight: 600;
}

.payment-info {
    margin-top: 20px;
    font-size: 14px;
    color: #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* TRUST SIGNALS */
.trust-signals {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #cccccc;
}

.trust-item i {
    color: #ff0000;
    font-size: 16px;
}

/* SOCIAL PROOF SECTION */
.social-proof {
    padding: 60px 20px;
    text-align: center;
}

.social-proof h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: linear-gradient(145deg, #1a1a1a, #333333);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.2);
}

.stars {
    font-size: 20px;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.author {
    font-weight: 600;
    color: #ff0000;
    font-size: 14px;
}

/* PROBLEM SECTION */
.problem-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 0, 0, 0.05), rgba(0, 0, 0, 0.3));
    border-radius: 30px;
    margin: 40px 0;
}

.problem-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff0000;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.problem-icon {
    font-size: 24px;
    min-width: 30px;
}

.problem-text {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.reality-check {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(145deg, #1a1a1a, #333333);
    border-radius: 20px;
    border: 2px solid #ff0000;
}

.reality-check h3 {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.reality-check p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.quote-highlight {
    font-size: 24px;
    font-style: italic;
    color: #ff0000;
    border-left: 4px solid #ff0000;
    padding-left: 20px;
    margin: 30px 0;
    background: rgba(255, 0, 0, 0.05);
    padding: 20px 20px 20px 40px;
    border-radius: 10px;
}

/* SOLUTION SECTION */
.solution-section {
    padding: 60px 20px;
    text-align: center;
}

.solution-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.content-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.content-column {
    background: linear-gradient(145deg, #1a1a1a, #333333);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.content-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.bonus-column {
    border: 2px solid #ff0000;
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, rgba(255, 0, 0, 0.05));
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.bonus-value-badge {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    padding: 10px 15px;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    min-width: 100px;
}

.value-amount {
    display: block;
    font-size: 14px;
}

.value-free {
    display: block;
    font-size: 16px;
}

.content-list {
    list-style: none;
    padding: 0;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.5;
}

.content-list i {
    color: #ff0000;
    font-size: 16px;
    margin-top: 2px;
    min-width: 16px;
}

.bonus-highlight {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    font-size: 14px;
    text-align: center;
}

/* SECOND CTA */
.second-cta-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
    border-radius: 30px;
    margin: 60px 0;
}

.scarcity-message {
    font-size: 20px;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 15px;
    border: 2px solid #ff0000;
    animation: scarcityPulse 2s ease-in-out infinite;
}

@keyframes scarcityPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* GUARANTEE SECTION */
.guarantee-section {
    padding: 60px 20px;
    text-align: center;
}

.guarantee-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(145deg, #1a1a1a, #333333);
    border-radius: 20px;
    border: 2px solid #ff0000;
    flex-wrap: wrap;
}

.guarantee-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border: 3px solid #ff0000;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff0000, #cc0000);
    color: white;
    text-align: center;
    font-weight: 700;
}

.guarantee-badge i {
    font-size: 24px;
    margin-bottom: 5px;
}

.guarantee-text {
    font-size: 14px;
    line-height: 1;
}

.guarantee-subtext {
    font-size: 12px;
    line-height: 1;
}

.guarantee-content {
    flex: 1;
    text-align: left;
    min-width: 300px;
}

.guarantee-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ff0000;
}

.guarantee-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* URGENCY SECTION */
.urgency-section {
    padding: 60px 20px;
    text-align: center;
}

.urgency-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ff0000;
}

.urgency-reasons {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.urgency-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(145deg, #1a1a1a, #333333);
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    text-align: left;
}

.urgency-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
}

.urgency-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ff0000;
}

.urgency-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* FINAL CTA SECTION */
.final-cta-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    border-radius: 30px;
    margin: 60px 0;
    border: 2px solid #ff0000;
}

.final-headline h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.final-headline p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    font-style: italic;
}

.final-offer {
    margin: 40px 0 50px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offer-summary {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

.offer-item:last-child {
    border-bottom: none;
}

.bonus-offer {
    color: #ff0000;
    font-weight: 600;
}

.offer-check {
    margin-right: 10px;
    font-size: 18px;
}

.offer-value {
    font-weight: 600;
    color: #cccccc;
}

.offer-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 0 0;
    font-size: 18px;
    font-weight: 700;
    border-top: 2px solid #ff0000;
}

.today-price {
    font-size: 28px;
    color: #ff0000;
}

.final-trust {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.footer p {
    color: #666666;
    font-size: 12px;
}

/* EXIT INTENT POPUP */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.exit-popup-content {
    background: linear-gradient(145deg, #1a1a1a, #333333);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #ff0000;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.exit-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.exit-close:hover {
    color: #ff0000;
}

.exit-popup h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff0000;
}

.exit-popup p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.exit-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.exit-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.exit-timer {
    font-size: 14px;
    color: #cccccc;
    margin-top: 15px;
}

/* SOCIAL PROOF NOTIFICATIONS */
#social-proof-notifications {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.notification {
    background: linear-gradient(145deg, #1a1a1a, #333333);
    border: 1px solid #ff0000;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.5s ease, fadeOut 0.5s ease 4.5s forwards;
    max-width: 300px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.notification-icon {
    color: #ff0000;
    font-size: 16px;
}

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .container {
        padding: 10px;
        margin-top: 45px;
    }
    
    .urgency-bar {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .urgency-content {
        flex-direction: column;
        gap: 5px;
    }
    
    .book-covers {
        flex-direction: column;
        gap: 20px;
    }
    
    .book-cover img {
        max-width: 200px;
    }
    
    .plus-symbol {
        font-size: 30px;
        transform: rotate(90deg);
    }
    
    .main-headline {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .subheadline {
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .time-unit {
        padding: 15px;
        min-width: 60px;
    }
    
    .time-number {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 20px 30px;
        font-size: 18px;
    }
    
    .content-preview {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-column {
        padding: 25px;
    }
    
    .bonus-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .guarantee-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .guarantee-content {
        text-align: center;
    }
    
    .urgency-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .urgency-content {
        text-align: center;
    }
    
    .final-headline h2 {
        font-size: 2rem;
    }
    
    .trust-signals {
        gap: 15px;
        justify-content: space-around;
    }
    
    .trust-item {
        font-size: 12px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .final-trust {
        gap: 15px;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .exit-popup-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .exit-popup h3 {
        font-size: 1.5rem;
    }
    
    #social-proof-notifications {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .notification {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .warning-badge {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .book-cover img {
        max-width: 180px;
    }
    
    .main-headline {
        font-size: 1.8rem;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .countdown-title {
        font-size: 16px;
    }
    
    .time-number {
        font-size: 20px;
    }
    
    .time-label {
        font-size: 10px;
    }
    
    .cta-button {
        padding: 18px 25px;
        font-size: 16px;
    }
    
    .cta-text {
        font-size: 18px;
    }
    
    .cta-price {
        font-size: 14px;
    }
    
    .social-proof h2,
    .solution-section h2,
    .urgency-section h2 {
        font-size: 1.8rem;
    }
    
    .problem-section h2 {
        font-size: 1.8rem;
    }
    
    .final-headline h2 {
        font-size: 1.6rem;
    }
    
    .content-column {
        padding: 20px;
    }
    
    .testimonial {
        padding: 15px;
    }
    
    .urgency-item {
        padding: 20px;
    }
    
    .guarantee-container {
        padding: 25px;
    }
    
    .final-cta-section {
        padding: 40px 15px;
    }
}