:root {
    --bg-dark: #050507;
    --bg-card: #12121a;
    --primary: #00ff9d;
    --primary-glow: rgba(0, 255, 157, 0.5);
    --secondary: #4361ee;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --gradient-main: linear-gradient(135deg, #00ff9d 0%, #4361ee 100%);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: -100px;
    left: -100px;
    animation: float 10s infinite ease-in-out;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    bottom: -50px;
    right: -50px;
    animation: float 12s infinite ease-in-out reverse;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 7, 0.7);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 2px;
}

.logo .highlight {
    color: var(--primary);
}

.btn-nav {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-nav:hover {
    background: var(--glass);
    border-color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 0 20px var(--primary-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--primary-glow);
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.guarantee-badge {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Offer Highlight Section */
.offer-highlight {
    padding: 40px 0 80px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(5, 5, 7, 0) 0%, rgba(20, 20, 30, 0.5) 100%);
}

.offer-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 15px;
}

.hero-old-price {
    font-size: 1.5rem;
    color: #ef4444;
    text-decoration: line-through;
    font-weight: 700;
    transform: rotate(-3deg);
}

.hero-price-label {
    font-size: 1rem;
    color: #fff;
    margin: 5px 0;
    letter-spacing: 2px;
}

.hero-price-value {
    font-size: 5rem;
    color: #22c55e;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
    margin: 0;
    line-height: 0.9;
}

.hero-risk-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.risk-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.risk-subtitle {
    font-size: 0.8rem;
    color: #a0a0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-checklist {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    display: inline-block;
}

.hero-checklist li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-checklist li i {
    color: #22c55e;
    font-size: 1.3rem;
}

.btn-hero-offer {
    background: #22c55e;
    color: #fff;
    font-size: 1.5rem;
    padding: 20px 60px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
    border: 2px solid #4ade80;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-hero-offer:hover {
    background: #16a34a;
    box-shadow: 0 0 50px rgba(34, 197, 94, 0.8);
    transform: scale(1.05);
}

.hero-footer-text {
    font-size: 0.8rem;
    color: #a0a0b0;
    margin-top: 15px;
    font-style: italic;
}

/* Showcase Section */
.showcase-section {
    padding: 20px 0 60px 0;
    text-align: center;
}

.showcase-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
    letter-spacing: 2px;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: #22c55e;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-description {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    aspect-ratio: 16/9;
}

.showcase-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 255, 157, 0.2);
    z-index: 10;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

/* Intro Section */
.intro-section {
    padding: 40px 0 40px 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.5) 0%, rgba(5, 5, 7, 0.8) 100%);
}

.intro-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.intro-highlight {
    color: var(--text-main) !important;
    font-size: 1.1rem !important;
}

.intro-highlight strong {
    color: #22c55e;
    font-weight: 700;
}

.intro-note {
    font-size: 0.95rem !important;
    font-style: italic;
    color: #a0a0b0 !important;
}

/* Categories Section */
.categories {
    padding: 60px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.categories-label {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: var(--text-main);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.category-cube {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95) 0%, rgba(30, 30, 45, 0.9) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

/* Scroll animation state */
.category-cube.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

.category-cube:hover,
.category-cube.mobile-focus {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.95) 0%, rgba(20, 20, 30, 0.9) 100%);
    z-index: 10;
}

.category-cube i {
    font-size: 2.5rem;
    color: var(--primary);
    filter: drop-shadow(0 0 15px var(--primary-glow));
    transition: all 0.3s;
}

.category-cube:hover i,
.category-cube.mobile-focus i {
    transform: scale(1.1);
    color: #fff;
}

.category-cube span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.3s;
}

.category-cube:hover span,
.category-cube.mobile-focus span {
    color: var(--primary);
}

/* Highlight for "E muito mais!" */
.category-cube-highlight {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1) 0%, rgba(67, 97, 238, 0.1) 100%);
    border: 2px solid var(--primary);
}

.category-cube-highlight i {
    color: #fff;
    font-size: 3rem;
}

.category-cube-highlight span {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.category-cube-highlight:hover {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.2) 0%, rgba(67, 97, 238, 0.2) 100%);
    transform: translateY(-8px) scale(1.02);
}

/* CTA Button after Categories */
.categories-cta {
    text-align: center;
    padding: 50px 0;
}

.btn-mega-cta {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 0 30px rgba(34, 197, 94, 0.6),
        0 10px 40px rgba(0, 0, 0, 0.3);
    animation: pulseCTA 2s infinite;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-mega-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-mega-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-mega-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 0 50px rgba(34, 197, 94, 0.8),
        0 15px 50px rgba(0, 0, 0, 0.4);
}

.cta-disclaimer {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #ef4444;
    font-style: italic;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--gradient-main);
    margin: 0 auto;
    border-radius: 2px;
}

.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    width: 260px;
    flex-shrink: 0;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(0, 255, 157, 0.2),
        inset 0 0 0 1px var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.offer-box {
    background: linear-gradient(180deg, rgba(20, 20, 30, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-main);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.price-tag {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    color: var(--primary);
    margin: 20px 0;
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 255, 157, 0.3);
}

.currency {
    font-size: 2rem;
    vertical-align: top;
}

.cents {
    font-size: 2rem;
}

.secure-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-large {
    font-size: 1.3rem;
    padding: 18px 50px;
}

/* Summary and Guarantee Section */
.summary-guarantee {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(5, 5, 7, 0.8) 0%, rgba(20, 20, 30, 0.9) 100%);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.summary-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.summary-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-muted);
}

.summary-text strong {
    color: var(--primary);
}

.objective-box {
    border: 2px dashed var(--primary);
    padding: 20px;
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    background: rgba(0, 255, 157, 0.05);
}

.objective-box p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin: 0;
}

.btn-guarantee {
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-muted);
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--text-main);
}

.guarantee-divider {
    height: 1px;
    background: var(--glass-border);
    width: 100%;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-seal {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.guarantee-seal i {
    font-size: 8rem;
    color: #22c55e;
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.4));
}

.guarantee-seal span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 800;
    font-size: 1.5rem;
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    line-height: 1;
    text-align: center;
}

.guarantee-headline {
    font-size: 2rem;
    color: #ef4444;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.guarantee-subheadline {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 30px;
    font-weight: 400;
}

.guarantee-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.guarantee-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 30px 0;
}

.final-call h3 {
    font-size: 1.5rem;
    margin: 40px 0 30px 0;
}

.discount-red {
    color: #ef4444;
    text-decoration: underline;
}

footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 20px);
    }
}

@keyframes hoverStack {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseCTA {

    0%,
    100% {
        box-shadow:
            0 0 30px rgba(34, 197, 94, 0.6),
            0 10px 40px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow:
            0 0 50px rgba(34, 197, 94, 0.9),
            0 15px 50px rgba(0, 0, 0, 0.4);
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-content {
        max-width: 900px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .categories-grid {
        gap: 12px;
    }

    .category-cube {
        padding: 18px;
    }

    .category-cube i {
        font-size: 2rem;
    }

    .category-cube span {
        font-size: 0.9rem;
    }

    .btn-mega-cta {
        font-size: 1.1rem;
        padding: 18px 40px;
    }

    .price-tag {
        font-size: 3rem;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-price-value {
        font-size: 4rem;
    }

    line-height: 1.8;
    margin-bottom: 20px;
}

.guarantee-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 30px 0;
}

.final-call h3 {
    font-size: 1.5rem;
    margin: 40px 0 30px 0;
}

.discount-red {
    color: #ef4444;
    text-decoration: underline;
}

footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 20px);
    }
}

@keyframes hoverStack {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseCTA {

    0%,
    100% {
        box-shadow:
            0 0 30px rgba(34, 197, 94, 0.6),
            0 10px 40px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow:
            0 0 50px rgba(34, 197, 94, 0.9),
            0 15px 50px rgba(0, 0, 0, 0.4);
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-content {
        max-width: 900px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .categories-grid {
        gap: 12px;
    }

    .category-cube {
        padding: 18px;
    }

    .category-cube i {
        font-size: 2rem;
    }

    .category-cube span {
        font-size: 0.9rem;
    }

    .btn-mega-cta {
        font-size: 1.1rem;
        padding: 18px 40px;
    }

    .price-tag {
        font-size: 3rem;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-price-value {
        font-size: 4rem;
    }

    .btn-hero-offer {
        font-size: 1.2rem;
        padding: 15px 30px;
    }

    .summary-title {
        font-size: 1.8rem;
    }

    .guarantee-headline {
        font-size: 1.5rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-title {
        font-size: 1.5rem;
    }

    .showcase-subtitle {
        font-size: 1.2rem;
    }
}

/* Pricing Section Styles */
.pricing-section {
    padding: 60px 0 100px 0;
    background: linear-gradient(180deg, rgba(5, 5, 7, 0) 0%, rgba(20, 20, 30, 0.5) 100%);
}

.pricing-main-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
    /* Make cards same height */
}

border-top: 1px solid var(--glass-border);
margin-top: 50px;
color: var(--text-muted);
font-size: 0.9rem;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 20px);
    }
}

@keyframes hoverStack {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseCTA {

    0%,
    100% {
        box-shadow:
            0 0 30px rgba(34, 197, 94, 0.6),
            0 10px 40px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow:
            0 0 50px rgba(34, 197, 94, 0.9),
            0 15px 50px rgba(0, 0, 0, 0.4);
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-content {
        max-width: 900px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .categories-grid {
        gap: 12px;
    }

    .category-cube {
        padding: 18px;
    }

    .category-cube i {
        font-size: 2rem;
    }

    .category-cube span {
        font-size: 0.9rem;
    }

    .btn-mega-cta {
        font-size: 1.1rem;
        padding: 18px 40px;
    }

    .price-tag {
        font-size: 3rem;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-price-value {
        font-size: 4rem;
    }

    .btn-hero-offer {
        font-size: 1.2rem;
        padding: 15px 30px;
    }

    .summary-title {
        font-size: 1.8rem;
    }

    .guarantee-headline {
        font-size: 1.5rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-title {
        font-size: 1.5rem;
    }

    .showcase-subtitle {
        font-size: 1.2rem;
    }
}

/* Pricing Section Styles */
.pricing-section {
    padding: 60px 0 100px 0;
    background: linear-gradient(180deg, rgba(5, 5, 7, 0) 0%, rgba(20, 20, 30, 0.5) 100%);
}

.pricing-main-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
    /* Make cards same height */
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    padding: 30px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    color: #333;
    /* Light theme for card body as per image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Basic Plan Specifics */
.basic-plan {
    border: 1px solid #ccc;
    background: #f9f9f9;
}

.basic-plan .plan-header h3 {
    background: #333;
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.payment-type {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}

.plan-price {
    text-align: center;
    font-size: 4rem;
    font-weight: 800;
    color: #22c55e;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.plan-price .currency {
    font-size: 1em;
    vertical-align: top;
}

.plan-price .cents {
    font-size: 1em;
}

/* Premium Plan Specifics */
.premium-plan {
    border: 4px solid #ffd700;
    background: #fff;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.best-seller-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.stars-rating {
    text-align: center;
    color: #ffd700;
    margin-top: 10px;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.premium-header h3 {
    background: #ff0000;
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 5px;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
}

.plan-subtitle {
    text-align: center;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.premium-image {
    text-align: center;
    margin-bottom: 15px;
}

.premium-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    margin-top: 3px;
    flex-shrink: 0;
}

.plan-features li.included i {
    color: #22c55e;
}

.plan-features li.excluded {
    color: #999;
    text-decoration: line-through;
}

.plan-features li.excluded i {
    color: #ff0000;
    text-decoration: none;
}

/* Buttons */
.btn-plan {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    transition: 0.3s;
    margin-top: 20px;
    cursor: pointer;
}

.btn-basic {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.btn-basic:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-premium {
    background: #22c55e;
    color: #fff;
    font-size: 1.3rem;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.6);
    border: 2px solid #4ade80;
}

.btn-premium:hover {
    background: #15803d;
    transform: scale(1.02);
}

.price-block {
    text-align: center;
    margin-bottom: 15px;
}

.old-price-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 700;
}

.premium-price {
    font-size: 4.5rem;
    margin-bottom: 10px;
}

.urgency-text {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 10px;
    font-weight: 600;
}

.discount-red {
    color: #ff0000;
    font-weight: 800;
}

text-transform: uppercase;
margin-bottom: 5px;
font-weight: 600;
}

.plan-price {
    text-align: center;
    font-size: 4rem;
    font-weight: 800;
    color: #22c55e;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.plan-price .currency {
    font-size: 1em;
    vertical-align: top;
}

.plan-price .cents {
    font-size: 1em;
}

/* Premium Plan Specifics */
.premium-plan {
    border: 4px solid #ffd700;
    background: #fff;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.best-seller-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.stars-rating {
    text-align: center;
    color: #ffd700;
    margin-top: 10px;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.premium-header h3 {
    background: #ff0000;
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 5px;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
}

.plan-subtitle {
    text-align: center;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.premium-image {
    text-align: center;
    margin-bottom: 15px;
}

.premium-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    margin-top: 3px;
    flex-shrink: 0;
}

.plan-features li.included i {
    color: #22c55e;
}

.plan-features li.excluded {
    color: #999;
    text-decoration: line-through;
}

.plan-features li.excluded i {
    color: #ff0000;
    text-decoration: none;
}

/* Buttons */
.btn-plan {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    transition: 0.3s;
    margin-top: 20px;
    cursor: pointer;
}

.btn-basic {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.btn-basic:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-premium {
    background: #22c55e;
    color: #fff;
    font-size: 1.3rem;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.6);
    border: 2px solid #4ade80;
}

.btn-premium:hover {
    background: #15803d;
    transform: scale(1.02);
}

.price-block {
    text-align: center;
    margin-bottom: 15px;
}

.old-price-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 700;
}

.premium-price {
    font-size: 4.5rem;
    margin-bottom: 10px;
}

.urgency-text {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 10px;
    font-weight: 600;
}

}

.best-seller-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.stars-rating {
    text-align: center;
    color: #ffd700;
    margin-top: 10px;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.premium-header h3 {
    background: #ff0000;
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 5px;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
}

.plan-subtitle {
    text-align: center;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.premium-image {
    text-align: center;
    margin-bottom: 15px;
}

.premium-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    margin-top: 3px;
    flex-shrink: 0;
}

.plan-features li.included i {
    color: #22c55e;
}

.plan-features li.excluded {
    color: #999;
    text-decoration: line-through;
}

.plan-features li.excluded i {
    color: #ff0000;
    text-decoration: none;
}

/* Buttons */
.btn-plan {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    transition: 0.3s;
    margin-top: 20px;
    cursor: pointer;
}

.btn-basic {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.btn-basic:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-premium {
    background: #22c55e;
    color: #fff;
    font-size: 1.3rem;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.6);
    border: 2px solid #4ade80;
}

.btn-premium:hover {
    background: #15803d;
    transform: scale(1.02);
}

.price-block {
    text-align: center;
    margin-bottom: 15px;
}

.old-price-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 700;
}

.premium-price {
    font-size: 4.5rem;
    margin-bottom: 10px;
}

.urgency-text {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 10px;
    font-weight: 600;
}

.discount-red {
    color: #ff0000;
    font-weight: 800;
}

/* Responsive Pricing */
@media (max-width: 900px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .premium-plan {
        transform: none;
        order: -1;
        margin-bottom: 30px;
    }

    .pricing-main-title {
        font-size: 1.8rem;
    }
}


/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(5, 5, 7, 1) 100%);
    border-top: 1px solid var(--glass-border);
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: rgba(20, 20, 30, 0.8);
    color: #fff;
    border: 1px solid var(--glass-border);
    padding: 20px 25px;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.faq-question:hover {
    background: rgba(30, 30, 45, 0.9);
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.15);
}

.faq-item.active .faq-question {
    background: rgba(30, 30, 45, 0.95);
    border-color: var(--primary);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: rgba(15, 15, 20, 0.95);
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
    border: 1px solid var(--glass-border);
    border-top: none;
    border-radius: 0 0 8px 8px;
    backdrop-filter: blur(10px);
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 25px;
    border-color: var(--primary);
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 12px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 18px 20px;
        gap: 15px;
    }

    .faq-icon {
        font-size: 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}