/* CSS Reset & Variables */
:root {
    --bg-color: #050505;
    --bg-secondary: #121212;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-color: #22c55e;
    /* Green for CTA */
    --accent-hover: #16a34a;
    --highlight: #3b82f6;
    /* Blue for subtle highlights */
    --font-main: 'Outfit', sans-serif;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --blur: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    /* critical for "above the fold" feel */
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1a202c 0%, #000000 100%);
    position: relative;
    text-align: center;
    padding: 80px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.headline {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
    }
}

.highlight {
    color: var(--text-secondary);
    /* Contrast via dimming or color */
    text-decoration: line-through;
    text-decoration-color: var(--accent-color);
    text-decoration-thickness: 3px;
}

.highlight-alt {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bullets {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-bullets i {
    color: var(--accent-color);
    width: 20px;
    height: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s, background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
}

.security-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.8;
}

.security-text i {
    width: 14px;
    height: 14px;
}

/* Common Section Styles */
.section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Identification (Pain) */
.identification {
    background-color: var(--bg-secondary);
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card i {
    color: #ef4444;
    /* Red for pain points */
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.section-footer-text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Belief Break */
.belief-break {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-color) 100%);
    text-align: center;
}

.belief-content h2 {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 600;
}

.separator {
    height: 4px;
    width: 60px;
    background-color: var(--accent-color);
    margin: 2rem auto;
    border-radius: 2px;
}

.belief-content p {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

/* Learning */
.learning {
    background-color: var(--bg-color);
}

.checklist-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.styled-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.styled-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.2rem;
}

.icon-box {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Target Audience */
.target {
    background-color: var(--bg-secondary);
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.feature-item i {
    width: 32px;
    height: 32px;
    color: var(--highlight);
}

.feature-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Disclaimer */
.disclaimer-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.disclaimer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #ef4444;
    /* Red for negative */
    background: rgba(239, 68, 68, 0.05);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.final-statement {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Final CTA */
.final-cta {
    background: radial-gradient(circle at center, #1a202c 0%, #000000 100%);
    text-align: center;
    padding: 100px 0;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-box .highlight-text {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.price-container {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.old-price {
    font-size: 1.2rem;
    color: #666;
    /* Muted color */
    text-decoration: line-through;
    font-weight: 500;
}

.connector {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    display: inline-block;
    line-height: 1;
}

.price-tag .currency {
    font-size: 1.8rem;
    vertical-align: top;
    margin-right: 5px;
    color: white;
}

.btn-large {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
}

footer {
    text-align: center;
    padding: 40px 0;
    background: #000;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }

    .styled-list li {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Subtle background glowing effect */
.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e5e5e5;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.avatar-placeholder {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.avatar-placeholder i {
    width: 22px;
    height: 22px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.author-city {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.validation-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: left;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    max-width: fit-content;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.validation-block p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .validation-block {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
    }
}