:root {
    --bg-color: #050510;
    --card-bg: rgba(255, 255, 255, 0.05);
    --primary-color: #00f2ff;
    /* Cyan Neon */
    --secondary-color: #bc13fe;
    /* Magenta Neon */
    --danger-color: #ff3838;
    --text-color: #ffffff;
    --text-muted: #a0a0b0;
    --font-main: 'Outfit', sans-serif;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glow-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}

h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(188, 19, 254, 0.6);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 242, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 242, 255, 0);
    }
}

.btn-full-width {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(188, 19, 254, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.2));
    animation: float 6s ease-in-out infinite;
}

/* Offer Badges & Elements */
.offer-badge {
    display: inline-block;
    background: rgba(188, 19, 254, 0.2);
    border: 1px solid var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.3);
}

.price-tag-float {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(-5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float-delayed 5s ease-in-out infinite;
}

@keyframes float-delayed {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

.price-tag-float .small {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.price-tag-float .big {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

/* Stock Indicator */


.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff9f43, var(--danger-color));
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 10px var(--danger-color);
}

/* Timer Banners */
.timer-banner {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    background: rgba(188, 19, 254, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 1.5rem;
}

/* Final Offer Box */
.offer-box {
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.9), rgba(10, 10, 20, 0.95));
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.15);
}

.offer-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.offer-header,
.stock-display,
.pricing-container,
.btn,
p {
    position: relative;
    z-index: 1;
}

.timer-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

.timer-display p {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.countdown-timer-large {
    display: flex;
    gap: 1rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-color);
    align-items: center;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    min-width: 100px;
}

.time-block .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.separator {
    color: var(--primary-color);
    padding-bottom: 2rem;
}

.stock-display {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 15px;
}

.stock-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stock-info .highlight {
    color: var(--danger-color);
}

.stock-warning {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: #ff9f43;
}

.progress-bar.large {
    height: 12px;
}

.discount-badge {
    background: var(--danger-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 900;
    margin-left: 1rem;
    vertical-align: middle;
    box-shadow: 0 0 10px var(--danger-color);
}

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Sections General */
section {
    padding: 5rem 0;
}

/* Cards (Glassmorphism) */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Learning Section */
.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.learn-card {
    text-align: center;
}

.learn-card h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--text-color);
}

/* Transformations / Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    position: relative;
    padding: 2rem;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
}

/* Why Buy Now */
.why-buy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Footer & CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(0, 242, 255, 0.05));
    padding: 8rem 0;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Pricing */
.pricing-container {
    margin-bottom: 2rem;
    text-align: center;
}

.old-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
}

.new-price {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    margin-top: -0.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .price-tag-float {
        right: 50%;
        transform: translateX(50%) rotate(0deg);
        bottom: -20px;
        animation: none;
    }

    .why-buy-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .countdown-timer-large {
        font-size: 2rem;
    }

    .time-block {
        min-width: 70px;
    }

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .guarantee-icon {
        margin-bottom: 0.5rem;
    }
}

/* Guarantee Badge */
.guarantee-badge {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--primary-color);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    max-width: 500px;
    text-align: left;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
    transition: transform 0.3s ease;
}

.guarantee-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.guarantee-content h4 {
    color: var(--text-color);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    color: #000;
}

.user-info h4 {
    margin-bottom: 0px;
    font-size: 1rem;
    color: var(--text-color);
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Impact Section Highlights */
.impact-highlight {
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.05) 0%, transparent 100%);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
}

.impact-text-1 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.impact-text-2 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Author Section */
.author-card {
    padding: 3rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.author-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.author-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 250px;
}

.author-image {
    width: 100%;
    aspect-ratio: 1;
    /* Square or adjust based on image */
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}

.author-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #000;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.author-text {
    flex: 1;
    text-align: left;
}

.author-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff, #a0a0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.author-text .role {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: inline-block;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 5px;
}

.author-text p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .author-content {
        flex-direction: column;
        text-align: center;
    }

    .author-text {
        text-align: center;
    }

    .author-image-wrapper {
        width: 200px;
        margin-bottom: 1rem;
    }
}