:root {
    --bg-color: #000000;
    --card-bg: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent-main: #39ff14;
    /* Neon Green */
    --font-main: 'Inter', sans-serif;
    --container-width: 1100px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography - Impactful & Clean */
h1,
h2,
h3 {
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
}

h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin: 1rem auto 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
    max-width: 800px;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    text-align: center;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--accent-main);
    background: none;
    -webkit-text-fill-color: initial;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Buttons - Minimalist & High Contrast */
.btn,
.btn-primary,
.btn-big,
.btn-green-pulse {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    /* Sharper corners for modern look */
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    background: var(--accent-main);
    color: #000;
    font-size: 1.1rem;
    box-shadow: 0 0 0 rgba(57, 255, 20, 0);
    /* Cleaner default */
}

.btn:hover,
.btn-primary:hover,
.btn-big:hover,
.btn-green-pulse:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
    background: #32e012;
}

.btn-big,
.btn-green-pulse {
    font-size: 1.4rem;
    width: 100%;
    max-width: 550px;
    padding: 1.5rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(57, 255, 20, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background: #000;
    /* Pure black */
    position: relative;
}

.hero::after {
    /* Subtle green ambient light */
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: var(--accent-main);
    filter: blur(250px);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
}

.badge {
    border: 1px solid var(--accent-main);
    color: var(--accent-main);
    background: rgba(57, 255, 20, 0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subheadline {
    font-size: 1.4rem;
    max-width: 750px;
    margin: 1.5rem auto 2.5rem;
    color: #ccc;
    line-height: 1.4;
}

.platforms {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    max-width: 900px;
    margin: 3rem auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    border: 1px solid #222;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video Showcase (4 Columns) */
.video-showcase {
    padding: 3rem 0;
    background: #050505;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.video-item {
    aspect-ratio: 9/16;
    background: #111;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #222;
    transition: border-color 0.3s;
}

.video-item:hover {
    border-color: var(--accent-main);
}

.video-item iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Pain Points & Do/Get - Minimalist Cards */
.pain-points {
    padding: 3rem 0;
    background: #000;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.dont-need,
.do-get {
    padding: 2rem;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: var(--radius-md);
}

.dont-need h3,
.do-get h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.dont-need h3 {
    color: #ff3333;
}

/* Minimalist Red */
.do-get h3 {
    color: var(--accent-main);
}

ul {
    list-style: none;
}

li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ddd;
}

/* Target Audience - Clean Grid */
.target-audience {
    padding: 3rem 0;
    background: #050505;
}

.checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.check-item {
    background: #0a0a0a;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.2s;
}

.check-item:hover {
    border-color: var(--accent-main);
}

.check-item i {
    width: 32px;
    height: 32px;
    color: var(--accent-main);
    margin-bottom: 1.5rem;
}

.check-item p {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.message-box {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #222;
    border-radius: var(--radius-md);
    background: #080808;
}

/* Learning Outcomes - Minimalist Features */
.learning-outcomes {
    padding: 3rem 0;
    background: #000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.feature-card {
    background: #0a0a0a;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid #222;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--accent-main);
}

.feature-card i {
    color: var(--accent-main);
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.feature-card p {
    font-size: 1rem;
    color: #888;
    text-align: left;
    margin: 0;
}

/* Bonuses - Elegant Dark High-Tech */
.bonuses {
    padding: 3rem 0;
    background: #050505;
}

.bonus-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.bonus-item {
    background: #0a0a0a;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid #222;
    position: relative;
}

.bonus-header {
    background: #222;
    color: #fff;
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.bonus-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: left;
}

.bonus-item p {
    text-align: left;
    margin: 0;
}

/* Offer Section - Matched to User Request */
.offer-section {
    padding: 2rem 0;
    text-align: center;
    background: #000;
}

.offer-header {
    margin-bottom: 2rem;
}

.comparison-title {
    font-size: 1rem;
    color: #888;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.old-prices {
    font-size: 1.1rem;
    color: #444;
    font-weight: bold;
    margin-bottom: 2rem;
}

.old-prices .strike {
    text-decoration: line-through;
    margin: 0 10px;
}

.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.price-card-new {
    background: #080808;
    border-radius: var(--radius-lg);
    padding: 3.5rem 2rem 3rem;
    width: 100%;
    border: 1px solid #222;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease;
    position: relative;
}

.price-card-new.featured {
    border: 2px solid var(--accent-main);
    background: linear-gradient(145deg, #0a0a0a 0%, #0d1a0d 100%);
    transform: scale(1.08);
    z-index: 2;
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.15), 0 30px 60px rgba(0, 0, 0, 1);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-main);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
}

.price-card-new.featured .btn-green-pulse {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.price-card-new.featured .btn-green-pulse:hover {
    background: var(--accent-main);
    color: #000;
}

@media (max-width: 768px) {
    .price-card-new.featured {
        transform: none;
    }
}

.offer-label {
    background: rgba(57, 255, 20, 0.1);
    color: var(--accent-main);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    display: inline-flex;
}

.price-display-new {
    display: flex;
    justify-content: center;
    color: var(--accent-main);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-display-new .currency {
    font-size: 2.5rem;
    align-self: flex-start;
    margin-top: 10px;
    color: #fff;
}

.price-display-new .amount {
    font-size: 5rem;
    letter-spacing: -3px;
}

.price-display-new .cents {
    font-size: 2.5rem;
    align-self: flex-start;
    margin-top: 10px;
    color: #fff;
}

.payment-type {
    color: #666;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.benefits-list-new {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-item i {
    stroke: var(--accent-main);
    width: 20px;
    height: 20px;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #111;
    background: #000;
    font-size: 0.9rem;
    color: #444;
}

/* Icons Reset */
.icon-red,
.icon-yellow,
.icon-blue,
.icon-purple,
.icon-green {
    color: var(--accent-main);
    /* Force all icons to neon green */
}

/* Purchase Notification Popup */
.purchase-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0a0a0a;
    border: 1px solid #222;
    border-left: 4px solid var(--accent-main);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 320px;
}

.purchase-notification.show {
    transform: translateY(0);
}

.notification-icon {
    background: rgba(57, 255, 20, 0.1);
    color: var(--accent-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-content {
    flex-grow: 1;
}

.notification-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.notification-text {
    display: block;
    font-size: 0.8rem;
    color: #888;
}

.notification-time {
    display: block;
    font-size: 0.7rem;
    color: var(--accent-main);
    margin-top: 2px;
}