/* Reset & Base Styles */
:root {
    --primary-color: #FFD700;
    /* Premium Gold/Yellow */
    --primary-hover: #FFC107;
    --bg-dark: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #000000;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(-45deg, #050505, #0a0a0a, #111, #080808);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--text-dark);
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    background-color: #050505;
    overflow: hidden;
}

.hero-bg-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    animation: rotateBg 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge-container {
    margin-bottom: 30px;
}

.badge {
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.pulse-slow {
    animation: pulseSlow 3s infinite;
}

@keyframes pulseSlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.text-white {
    color: #fff;
}

.subheadline {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.subheadline strong {
    color: #fff;
    font-weight: 600;
}

.main-video {
    max-width: 900px;
    margin: 0 auto 50px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.1);
    border-radius: 16px;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-subtext {
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-badges {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badges i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Context Section */
.context-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.context-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.context-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.stat-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.highlight-card {
    border: 1px solid var(--primary-color);
    background: rgba(255, 215, 0, 0.05);
}

.math {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 10px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.4;
}

.check-list li i {
    flex-shrink: 0;
    margin-top: 4px;
}

.check-list li strong {
    color: #fff;
    margin-right: 5px;
    white-space: nowrap;
}

/* Social Proof */
.social-proof-section {
    padding: 80px 0;
    text-align: center;
}

.social-proof-section h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Authority */
.authority-section {
    padding: 80px 0;
    background: #111;
    text-align: center;
}

.authority-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-dark);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

/* Products */
.products-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #222;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #333;
}

.product-card.reverse {
    direction: rtl;
}

.product-card.reverse .product-info {
    direction: ltr;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-desc {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.tech-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}

.specs-list {
    list-style: none;
    margin-top: 20px;
    text-align: left;
}

.specs-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 10px;
}

.specs-list li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.extra-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.benefit-item {
    background: #222;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #333;
}

.benefit-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Shine Effect */
.product-card::before,
.stat-card::before,
.guarantee-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: 0.5s;
}

.product-card:hover::before,
.stat-card:hover::before,
.guarantee-box:hover::before {
    left: 100%;
}

/* Pricing */
.pricing-section {
    padding: 80px 0;
    background: #050505;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 50px auto 0;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid #222;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: visible;
    /* Important for badge */
}

.pricing-card.elite {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
}

.pricing-card:hover {
    transform: scale(1.08);
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.25);
}

.best-value {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.card-body {
    margin-top: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #222;
    padding: 12px 0;
    text-align: left;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-list li span {
    margin-left: auto;
    font-size: 0.85rem;
    opacity: 0.7;
    background: #1a1a1a;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.price-box {
    margin: 30px 0;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #666;
    font-size: 0.9rem;
}

.new-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Guarantee */
.guarantee-section {
    padding: 60px 0;
    background: #111;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #333;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.guarantee-icon i {
    font-size: 4rem;
    color: var(--primary-color);
}

.stars {
    margin-top: 15px;
    color: var(--primary-color);
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #0a0a0a;
}

.accordion-content p {
    padding: 20px;
    color: var(--text-gray);
}

/* Footer */
footer {
    background: #000;
    padding: 60px 0 20px;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-cta {
    margin-bottom: 50px;
}

.whatsapp-button {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
    font-size: 1.1rem;
}

.footer-legal {
    font-size: 0.8rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.brand {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.disclaimer {
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .context-grid,
    .product-card {
        grid-template-columns: 1fr;
    }

    .product-card.reverse {
        direction: ltr;
    }

    .product-card.reverse .product-info {
        direction: ltr;
    }

    .pricing-card.elite {
        transform: none;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .check-list li {
        flex-direction: column;
    }

    .check-list li strong {
        margin-bottom: 5px;
        white-space: normal;
    }
}