html {
    zoom: 1.1;
}

:root {
    --bg-color: #050505;
    --card-bg: rgba(0, 10, 0, 0.4);
    /* More transparent for glass effect */
    --primary-text: #ffffff;
    --secondary-text: #f0f0f0;
    /* Even lighter for better contrast against busy background */
    --accent-color: #00E676;
    /* Neon Green for CTA */
    --highlight-color: #FFD700;
    /* Gold for text highlights */
    --danger-color: #FF4444;
    --border-color: rgba(0, 230, 118, 0.4);
    /* Stronger neon border */

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1100px;
    /* Increased for 110% zoom effect and less empty space */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--primary-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.25rem;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Subtle Money Background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.8)),
        url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    opacity: 0.3;
    /* Adjusted for "semi-transparent" look */
}

/* Floating Symbols Background */
.bg-symbols {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.symbol {
    position: absolute;
    color: var(--accent-color);
    font-size: 8rem;
    font-weight: bold;
    opacity: 0.03;
    user-select: none;
    animation: float 20s linear infinite;
    filter: blur(2px);
}

.symbol:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-duration: 25s;
    font-size: 10rem;
    opacity: 0.04;
    filter: blur(4px);
}

.symbol:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-duration: 30s;
    animation-delay: -5s;
    font-size: 6rem;
    filter: blur(1px);
}

.symbol:nth-child(3) {
    top: 70%;
    left: 20%;
    animation-duration: 35s;
    animation-delay: -10s;
    font-size: 12rem;
    opacity: 0.02;
    filter: blur(6px);
}

.symbol:nth-child(4) {
    top: 50%;
    left: 55%;
    animation-duration: 28s;
    animation-delay: -15s;
    font-size: 7rem;
    filter: blur(2px);
}

.symbol:nth-child(5) {
    top: 85%;
    left: 15%;
    animation-duration: 40s;
    animation-delay: -2s;
    font-size: 9rem;
    opacity: 0.03;
    filter: blur(3px);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(5deg);
    }

    66% {
        transform: translateY(10px) rotate(-5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    /* Extra bold */
    color: var(--primary-text);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

/* Utilities */
.text-center {
    text-align: center;
}

.highlight {
    color: var(--highlight-color);
}

.highlight-bg {
    background: var(--accent-color);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.green {
    color: var(--accent-color);
}

.hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.subheadline {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.bg-light {
    background-color: var(--card-bg);
}

/* Darker for "light" sections in this theme */
.bg-dark {
    background-color: #000;
}

.text-white {
    color: white;
}

/* Promo Top Bar */
.promo-top-bar {
    background: linear-gradient(90deg, #004d26 0%, #000 100%);
    border-bottom: 1px solid var(--accent-color);
    padding: 15px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.promo-text {
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-button {
    background: var(--accent-color);
    color: #000;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    background: transparent;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-main-grid {
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 1.5fr;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

/* Hero Benefits/Audience Area (Bottom Left Request) */
.hero-audience-box {
    background: var(--card-bg);
    /* Use the semi-transparent variable */
    /* border handled by global rule */
    padding: 25px;
    border-radius: 10px;
}

.hero-audience-box h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-audience-list {
    list-style: none;
}

.hero-audience-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hero-audience-list li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
}

/* Hero Image Area (Right) */
.hero-right-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.book-cover {
    max-width: 100%;
    max-height: 400px;
    filter: drop-shadow(0 0 30px rgba(0, 230, 118, 0.2));
    transform: rotateY(-10deg);
    transition: transform 0.3s;
}

.book-cover:hover {
    transform: rotateY(0deg) scale(1.02);
}

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    padding: 25px 45px;
    border-radius: 8px;
    font-size: 1.3rem;
    /* Increased size */
    text-decoration: none;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    text-align: center;
}

.cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.6);
}

.cta-button.small {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: auto;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    }

    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 15px rgba(0, 230, 118, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

/* Sections - Problem & Solution */
.problem h2,
.why-fail h2,
.section-header h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.problem-grid,
.faq-grid {
    display: grid;
    gap: 20px;
}

.problem-card,
.faq-item,
.comparison-box,
.module-row,
.testimonial-card,
.offer-box,
.hero-audience-box {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.05);
}

.problem-card h3,
.faq-item h4 {
    color: var(--highlight-color);
    /* Gold highlights */
    margin-bottom: 10px;
}

.check-list li,
.comparison-list li,
.modules-list-detailed p {
    color: #d4d4d4;
}

/* Transformation (Graph) */
.comparison-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.comparison-box {
    background: var(--card-bg);
    /* border handled by global rule */
    border-radius: 12px;
    padding: 20px;
    flex: 1;
    min-width: 300px;
}

.chart-visual {
    height: 120px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin: 20px 0;
    border-bottom: 1px solid #333;
}

.bar {
    width: 15px;
}

.chaos-chart .bar {
    background: var(--danger-color);
}

.order-chart .bar {
    background: var(--accent-color);
}

.arrow-separator {
    font-size: 2rem;
    color: #555;
    align-self: center;
}

/* Modules Detailed - Dark Cards */
.modules-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.module-row {
    background: var(--card-bg);
    /* border handled by global rule */
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.module-icon {
    font-size: 1.5rem;
    background: #222;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Testimonials V2 Style */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card-v2 {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.1);
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.3);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-text);
}

.testimonial-role {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-card-v2 .review-text {
    font-size: 1rem;
    color: #dfdfdf;
    font-style: normal;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.review-text {
    font-style: italic;
    color: #e5e5e5;
    margin-bottom: 15px;
}

.author-name {
    color: var(--secondary-text);
    font-size: 0.9rem;
    font-weight: 600;
}

.stars {
    color: var(--highlight-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Offer Box - The Stack */
.offer-box {
    background: rgba(0, 0, 0, 0.8);
    /* Slightly darker for readability */
    border: 2px dashed var(--accent-color);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.benefits-list {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin: 30px 0;
}

.benefits-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-area {
    margin-top: 30px;
}

.price-tag {
    color: var(--secondary-text);
}

.final-price {
    font-size: 5.5rem;
    /* Increased size */
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
    line-height: 1;
    margin-bottom: 20px;
}

/* Footer */
footer {
    border-top: 1px solid #222;
    padding: 40px 0;
    color: #666;
    text-align: center;
    font-size: 0.8rem;
    margin-top: 60px;
}

/* Mobile Adjustments */
/* Financial Proof Cards */
.hero-evidence-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-comparison-row {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.bank-statement-card {
    background: #ffffff;
    color: #1a1a1a;
    padding: 12px 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #6200ee;
    flex: 1;
    min-width: 0;
    /* Allow shrinking */
    position: relative;
    animation: fadeInRight 0.8s ease-out forwards;
}

.proof-label {
    position: absolute;
    top: -12px;
    left: 10px;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    z-index: 10;
}

.proof-label.before {
    background: #ff4444;
}

.proof-label.after {
    background: #00E676;
    color: #000;
}


.statement-header {
    margin-bottom: 15px;
}

.statement-header span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
}

.statement-header .balance {
    font-size: 1.8rem;
    font-weight: 900;
    color: #6200ee;
    margin-top: 5px;
    letter-spacing: -1px;
}

.statement-details {
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.detail-row.total {
    margin-top: 10px;
    padding-top: 5px;
    border-top: 2px solid #f0f0f0;
    font-weight: 800;
    color: #000;
    font-size: 0.8rem;
}

.detail-row .value.positive {
    color: #1a1a1a;
    font-weight: 600;
}

.detail-row .value.positive::before {
    content: "+";
}

.detail-row .value.negative {
    color: #666;
}

.detail-row .value.negative::before {
    content: "-";
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Update hero grid for the new content */
@media (min-width: 1024px) {
    .hero-main-grid {
        grid-template-columns: 1fr 1fr 1.2fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .bank-statement-card {
        margin: 0 auto;
    }
}