* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

:root {
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --green: #10b981;
    --orange: #f59e0b;
    --dark: #030712;
    --card: #0f172a;
    --text: #f1f5f9;
    --muted: #94a3b8;
}

body {
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0
    }

    100% {
        background-position: 1000px 0
    }
}

/* URGENCY BAR */
.urgency-bar {
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    background-size: 200% 200%;
    animation: gradientShift 3s infinite;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: radial-gradient(circle at 30% 20%, #1e1b4b 0%, transparent 50%), radial-gradient(circle at 70% 80%, #1e3a8a 0%, transparent 50%);
}

.hero-content {
    max-width: 1100px;
    text-align: center;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--purple) 50%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 20px;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* TIMER */
.timer {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.timer-item {
    background: var(--card);
    border: 2px solid #1e293b;
    border-radius: 16px;
    padding: 20px 25px;
    min-width: 90px;
    animation: float 3s ease-in-out infinite;
}

.timer-item:nth-child(2) {
    animation-delay: 0.5s
}

.timer-item:nth-child(3) {
    animation-delay: 1s
}

.timer-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--orange);
    font-family: 'Courier New', monospace;
}

.timer-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* CTA BUTTON */
.cta-main {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: #fff;
    padding: 22px 55px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.6);
}

/* TRUST BADGES */
.trust-badges {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* why now section */

.why-now {
    margin: 80px 0
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px
}

.why-item {
    text-align: center;
    padding: 30px;
    background: #0f172a;
    border-radius: 18px;
    border: 1px solid #1e293b
}

.why-icon {
    font-size: 50px;
    margin-bottom: 15px
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 60px;
}

/* PRODUCTS GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.product-card {
    background: linear-gradient(135deg, var(--card) 0%, #1e293b 100%);
    border: 2px solid #1e293b;
    border-radius: 24px;
    padding: 35px;
    transition: 0.4s;
    position: relative;
    opacity: 0;
    animation: fadeUp 0.6s forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s
}

.product-card:nth-child(2) {
    animation-delay: 0.2s
}

.product-card:nth-child(3) {
    animation-delay: 0.3s
}

.product-card:nth-child(4) {
    animation-delay: 0.4s
}

.product-card:hover {
    border-color: var(--purple);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.product-icon {
    font-size: 50px;
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite;
}

.product-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.product-desc {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.whats-inside,
.who-for,
.results {
    margin: 20px 0;
    text-align: left
}

.whats-inside h5,
.who-for h5,
.results h5 {
    color: #e2e8f0;
    margin-bottom: 8px;
    font-size: 15px
}

.whats-inside ul {
    list-style: none;
    color: #94a3b8;
    font-size: 14px
}

.whats-inside li {
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative
}

.whats-inside li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981
}

.features {
    list-style: none;
    margin-bottom: 25px;
}

.features li {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

.price-box {
    background: #0005;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.old-price {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 16px;
}

.new-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--green);
    margin: 5px 0;
}

.price-note {
    color: var(--muted);
    font-size: 12px;
}

.cta-product {
    display: block;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: #fff;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 15px;
}

.cta-product:hover {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    transform: scale(1.03);
}

/* BUNDLE OFFER */
.bundle-offer {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 3px solid var(--purple);
    border-radius: 30px;
    padding: 60px 30px;
    text-align: center;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.best-value-badge {
    position: absolute;
    top: -15px;
    right: 40px;
    background: var(--orange);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 14px;
}

.bundle-offer h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
}

.bundle-subtitle {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 30px;
}

.bundle-note {
    color: var(--muted);
    font-size: 13px;
    margin-top: 20px;
}

/* COMPARISON TABLE */
.comparison {
    margin: 80px 0;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    border: 2px solid #1e293b;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
}

th {
    background: linear-gradient(135deg, var(--purple), var(--blue));
    padding: 20px;
    text-align: left;
    font-weight: 800;
}

td {
    padding: 18px;
    border-bottom: 1px solid #1e293b;
}

tr:hover {
    background: #1e293b50;
}

.check {
    color: var(--green);
    font-size: 22px;
    font-weight: 900;
}

.cross {
    color: #ef4444;
    font-size: 22px;
}

.total-row {
    background: #0a0a0f;
}

/* TESTIMONIALS */
.testimonials {
    margin: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.testimonial {
    background: var(--card);
    border: 1px solid #1e293b;
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.stars {
    color: var(--orange);
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial p {
    color: #cbd5e1;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.author span {
    color: var(--muted);
    font-size: 13px;
}

/* GUARANTEE */
.guarantee {
    background: linear-gradient(135deg, #064e3b, #065f46);
    border: 2px solid var(--green);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    margin: 80px 0;
}

.guarantee-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.guarantee h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--green);
}

.guarantee p {
    font-size: 18px;
    color: #a7f3d0;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ */
.faq-section {
    margin: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 2px solid #1e293b;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-q {
    padding: 22px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
}

.faq-a {
    padding: 0 22px 22px;
    color: var(--muted);
    display: none;
    line-height: 1.7;
}

.faq-item.active .faq-a {
    display: block;
}

.faq-toggle {
    transition: 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* FINAL CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #7f1d1d, #b91c1c);
    padding: 100px 30px;
    border-radius: 35px;
    margin: 100px 0;
    border: 1px solid #ef4444;
}

.final-cta h2 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin: 15px 0;
}

.scarcity {
    color: var(--orange);
    font-size: 20px;
    font-weight: 700;
    margin: 25px 0;
}

.final-note {
    color: #fecaca;
    font-size: 14px;
    margin-top: 30px;
}


.linkbtn {
    display: flex;
    gap: 10px;
    /* margin-left: 15px; */
}

.linkbtn a {
    width: 100%;
    height: 70px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* STICKY CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--card), #1e293b);
    border-top: 2px solid var(--purple);
    padding: 5px 0px;
    z-index: 9998;
    transform: translateY(100%);
    transition: 0.4s;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.sticky-text {
    font-weight: 700;
    font-size: 25px;
    color: var(--muted);
}


/* RESPONSIVE */
@media(max-width:768px) {
    h1 {
        font-size: 38px
    }

    .subheadline {
        font-size: 16px
    }

    .timer-item {
        min-width: 70px;
        padding: 15px 18px
    }

    .timer-num {
        font-size: 28px
    }

    .products-grid {
        grid-template-columns: 1fr
    }

    .section-title {
        font-size: 32px
    }

    .bundle-offer h2 {
        font-size: 28px
    }

    .sticky-content {
        flex-direction: column;
        text-align: center
    }

    .badge-top {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #ef4444;
        color: #fff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 800
    }

    .badge-top.hot {
        background: #f59e0b
    }

    .badge-top.new {
        background: #10b981
    }

    .whats-inside,
    .who-for,
    .results {
        margin: 20px 0;
        text-align: left
    }

    .whats-inside h5,
    .who-for h5,
    .results h5 {
        color: #e2e8f0;
        margin-bottom: 8px;
        font-size: 15px
    }

    .whats-inside ul {
        list-style: none;
        color: #94a3b8;
        font-size: 14px
    }

    .whats-inside li {
        margin-bottom: 6px;
        padding-left: 20px;
        position: relative
    }

    .whats-inside li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #10b981
    }

    .urgency-small {
        color: #fbbf24;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 10px;
        text-align: center
    }

    .save-text {
        color: #10b981;
        font-weight: 700;
        margin-top: 8px
    }

    .bundle-benefits {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        margin: 25px 0;
        color: #a7f3d0
    }

    .security-note {
        color: #64748b;
        font-size: 12px;
        margin-top: 15px
    }

    .scarcity-text {
        color: #fbbf24;
        font-size: 16px;
        font-weight: 700;
        margin-top: 15px
    }

    .why-now {
        margin: 80px 0
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px
    }

    .why-item {
        text-align: center;
        padding: 30px;
        background: #0f172a;
        border-radius: 18px;
        border: 1px solid #1e293b
    }

    .why-icon {
        font-size: 50px;
        margin-bottom: 15px
    }

    /* final cta linkbtn */

    .linkbtn {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* footer sticky */
    .sticky-text {
        font-weight: 700;
        font-size: 20px;
    }
}

