:root {
    --primary: #1e3a8a;
    /* Navy Blue */
    --primary-light: #eff6ff;
    --secondary: #ea580c;
    /* Deep Orange */
    --accent: #10b981;
    /* Emerald */
    --accent-light: #ecfdf5;
    --danger: #ef4444;
    /* Rose */
    --danger-light: #fff1f2;
    --text-dark: #111827;
    --text-muted: #4b5563;
    --bg-light: #f9fafb;
    --white: #ffffff;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);

    /* New Variables for hardcoded colors */
    --orange-primary: #ea580c;
    --orange-hover: #D35400;
    --green-success: #27AE60;
    --green-light: #E8F8F5;
    --blue-dark: #2C3E50;
    --gray-light: #ecf0f1;
    --gray-muted: #95a5a6;
    --purple-deep: #764ba2;
    --purple-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --orange-gradient: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
}

/* Google Fonts display swap is handled in the HTML link */

/* Reusable Components */
.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Derived components */
.problem-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--danger);
}

.package-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.transition-hook-box {
    margin-top: 80px;
    max-width: 850px;
}

.transition-hook-highlight {
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 30px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.bg-soft-blue {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 24px;
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.insight-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.insight-list li i {
    color: var(--accent);
    font-size: 1.2rem;
}

.list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Utility Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-full {
    width: 100%;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-600 {
    max-width: 600px;
}

.mt-1rem {
    margin-top: 1rem;
}

.mt-2rem {
    margin-top: 2rem;
}

.mb-1rem {
    margin-bottom: 1rem;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.gap-1rem {
    gap: 1rem;
}

.gap-2rem {
    gap: 2rem;
}

.gap-3rem {
    gap: 3rem;
}

.mt-80 {
    margin-top: 80px;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fs-sm {
    font-size: 0.9rem;
}

.fs-md {
    font-size: 1.1rem;
}

.fs-lg {
    font-size: 1.3rem;
}

.fs-1-2rem {
    font-size: 1.2rem;
}

.fs-3rem {
    font-size: 3rem;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.align-items-flex-start {
    align-items: flex-start;
}

.justify-content-start {
    justify-content: flex-start;
}

.flex-column {
    flex-direction: column;
}

/* Themed Classes */
.bg-primary {
    background-color: var(--primary);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-white {
    background-color: var(--white);
}

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

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

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

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

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

.border-none {
    border: none;
}

.border-light {
    border: 1px solid #eee;
}

.card-success {
    border-color: var(--accent);
    background-color: var(--accent-light);
}

.card-danger {
    border-color: var(--danger);
    background-color: var(--danger-light);
}

.list-check li i {
    color: var(--accent);
    margin-right: 10px;
}

.list-x li i {
    color: var(--danger);
    margin-right: 10px;
}

/* Additional Utilities */
.section-padding-lg {
    padding: 100px 0;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mr-10 {
    margin-right: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.color-text-muted {
    color: var(--text-muted);
}

.color-purple {
    color: var(--purple-deep);
}

.border-purple {
    border-left: 2px solid var(--purple-deep);
    padding-left: 10px;
    margin-top: 10px;
}

.bg-white-transparent {
    background: rgba(255, 255, 255, 0.1);
}

.border-top-transparent {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.d-flex {
    display: flex;
}

/* Grid Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Refined Hero Components */
.mockup-box {
    background: #e5e7eb;
    width: 340px;
    height: 480px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #9ca3af;
    color: #6b7280;
    font-weight: 600;
    transform: rotate(2deg);
    position: relative;
    overflow: hidden;
}

.mockup-box img {
    max-width: 100%;
}

.mockup-box .mockup-content {
    text-align: center;
    padding: 20px;
}

.mockup-box .mockup-content span:first-child {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-display {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    max-width: 600px;
    margin: 20px auto 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

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

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.125rem;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent);
}

.text-secondary {
    color: var(--secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    color: var(--white);
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3);
    width: 100%;
    max-width: 520px;
    text-align: center;
    line-height: 1.1;
}

.btn:hover {
    background-color: #c2410c;
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(234, 88, 12, 0.4);
}

.btn i {
    margin-right: 1.25rem;
    font-size: 2.25rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-price {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 5px;
    font-weight: 600;
}

.btn-subtext {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Icons Refinement */
.icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* 1. HERO SECTION */
.hero {
    padding: 100px 0 60px;
    background: radial-gradient(circle at top right, #f0f9ff, transparent),
        radial-gradient(circle at bottom left, #fff7ed, transparent);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual .ebook-mockup {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25),
        0 18px 36px -18px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-visual:hover .ebook-mockup {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.hero h1,
.hero h2 {
    text-align: left;
}

.package-card .product-preview {
    margin: 25px auto 35px;
    perspective: 1000px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ebook Mockup Style */
.package-card .ebook-preview {
    width: 130px;
    height: 180px;
    position: relative;
    transform: rotateY(-20deg) rotateX(10deg);
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.2);
}

.package-card .ebook-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px 5px 5px 2px;
    display: block;
}

/* Ebook Spine effect */
.package-card .ebook-preview::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1%;
    width: 5px;
    height: 98%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}

.package-card:hover .ebook-preview {
    transform: rotateY(-10deg) rotateX(5deg) translateY(-5px);
}

/* Software/Browser Mockup Style */
.package-card .software-preview {
    width: 220px;
    height: 140px;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    transition: transform 0.4s ease;
}

/* Browser Header */
.package-card .software-preview::before {
    content: '•••';
    display: block;
    height: 20px;
    background: #2b2b2b;
    color: #444;
    font-size: 14px;
    padding-left: 10px;
    line-height: 20px;
    letter-spacing: 2px;
}

.package-card .software-preview img {
    width: 100%;
    height: calc(100% - 20px);
    object-fit: cover;
    display: block;
}

.package-card:hover .software-preview {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content,
    .hero h1,
    .hero h2 {
        text-align: center;
    }

    .hero-visual {
        margin-top: 40px;
        order: -1;
        /* Image first on mobile? Or last? Usually text first. Let's keep it last or ordered naturally. */
    }

    .hero-visual .ebook-mockup {
        max-width: 300px;
        transform: none;
    }
}

.hero h1,
.hero h2 {
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--secondary);
}

.hero h2 {
    text-align: left;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.4;
}

.hero-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-img {
    max-width: 100%;
    filter: drop-shadow(0 25px 50px -12px rgba(0, 0, 0, 0.25));
}

.mockup-box {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.mockup-box img {
    width: 100%;
    height: auto;
}

/* 2. PROBLEM AMPLIFICATION */
.problem-section {
    background-color: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--danger);
}

.problem-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--danger-light);
    color: var(--danger);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

/* 3. BEFORE vs AFTER VISUAL */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-box {
    border-radius: 24px;
    padding: 3rem;
}

.box-before {
    background-color: var(--danger-light);
    border: 2px solid #fecaca;
}

.box-after {
    background-color: var(--accent-light);
    border: 2px solid #a7f3d0;
}

.comparison-label {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: block;
}

.box-before .comparison-label {
    color: var(--danger);
}

.box-after .comparison-label {
    color: var(--accent);
}

.comp-list {
    list-style: none;
}

.comp-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.comp-list i {
    font-size: 1.25rem;
    margin-top: 0.2rem;
}

.box-before i {
    color: var(--danger);
}

.box-after i {
    color: var(--accent);
}

/* 4. BENEFITS / TRANSFORMED FEATURES */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}

.benefit-card h3 {
    font-size: 1.25rem;
    line-height: 1.3;
}

/* 5. AUDIENCE QUALIFICATION */
.audience-section {
    background-color: var(--primary);
    color: var(--white);
}

.audience-section h2 {
    color: var(--white);
}

.qual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.qual-box h3 {
    color: var(--white);
    margin-bottom: 2rem;
}

.qual-list {
    list-style: none;
}

.qual-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.qual-list i {
    font-size: 1.5rem;
}

.list-yes i {
    color: var(--accent);
}

.list-no i {
    color: var(--danger);
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary);
}

.faq-content {
    display: none;
    padding: 1rem 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.open .faq-content {
    display: block;
}

.faq-item.open .faq-trigger i {
    transform: rotate(180deg);
}

.faq-trigger i {
    transition: transform 0.3s ease;
}

/* 13. BINARY CHOICE SECTION */
.binary-choice-section {
    padding: 100px 0;
    background: white;
}

.binary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 50px;
}

.choice-card {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.choice-card.success {
    background: rgba(16, 185, 129, 0.03);
    border: 2px solid var(--accent);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.choice-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.choice-list {
    list-style: none;
    margin-bottom: 2rem;
}

.choice-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.choice-list i {
    font-size: 1.2rem;
}

.icon-red {
    color: var(--danger);
}

.icon-green {
    color: var(--accent);
}

.choice-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    font-weight: 600;
}

.choice-footer .highlight {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .binary-grid {
        grid-template-columns: 1fr;
    }

    .choice-card {
        padding: 2rem;
    }
}

/* Footer */
footer {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .sticky-cta-mobile.visible {
        display: block;
    }
}

@media (max-width: 992px) {
    .results-documented-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .results-documented-grid {
        grid-template-columns: 1fr;
    }

    .case-card-premium {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    position: relative;
}

.testimonial-card i.quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #f3f4f6;
}

.testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info strong {
    display: block;
    font-size: 1rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* 11. VALUE BREAKDOWN */
.value-breakdown {
    margin: 2rem auto;
    max-width: 500px;
    text-align: left;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
}

.value-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.value-total {
    border-top: 2px solid #cbd5e1;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
}

.scarcity-box {
    background-color: #fff7ed;
    border: 2px solid #fdba74;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.scarcity-title {
    color: #c2410c;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.progress-container {
    margin: 1.5rem 0;
    text-align: left;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.progress-bar-bg {
    background-color: #ffedd5;
    height: 12px;
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar-fill {
    background: linear-gradient(90deg, #ea580c, #f97316);
    height: 100%;
    width: 87%;
    border-radius: 99px;
}

.scarcity-info {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1rem;
}

.timer-box {
    margin-top: 1.5rem;
    font-family: monospace;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--danger);
    background: var(--danger-light);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.price-box {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    max-width: 600px;
    margin: 20px auto 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.price-anchor {
    text-decoration: line-through;
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.price-huge {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin: 0.5rem 0;
}

.price-sub {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}

.cta-footer {
    margin-top: 10px;
}

/* NEW PRICING STYLES */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto;
    }

    .package-card.featured {
        transform: scale(1);
        margin: 20px 0;
    }
}

.package-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 3px solid #E67E22;
    transform: scale(1.05);
    z-index: 10;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #E67E22;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.badge-premium {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.package-header h3 {
    font-size: 24px;
    color: #2C3E50;
    margin-bottom: 8px;
    text-align: center;
}

.package-subtitle {
    font-size: 15px;
    color: #7f8c8d;
    text-align: center;
}

.package-price {
    text-align: center;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 2px solid #ecf0f1;
    border-bottom: 2px solid #ecf0f1;
}

.old-price {
    display: block;
    font-size: 16px;
    color: #95a5a6;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.current-price {
    display: block;
    margin: 5px 0;
}

.current-price .amount {
    font-size: 48px;
    font-weight: 800;
    color: #27AE60;
}

.current-price .currency {
    font-size: 24px;
    vertical-align: super;
    font-weight: 700;
    color: #27AE60;
}

.payment-terms {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.savings-badge {
    display: inline-block;
    background: #27AE60;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
}

.package-features {
    flex-grow: 1;
}

.package-features h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.4;
}

.feature-item.main {
    font-weight: 600;
    color: #2C3E50;
}

.feature-item.highlight {
    color: #E67E22;
}

.feature-item.bonus {
    font-size: 13px;
    color: #555;
}

.feature-group {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ecf0f1;
}

.group-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.icon,
.icon-unlock,
.checkmark,
.star {
    font-size: 18px;
    margin-right: 10px;
    min-width: 24px;
    text-align: center;
}

.checkmark {
    color: #27AE60;
}

.star {
    color: #F1C40F;
}

.icon-unlock {
    color: #3498DB;
}

.badge {
    background: #27AE60;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    margin-left: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.results-box {
    background: #E8F8F5;
    border-left: 4px solid #27AE60;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
}

.results-box.premium {
    background: #FFF5EB;
    border-left: 4px solid #E67E22;
}

.results-box.premium-max {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-left: 4px solid #667eea;
}

.results-title {
    font-weight: 700;
    margin-bottom: 8px;
    color: #2C3E50;
    font-size: 0.9rem;
}

.result-item {
    margin: 5px 0;
    font-size: 13px;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: #E67E22;
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    margin: 20px 0 10px 0;
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #D35400;
    transform: translateY(-2px);
}

.cta-button.featured {
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    box-shadow: 0 6px 24px rgba(230, 126, 34, 0.4);
    padding: 18px;
}

.cta-button.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.4);
}

.best-for {
    text-align: center;
    font-size: 13px;
    color: #7f8c8d;
    font-style: italic;
}

/* COMPARISON TABLE STYLES */
.package-comparison {
    margin-top: 60px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th {
    background: #2C3E50;
    color: white;
    padding: 20px 15px;
    font-size: 14px;
    text-align: center;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #ecf0f1;
    text-align: center;
    font-size: 14px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.detailed-comparison {
    margin-top: 80px;
}

.full-comparison {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .detailed-comparison {
        overflow-x: auto;
    }

    .full-comparison {
        min-width: 600px;
    }
}

.full-comparison th {
    background: #2C3E50;
    color: white;
    padding: 20px 15px;
    font-size: 16px;
}

.full-comparison th.featured-col {
    background: #E67E22;
}

.full-comparison td {
    padding: 15px;
    border-bottom: 1px solid #ecf0f1;
}

.category-row td {
    background: #f8f9fa;
    font-weight: 700;
    color: #2C3E50;
    padding: 12px 15px;
    text-align: left !important;
}

.check {
    text-align: center;
    color: #27AE60;
    font-size: 20px;
    font-weight: 700;
}

.check.featured {
    background: #E8F8F5;
    font-size: 24px;
}

.no-check {
    text-align: center;
    color: #bdc3c7;
    font-size: 18px;
}

.price-small {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-top: 5px;
}

/* LEAD MAGNET FINAL */
.lead-magnet-final {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.magnet-box-diagnostic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    margin: 40px 0;
    text-align: left;
}

@media (max-width: 992px) {
    .magnet-box-diagnostic {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        text-align: center;
    }

    .magnet-visual {
        order: -1;
    }

    .features-free {
        text-align: left;
        display: inline-block;
    }
}

.magnet-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.features-free {
    list-style: none;
    margin: 20px 0;
}

.features-free li {
    margin-bottom: 10px;
    color: #27AE60;
    font-weight: 600;
}

.cta-free {
    display: inline-block;
    background: #27AE60;
    color: white;
    padding: 15px 30px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 700;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.cta-free:hover {
    background: #219150;
    transform: scale(1.05);
}

.upgrade-note {
    background: #EBF5FF;
    padding: 15px;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--primary);
}

/* 10. SOCIAL PROOF & RESULTS SECTION */
.results-section {
    padding: 100px 0;
}

.results-documented-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 80px;
}

.result-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-card .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.result-card .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cases-documented-container {
    max-width: 900px;
    margin: 0 auto;
}

.case-card-premium {
    background: #f8fafc;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    border-left: 6px solid var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: background 0.3s ease;
}

.case-card-premium:hover {
    background: #f1f5f9;
}

.case-card-premium .case-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.case-card-premium p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

/* Responsiveness Refinements */
@media (max-width: 992px) {
    .results-documented-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .results-documented-grid {
        grid-template-columns: 1fr;
    }

    .case-card-premium {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }
}

/* 15. OFFER TIMER */
.offer-timer {
    background: #fff3cd;
    color: #856404;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px auto;
    font-size: 18px;
    max-width: 100%;
}

.offer-timer.larger {
    font-size: 26px;
    border: 3px solid #f39c12;
    padding: 20px 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: #fff8e1;
    color: #b45309;
}

#countdown,
.countdown {
    color: #d9534f;
    font-weight: 900;
}