:root {
    --bg-dark: #0a0a12;
    --bg-card: rgba(255, 255, 255, 0.05);
    --primary: #00f260;
    --primary-dim: #0575e6;
    --accent: #b92b27;
    /* For negative/pain points */
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --gradient-main: linear-gradient(135deg, #00f260 0%, #0575e6 100%);
    --gradient-text: linear-gradient(to right, #00f260, #0575e6);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(5, 117, 230, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 242, 96, 0.1) 0%, transparent 20%);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 242, 96, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 242, 96, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 242, 96, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* --- Components --- */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 242, 96, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 242, 96, 0.4);
}

.btn.pulse {
    animation: pulse 2s infinite;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: var(--radius);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.hero .badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    display: inline-block;
    border: 1px solid rgba(0, 242, 96, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-problem {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.problem-item ion-icon {
    color: var(--accent);
    font-size: 1.5rem;
}

/* --- Abstract Sections --- */
section {
    padding: 80px 0;
}

.section-dark {
    background: #0d0d16;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Grid Systems */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    padding: 40px 30px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    /* slightly lighter on hover */
}

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.highlight-box {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-box p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

/* Benefits */
.section-benefits .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.col-text {
    flex: 1;
    min-width: 300px;
}

.col-visual {
    flex: 1;
    min-width: 300px;
}

.col-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ddd;
}

.check-list ion-icon {
    color: var(--primary);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.visual-card {
    background: radial-gradient(circle at center, #1a1a2e 0%, #16213e 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-row {
    margin-bottom: 25px;
}

.stat-row span {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-muted);
}

.bar-container {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.bar {
    height: 100%;
    border-radius: 5px;
}

.bar.down {
    width: 80%;
    background: #ff4b2b;
    animation: scaleDown 2s forwards;
}

.bar.up {
    width: 40%;
    background: var(--primary);
    animation: scaleUp 2s forwards 0.5s;
}

@keyframes scaleDown {
    from {
        width: 90%;
    }

    to {
        width: 20%;
    }
}

@keyframes scaleUp {
    from {
        width: 10%;
    }

    to {
        width: 90%;
    }
}

.features-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.features-grid span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Modules */
.center-text {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.module-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: var(--primary-dim);
    background: rgba(255, 255, 255, 0.06);
}

.module-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.module-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.module-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Target */
.target-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.target-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: var(--radius);
}

.target-card.not-for {
    background: rgba(255, 75, 43, 0.05);
    border: 1px solid rgba(255, 75, 43, 0.2);
}

.target-card.is-for {
    background: rgba(0, 242, 96, 0.05);
    border: 1px solid rgba(0, 242, 96, 0.2);
}

.icon-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.not-for .icon-header ion-icon {
    color: #ff4b2b;
}

.is-for .icon-header ion-icon {
    color: var(--primary);
}

.target-card ul li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #ddd;
}

.target-summary {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Offer Box */
.section-offer {
    padding-bottom: 100px;
}

.offer-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 242, 96, 0.1) 0%, transparent 50%);
    animation: rotate 10s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.offer-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.offer-header h2 {
    font-size: 3rem;
}

.offer-sub {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.main-product {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
}

.main-product ion-icon {
    font-size: 3rem;
    color: #fff;
    background: var(--primary);
    padding: 15px;
    border-radius: 50%;
}

.bonuses {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
}

.bonuses h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.bonus-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.bonus-item:last-child {
    border-bottom: none;
}

.bonus-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.bonus-tag {
    background: #ff4b2b;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
}

.bonus-price {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bonus-price .strike {
    text-decoration: line-through;
    color: #ff4b2b;
    margin: 0 3px;
}

.bonus-price .free {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

.offer-cta {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 50px;
}

/* Guarantee/Seals */
.guarantee-box {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 242, 96, 0.3);
}

.guarantee-item ion-icon {
    font-size: 1.2rem;
    color: var(--primary);
}

.guarantee-sub {
    color: var(--text-muted);
    margin-top: 5px;
    font-size: 0.85rem;
}

footer {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Testimonials */
.section-testimonials {
    padding-top: 0;
    padding-bottom: 80px;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 0 1 300px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background: #000;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 242, 96, 0.15);
    z-index: 10;
}

.testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover img {
    opacity: 1;
}

.testimonial-card:hover img {
    opacity: 1;
}

/* Price Section */
.price-call {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.price-call .strike {
    text-decoration: line-through;
    color: #ff4b2b;
    /* Red accent for deleted price */
    opacity: 0.8;
}

.main-price {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    text-shadow: 0 0 20px rgba(0, 242, 96, 0.3);
}

.main-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
    opacity: 0.8;
    margin-right: 5px;
    font-weight: 400;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .grid-3,
    .target-grid {
        grid-template-columns: 1fr;
    }

    .card,
    .target-card,
    .offer-box {
        padding: 30px 20px;
    }

    .main-product {
        flex-direction: column;
        text-align: center;
    }

    .btn-large {
        width: 100%;
    }

    .testimonial-card {
        flex: 0 1 85%;
        max-width: 400px;
    }
}

/* Scroll Reveal Helper */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}