:root {
    --primary-color: #d901f6;
    /* Neon Pink */
    --secondary-color: #2e7d32;
    /* Provided Green - keeping as accent */
    --neon-green: #39ff14;
    --neon-blue: #04d9ff;
    --bg-dark: #101016;
    --bg-card: #1c1c24;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --gradient-main: linear-gradient(135deg, #d901f6 0%, #7b2cbf 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.narrow {
    max-width: 800px;
}

/* Utilities */
.section-padding {
    padding: 4rem 0;
}

.center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-danger {
    color: #ff4757;
}

.bg-darker {
    background-color: #0d0d12;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gradient-main);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(217, 1, 246, 0.4);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(217, 1, 246, 0.6);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

.full-width {
    width: 100%;
    display: block;
    text-align: center;
}

.pulsate {
    animation: pulsate 2s infinite;
}

@keyframes pulsate {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 1, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(217, 1, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 1, 246, 0);
    }
}

/* Header */
.header {
    background: rgba(16, 16, 22, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.highlight {
    color: var(--neon-green);
}

/* Hero */
.hero {
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 1, 246, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-container {
    padding: 0 1rem;
}

.hero-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(-2deg);
    margin: 0 auto;
}

.scarcity-text {
    font-size: 0.9rem;
    color: var(--neon-green);
    margin-top: 1rem;
    font-weight: 600;
}

/* Marquee */
.marquee-container {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    transform: rotate(2deg) scale(1.05);
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-weight: 900;
    font-size: 1.2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Problem Section */
.problem {
    padding-top: 2rem;
    padding-bottom: 0.5rem;
}

.solution {
    padding-top: 1rem;
}

.problem-card {
    background: var(--bg-card);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.problem-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.problem-card .icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.problem-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Solution / Benefit Section */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.feature-sequence {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.2);
    overflow: hidden;
}

.seq-img {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    border-radius: 20px;
    display: block;
}

.seq-img.active {
    opacity: 1;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item .check {
    font-size: 1.5rem;
    min-width: 30px;
}

.feature-item h3 {
    color: var(--neon-green);
    margin-bottom: 0.3rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-img {
    border-radius: 10px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.3s;
    filter: brightness(0.9);
}

.gallery-img:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

/* Social Proof */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: linear-gradient(145deg, #1c1c24, #15151b);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-card .stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.review-card .author {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Offer */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-items: center;
}

.offer-box {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 0.8rem;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(217, 1, 246, 0.1);
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    /* Base style for all boxes */
}

.offer-box.featured {
    border-color: var(--neon-green);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.3);
    transform: scale(1.05);
    z-index: 2;
}

.most-sold-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-green);
    color: #000;
    font-size: 0.8rem;
    font-weight: 900;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    z-index: 10;
}

.offer-box:hover {
    transform: translateY(-5px);
}

.offer-box.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.timer-badge {
    background: #ff4757;
    color: white;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 0.5rem;
    display: inline-block;
    vertical-align: middle;
    animation: flash 1s infinite alternate;
}

#countdown {
    font-variant-numeric: tabular-nums;
    font-family: monospace;
}

@keyframes flash {
    from {
        opacity: 1;
    }

    to {
        opacity: 0.8;
    }
}

.offer-header {
    background: var(--primary-color);
    margin: -0.8rem -0.8rem 1rem;
    padding: 0.6rem;
    border-radius: 10px 10px 0 0;
}

.offer-header h3 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.offer-header p {
    font-size: 0.75rem;
}

.offer-img {
    border-radius: 8px;
    margin: 0 auto 0.8rem;
    max-height: 110px;
}

.price-tag {
    margin-bottom: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.old-price {
    display: none;
}

.installment-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--neon-green);
    line-height: 1;
}

.cash-price {
    font-size: 0.7rem;
    color: var(--text-main);
    font-weight: 500;
}

.new-price {
    /* Legacy class override or removal if unused */
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--neon-green);
}

.offer-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 1rem;
    display: inline-block;
    width: 100%;
}

.offer-benefits li {
    margin-bottom: 0.3rem;
    font-size: 0.75rem;
    white-space: normal;
    /* Allow wrapping */
}

.offer-box .trust-badges {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    gap: 0.5rem;
    display: flex;
    justify-content: center;
    /* Center them */
    flex-wrap: wrap;
    /* Allow wrapping if absolutely needed */
}

.offer-box .trust-item {
    font-size: 0.45rem;
    /* Extra tiny */
    padding: 0 0.1rem;
    white-space: normal;
    /* Allow natural wrapping */
    line-height: 1.1;
    max-width: 65px;
    /* constrain width of each item */
}

.offer-box .trust-icon {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.offer-box .btn {
    padding: 0.6rem 1.5rem;
    /* Reduced from 1rem 3rem */
    font-size: 0.9rem;
    /* Reduced from 1.2rem */
    width: 90%;
    /* Ensure it doesn't touch edges */
    margin: 1rem auto 0;
    display: block;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-trust {
    border-top: none;
    margin-top: 0;
    margin-bottom: 2rem;
    padding-top: 0;
}

.trust-icon {
    font-size: 1rem;
    margin-bottom: 0;
}

/* FAQ */
.accordion {
    margin-top: 3rem;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    color: white;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.accordion-header.active::after {
    content: '-';
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-muted);
}

.accordion-body p {
    padding-bottom: 1.5rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 0;
    background: #000;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 0.5rem;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        text-align: left;
        min-height: 90vh;
    }

    .hero-content {
        text-align: left;
        padding-left: 2rem;
    }

    .hero-subtitle {
        margin-left: 0;
    }

    .offer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Social Proof Popup */
.social-proof-popup {
    position: fixed;
    top: 100px;
    left: 20px;
    background: rgba(28, 28, 36, 0.95);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(217, 1, 246, 0.3);
    padding: 12px 18px;
    border-radius: 12px;
    z-index: 10000;
    max-width: 300px;
    font-size: 0.9rem;
    color: white;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.social-proof-popup.active {
    transform: translateX(0);
}

.social-proof-popup .highlight {
    color: var(--neon-green);
    font-weight: 700;
}


@media (max-width: 768px) {
    .social-proof-popup {
        top: 70px !important;
        bottom: auto !important;
        left: 10px !important;
        right: auto !important;
        max-width: 260px;
        font-size: 0.75rem;
        transform: translateX(-150%) !important;
    }
    
    .social-proof-popup.active {
        transform: translateX(0) !important;
    }
}

