:root {
    --bg-color: #050510;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-green: #00ff9d;
    --accent-cyan: #00d2ff;
    --accent-orange: #ff9d00;
    --danger: #ff4d4d;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    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;
    padding-top: 45px;
    /* Adjust for top bar */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* UTILITIES */
.glass-effect {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--accent-orange), #ff5e00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 157, 0, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button.primary:hover {
    box-shadow: 0 6px 20px rgba(255, 157, 0, 0.6);
}

.cta-button.secondary:hover {
    background: var(--accent-green);
    color: #000;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 157, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 157, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 157, 0, 0);
    }
}

/* TOP BAR */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background: linear-gradient(90deg, #050510 0%, #3a2500 50%, #050510 100%);
    border-bottom: 1px solid var(--accent-orange);
    z-index: 1000;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding-right: 50px;
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(255, 157, 0, 0.3);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* HERO SECTION */
.hero-section {
    padding: 4rem 0;
    background: radial-gradient(circle at top right, #1a1a2e, var(--bg-color));
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 3rem;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.2);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.hero-content {
    flex: 1;
}

.headline {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
}

.social-proof-hero {
    color: var(--accent-green);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: inline-block;
    background: rgba(0, 255, 157, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
}

.highlight {
    color: var(--accent-green);
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* AUTHORITY SECTION */
.authority-section {
    padding: 4rem 0;
}

.authority-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Enhanced shadow */
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    /* Contrast */
}

.authority-card h2 {
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.authority-card .subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.quote {
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    color: var(--accent-green);
}

/* PROMISE SECTION */
.promise-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    /* Increased spacing */
}

.benefit-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.1);
}

.benefit-item .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    /* Light glow */
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

background: linear-gradient(90deg, #050510 0%, #3a2500 50%, #050510 100%);
border-bottom: 1px solid var(--accent-orange);
z-index: 1000;
display: flex;
align-items: center;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding-right: 50px;
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(255, 157, 0, 0.3);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* HERO SECTION */
.hero-section {
    padding: 4rem 0;
    background: radial-gradient(circle at top right, #1a1a2e, var(--bg-color));
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 3rem;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.2);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.hero-content {
    flex: 1;
}

.headline {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
}

.social-proof-hero {
    color: var(--accent-green);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: inline-block;
    background: rgba(0, 255, 157, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
}

.highlight {
    color: var(--accent-green);
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* AUTHORITY SECTION */
.authority-section {
    padding: 4rem 0;
}

.authority-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Enhanced shadow */
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    /* Contrast */
}

.authority-card h2 {
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.authority-card .subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.quote {
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    color: var(--accent-green);
}

/* PROMISE SECTION */
.promise-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    /* Increased spacing */
}

.benefit-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.1);
}

.benefit-item .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    /* Light glow */
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-track-container {
    overflow: hidden;
    height: auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    list-style: none;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    padding: 1rem;
    position: relative;
    /* Ensure it takes space */
}

.testimonial-card {
    background: #0f0e17;
    /* Darker variant */
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 2.5rem;
    position: relative;
}

.testimonial-card .stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-cyan);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    color: #d0d0e0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--accent-cyan);
}

.author-avatar.female {
    background-image: url('https://randomuser.me/api/portraits/women/44.jpg');
    /* Placeholder */
}

.author-avatar.male {
    background-image: url('https://randomuser.me/api/portraits/men/32.jpg');
    /* Placeholder */
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    gap: 0.5rem;
}

.carousel-indicator {
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.carousel-indicator.current-slide {
    background: var(--accent-cyan);
}

/* PLANS SECTION */
.plans-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--bg-color), #0a0a1a);
}

.plans-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.plan-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 2.5rem;
}

.plan-card.basic {
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Better contrast */
}

.plan-card.special {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--accent-orange);
    transform: scale(1.05);
    z-index: 2;
    animation: border-pulse 3s infinite;
    /* Glow animation */
}

@keyframes border-pulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 157, 0, 0.1);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 157, 0, 0.3);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 157, 0, 0.1);
    }
}

.ribbon {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(90deg, #ff9d00, #ff5e00);
    /* Elegant gradient */
    color: black;
    padding: 5px 15px;
    font-weight: 800;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
}

.plan-header h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1rem;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
    /* Better readability */
}

.plan-features li.excluded {
    color: var(--text-secondary);
    opacity: 0.6;
}

.highlight-text {
    color: var(--accent-orange);
    font-weight: bold;
}

/* BONUSES SECTION */
.bonuses-section {
    padding: 4rem 0;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.bonus-card h4 {
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

/* FAQ SECTION */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 0;
    /* Override glass-effect padding for better control */
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding: 0 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* GUARANTEE SECTION */
.guarantee-section {
    padding: 4rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.guarantee-badge {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* FOOTER CTA */
.footer-cta {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(to top, #000, var(--bg-color));
}

.footer-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-proof-footer {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image-wrapper {
        order: -1;
        margin-bottom: 1rem;
    }

    .headline {
        font-size: 2.2rem;
    }

    .plan-card.special {
        transform: scale(1);
        order: -1;
    }

    .plans-container {
        flex-direction: column;
    }

    .footer-buttons {
        flex-direction: column;
    }

    .carousel-container {
        padding: 0 10px;
        /* Less padding on mobile */
    }

    .carousel-btn {
        display: none;
        /* Hide arrows on mobile, use swipe or dots */
    }
}

/* ANIMATIONS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}