:root {
    --color-green: #009c3b;
    --color-yellow: #ffdf00;
    --color-blue: #002776;
    --color-white: #ffffff;
    --color-text: #202124;
    --color-text-light: #5f6368;
    --color-bg-light: #f8f9fa;
    --radius-lg: 24px;
    --radius-md: 12px;
    --shadow-soft: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-float: 0 12px 24px rgba(0, 39, 118, 0.15);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 100px;
    background: radial-gradient(circle at top right, rgba(0, 156, 59, 0.05) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(0, 39, 118, 0.05) 0%, transparent 40%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.tag-urgent {
    display: inline-block;
    background-color: #fee;
    color: #c00;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h1 {
    font-size: 4.5rem;
    color: var(--color-blue);
    margin-bottom: 24px;
}

.text-highlight {
    color: var(--color-green);
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--color-yellow);
    z-index: -1;
    opacity: 0.6;
    transform: rotate(-1deg);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-green);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 48px;
    border-radius: 99px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0, 156, 59, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 156, 59, 0.4);
    background-color: #008532;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 156, 59, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 156, 59, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 156, 59, 0);
    }
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.image-card {
    position: relative;
    z-index: 1;
}

.image-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: url('hero_background_patriot_1767738251152.png') no-repeat center center;
    /* Fallback or specific geometric shape */
    background-size: contain;
    opacity: 0.5;
    z-index: -1;
}

.book-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transform: rotate(5deg);
    transition: transform 0.5s ease;
}

.book-img:hover {
    transform: rotate(0deg) scale(1.02);
}


/* Pain Section */
.section-pain {
    padding: 100px 0;
    background-color: #fff;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.pain-text h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 24px;
}

.pain-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-item {
    background: var(--color-bg-light);
    padding: 32px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s;
}

.card-item:hover {
    background: #fff;
    box-shadow: var(--shadow-float);
    transform: translateX(10px);
}

.icon-bad {
    color: #c00;
    font-size: 40px;
}


/* Benefits Section */
.section-benefits {
    padding: 100px 0;
    background-color: var(--color-bg-light);
    text-align: center;
}

.section-title {
    font-size: 3rem;
    color: var(--color-blue);
    margin-bottom: 64px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-float);
}

.benefit-card span {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.green-card span {
    color: var(--color-green);
}

.yellow-card span {
    color: #e6c200;
}

.blue-card span {
    color: var(--color-blue);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-text);
}


/* Curriculum */
.section-curriculum {
    padding: 100px 0;
}

.curriculum-wrapper {
    background: var(--color-blue);
    border-radius: 32px;
    padding: 64px;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.curriculum-header h2 {
    color: var(--color-yellow);
    font-size: 3rem;
    margin-bottom: 16px;
}

.curriculum-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.curriculum-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.curriculum-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 24px;
    align-items: center;
}

.day-badge {
    background: var(--color-green);
    color: white;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.day-content strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
}


/* Proof */
.section-proof {
    padding: 100px 0;
    text-align: center;
}

.section-proof h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 64px;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.testimonial {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: left;
    border: 1px solid #eee;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 24px;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    background: var(--color-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}


/* Offer */
.section-offer {
    padding: 100px 0 140px;
    position: relative;
    overflow: hidden;
}

.offer-container {
    display: flex;
    justify-content: center;
}

.offer-card {
    background: white;
    border: 4px solid var(--color-yellow);
    border-radius: 40px;
    padding: 80px 64px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.offer-tag {
    background: var(--color-yellow);
    color: var(--color-blue);
    font-weight: 900;
    padding: 8px 24px;
    border-radius: 99px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.price {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.old {
    text-decoration: line-through;
    color: #999;
    font-size: 1.5rem;
}

.new {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-green);
    line-height: 1;
}

.offer-features {
    list-style: none;
    text-align: left;
    margin: 0 auto 40px;
    display: inline-block;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.offer-features .material-symbols-outlined {
    color: var(--color-green);
    font-weight: 700;
}

.big-cta {
    width: 100%;
    font-size: 1.5rem;
    padding: 24px;
}

.secure-text {
    margin-top: 24px;
    font-size: 0.9rem;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


/* Footer */
footer {
    background: var(--color-blue);
    color: white;
    padding: 64px 0;
    text-align: center;
    opacity: 0.95;
}

.disclaimer {
    margin-top: 16px;
    font-size: 0.8rem;
    opacity: 0.6;
}


/* Responsive */
@media (max-width: 968px) {
    h1 {
        font-size: 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 64px;
    }

    .hero-text {
        margin: 0 auto;
    }

    .subtitle {
        margin: 0 auto 40px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .curriculum-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .offer-card {
        padding: 48px 24px;
    }

    .new {
        font-size: 3rem;
    }
}

/* Battle Section (Interactive) */
.section-battle {
    padding: 100px 0;
    text-align: center;
    background-color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 64px;
}

.battle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    /* Remove if you don't want 3D effect */
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.flip-card-front {
    background-color: #f8f9fa;
    color: black;
    border: 2px solid #eee;
}

.flip-card-back {
    background-color: var(--color-blue);
    color: white;
    transform: rotateY(180deg);
}

.green-gradient {
    background: linear-gradient(135deg, var(--color-green), #00702a);
}

.blue-gradient {
    background: linear-gradient(135deg, var(--color-blue), #001b52);
}

.yellow-gradient {
    background: linear-gradient(135deg, #e6c200, #ffdf00);
    color: var(--color-text) !important;
}

.yellow-gradient p,
.yellow-gradient h3,
.yellow-gradient span {
    color: var(--color-text);
}

.icon-enemy {
    font-size: 64px;
    color: #cc0000;
    opacity: 0.8;
}

.icon-hero {
    font-size: 64px;
    color: white;
    margin-bottom: 8px;
}

.yellow-gradient .icon-hero {
    color: var(--color-text);
}

.narrative-tag {
    background: #ffebee;
    color: #c62828;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 99px;
    text-transform: uppercase;
}

.flip-card-back h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.flip-card-back p {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Patriotic Button Hover */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.cta-button:hover::after {
    left: 100%;
}

/* Background Particles (Patriotic Confetti) */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    bottom: -20px;
    width: 20px;
    height: 20px;
    background: rgba(255, 223, 0, 0.4);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: floatUp 15s linear infinite;
    border-radius: 50%;
    /* Default circle */
}

.particle:nth-child(even) {
    background: rgba(0, 156, 59, 0.3);
    border-radius: 2px;
    /* Square/Diamond */
    transform: rotate(45deg);
}

.particle:nth-child(3n) {
    background: rgba(0, 39, 118, 0.3);
    width: 30px;
    height: 30px;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

@media (max-width: 968px) {
    .battle-grid {
        grid-template-columns: 1fr;
    }
}

/* Social Proof Enhancements */
.proof-grid {
    grid-template-columns: repeat(3, 1fr);
    /* Now 3 columns */
}

.testimonial {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.star-rating {
    color: #ffc107;
    /* Gold */
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.star-rating .material-symbols-outlined {
    font-variation-settings: 'FILL' 1;
    font-size: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 700;
    color: var(--color-text);
}

.author-loc {
    color: var(--color-text-light);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.verified-badge {
    color: var(--color-green);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
}

.verified-badge .material-symbols-outlined {
    font-size: 14px;
    font-variation-settings: 'FILL' 1;
}

@media (max-width: 968px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }
}