:root {
    --bg-light: #f5f7fb;
    --bg-white: #ffffff;
    --primary: #234b8a;
    --primary-soft: #eef3ff;
    --accent: #e6a15d;
    --text-main: #222222;
    --text-muted: #666666;
    --border-soft: #dde2ee;
    --danger: #c0392b;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    color: var(--text-main);
    background: var(--bg-light);
    line-height: 1.6;
}

/* URGENCY BANNER */
.urgency-banner {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #ffffff;
    text-align: center;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.urgency-icon {
    margin-right: 8px;
    font-size: 18px;
}

.urgency-highlight {
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 16px 60px;
}

@media (min-width: 992px) {
    .page-wrapper {
        padding: 40px 0 80px;
    }
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #ffffff, var(--primary-soft));
    border-radius: 18px;
    padding: 32px 22px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 800px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 24px 18px;
    }
}

.hero-kicker {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
}

.hero-title {
    font-family: "Krona One", sans-serif;
    font-size: 34px;
    line-height: 1.25;
    margin: 0 0 14px;
    color: var(--text-main);
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 40px;
    }
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.hero-list {
    margin: 0 0 22px;
    padding-left: 20px;
    font-size: 15px;
    color: var(--text-main);
}

.hero-list li {
    margin-bottom: 6px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: var(--primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 22px rgba(18, 51, 115, 0.35);
    transition: transform 0.08s ease-out, box-shadow 0.08s ease-out,
        background 0.1s ease-out;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(18, 51, 115, 0.4);
    background: #1c3b6a;
    text-decoration: none;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 12px rgba(18, 51, 115, 0.35);
}

/* Enhanced CTA Styles */
.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 10px 22px rgba(18, 51, 115, 0.35), 0 0 0 0 rgba(35, 75, 138, 0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 22px rgba(18, 51, 115, 0.35), 0 0 0 0 rgba(35, 75, 138, 0);
    }
    50% {
        box-shadow: 0 10px 22px rgba(18, 51, 115, 0.35), 0 0 0 10px rgba(35, 75, 138, 0);
    }
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.hero-microcopy {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-guarantee {
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.hero-right {
    position: relative;
    padding: 18px 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.hero-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: var(--accent);
    color: #ffffff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
}

.hero-book-title {
    font-family: "Krona One", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.hero-book-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    font-size: 14px;
}

.hero-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 4px;
}

.hero-check-icon {
    color: #2e8b57;
    font-size: 14px;
    margin-top: 2px;
}

.hero-price-line {
    margin: 8px 0;
    font-size: 14px;
}

.hero-price-line del {
    color: var(--text-muted);
    margin-right: 6px;
}

.hero-price-line strong {
    color: var(--danger);
    font-size: 18px;
}

.hero-note {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* SECTIONS */
section {
    margin-top: 40px;
}

.section-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 6px;
}

.section-title {
    font-family: "Krona One", sans-serif;
    font-size: 26px;
    margin: 0 0 14px;
    color: var(--text-main);
}

.section-text {
    font-size: 15px;
    color: var(--text-main);
    max-width: 780px;
}

/* COLUMNS */
.two-cols {
    display: grid;
    gap: 28px;
}

@media (min-width: 900px) {
    .two-cols {
        grid-template-columns: 1.1fr 1fr;
    }
}

.card {
    background: var(--bg-white);
    border-radius: 14px;
    border: 1px solid var(--border-soft);
    padding: 20px 18px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
}

.bullet-list {
    margin: 10px 0 0;
    padding-left: 20px;
    font-size: 15px;
}

.bullet-list li {
    margin-bottom: 8px;
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    gap: 18px;
}

@media (min-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.testimonial {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    padding: 16px 14px;
    font-size: 14px;
    color: var(--text-main);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: "“";
    position: absolute;
    top: -16px;
    left: 8px;
    font-size: 60px;
    color: var(--primary-soft);
    font-family: "Krona One", sans-serif;
    opacity: 0.7;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

.testimonial-name {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    border: 3px solid var(--primary-soft);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* WHAT YOU GET */
.benefits-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.benefit-box {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    padding: 16px 14px;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.benefit-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 16px;
}

/* FAQ */
.faq-list {
    margin-top: 18px;
    max-width: 820px;
}

.faq-item {
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: #ffffff;
    padding: 12px 14px;
    margin-bottom: 10px;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-q {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.faq-a {
    font-size: 14px;
    color: var(--text-main);
}

/* SOCIAL PROOF */
.social-proof-badge {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border: 1px solid #66bb6a;
    color: #2e7d32;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    display: inline-block;
}

.social-proof-number {
    font-weight: 700;
    font-size: 18px;
    color: #1b5e20;
}

/* FINAL CTA */
.final-cta {
    margin-top: 40px;
    text-align: center;
    padding: 32px 18px;
    border-radius: 16px;
    background: linear-gradient(120deg, var(--primary), #182b4f);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.urgency-text {
    background: rgba(255, 107, 107, 0.95);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
    z-index: 1;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.final-cta-title {
    font-family: "Krona One", sans-serif;
    font-size: 26px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.final-cta-text {
    font-size: 16px;
    max-width: 680px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.final-cta .btn-primary {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.final-cta .btn-primary:hover {
    background: #f0f0f0;
}

.final-cta-stats {
    font-size: 14px;
    margin-top: 14px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.final-cta-note {
    font-size: 12px;
    margin-top: 12px;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* POST-HERO IMAGES */
.post-hero-images {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

@media (min-width: 900px) {
    .post-hero-images {
        grid-template-columns: 1fr 1fr;
    }
}

.post-hero-item {
    background: var(--bg-white);
    border-radius: 14px;
    border: 1px solid var(--border-soft);
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
}

.post-hero-item img {
    width: 100%;
    height: auto;
    display: block;
}