/* Modern Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #1e293b;
    /* Deep Navy */
    --accent: #2c5282;
    /* Lighter Navy */
    --highlight: #f59e0b;
    /* Gold/Orange */
    --light-bg: #f8fafc;
    /* Off-white */
    --white: #ffffff;
    --text-main: #334155;
    --text-muted: #64748b;
    --sage: #e2e8f0;
    --success: #15803d;
    --danger: #b91c1c;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
.eyebrow {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

.highlight {
    color: var(--highlight);
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.announcement-bar span {
    color: var(--highlight);
    font-weight: 800;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    padding: 1.5rem 0 2rem;
    min-height: calc(100vh - 40px); /* Account for announcement bar */
    display: flex;
    align-items: center;
}

.hero-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.headline {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.author-name {
    font-size: 1.75rem;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: var(--highlight);
    margin-top: 0.25rem;
    margin-bottom: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
    padding-right: 2rem;
}

.subhead {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 0.5rem;
    font-style: normal;
    line-height: 1.4;
}

.hero-note {
    font-style: italic;
    font-size: 0.9rem;
    background: rgba(245, 158, 11, 0.1);
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    margin: 0 auto;
    color: #b45309;
    text-align: center;
}

.hero-image-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--highlight);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background-color: #d97706;
}

.cta-main {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.cta-guarantee {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

.large {
    font-size: 1.4rem;
    padding: 1.5rem 3rem;
}

.guarantee-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Problem Section */
.problem-section {
    background-color: white;
}

.pain-points-card {
    background-color: #fff1f2;
    border-left: 5px solid var(--danger);
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
}

.pain-points-card h3 {
    color: var(--danger);
}

.pain-points-card ul {
    list-style: none;
    padding-left: 0;
}

.pain-points-card li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.pain-points-card li::before {
    content: "•";
    color: var(--danger);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Cards Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid var(--sage);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Pivot Section */
.pivot-section {
    background-color: var(--primary);
    color: white;
}

.pivot-section h2,
.pivot-section h3,
.pivot-section h4 {
    color: white;
}

.shocking-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.fact {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.pivot-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.feature-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin: 1rem 0 2rem;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.benefits-list ul {
    list-style: none;
    background: white;
    color: var(--text-main);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.benefits-list li {
    margin-bottom: 0.8rem;
    font-weight: 500;
}

/* Features/Boundaries */
.features-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--sage);
    position: relative;
    overflow: hidden;
}

.feature-card .number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 4rem;
    font-weight: 800;
    color: #f1f5f9;
    z-index: 0;
}

.feature-card h3,
.feature-card p {
    position: relative;
    z-index: 1;
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.col {
    padding: 2rem;
    border-radius: 12px;
}

.col.before {
    background-color: #fff1f2;
}

.col.after {
    background-color: #f0fdf4;
}

.col ul {
    list-style: none;
}

.col li {
    margin-bottom: 0.8rem;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(to bottom, var(--light-bg), #e2e8f0);
}

.offer-box {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--highlight);
    text-align: center;
}

.price-display {
    font-size: 2rem;
    margin: 1.5rem 0;
}

.price-display .price-label {
    font-size: 1.2rem;
    color: #dc2626;
    /* Bright Red */
    font-weight: 700;
    margin-right: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-display .regular {
    text-decoration: line-through;
    color: #dc2626;
    /* Bright Red */
    font-size: 1.8rem;
    font-weight: 700;
    margin-right: 1rem;
}

.price-display .current {
    color: var(--highlight);
    font-weight: 800;
    font-size: 3rem;
}

.included-items {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.main-item {
    border-bottom: 1px solid var(--sage);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.bonuses ul {
    list-style: none;
    margin-top: 1rem;
}

.bonuses li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23f59e0b"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/></svg>') no-repeat left center;
    background-size: 1.2rem;
}

.cta-area {
    margin-top: 3rem;
}

.guarantee-small {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 3rem 0;
    font-size: 0.8rem;
    text-align: center;
}

.disclaimer {
    margin-top: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.7;
}

/* Responsive */
@media (min-width: 768px) {
    .hero {
        padding: 2rem 0 2.5rem;
    }

    .hero-top {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem;
        align-items: start;
        margin-bottom: 1.75rem;
    }

    .hero-content {
        text-align: left;
        padding-right: 1rem;
    }

    .hero-bottom {
        text-align: center;
        align-items: center;
    }

    .headline {
        font-size: clamp(2rem, 3.5vw, 2.75rem);
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        line-height: 1.15;
        margin-bottom: 0.5rem;
    }

    .eyebrow {
        margin-left: 0;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .subhead {
        margin-left: 0;
        margin-right: 0;
        max-width: 850px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .author-name {
        text-align: right;
        margin-left: 0;
        margin-right: 0;
        padding-right: 0.5rem;
        font-size: 1.6rem;
        margin-bottom: 0;
    }

    .hero-note {
        margin: 0 auto;
        font-size: 0.85rem;
        padding: 0.35rem 0.85rem;
        display: inline-block;
        text-align: center;
    }

    .hero-image {
        max-width: 420px;
    }

    h1 {
        font-size: 3.5rem;
    }

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