:root {
    --primary: #4A5BFF;
    --primary-hover: #3D47D4;
    --primary-dark: #2F3B99;
    --secondary: #FF5733;
    --success: #00D084;
    --warning: #FFC107;
    --danger: #FF3366;
    --bg-dark: #0F1419;
    --bg-darker: #0A0E13;
    --bg-card: #1A1F2E;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B8CC;
    --border-color: rgba(74, 91, 255, 0.2);
    --gradient-primary: linear-gradient(135deg, #4A5BFF 0%, #6B7CFF 100%);
    --gradient-secondary: linear-gradient(135deg, #FF5733 0%, #FF7555 100%);
    --gradient-success: linear-gradient(135deg, #00D084 0%, #00F5A0 100%);
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(74, 91, 255, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-width: 320px;
}

/* Global text overflow prevention */
h1, h2, h3, h4, h5, h6, p, span, a, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Prevent horizontal scroll from images and videos */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Animated background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 91, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 87, 51, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 208, 132, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #4A5BFF 0%, #6B7CFF 50%, #8B9DFF 100%);
    z-index: 9999;
    transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 20px rgba(74, 91, 255, 0.8),
        0 0 40px rgba(74, 91, 255, 0.5),
        0 2px 10px rgba(74, 91, 255, 0.6);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(74, 91, 255, 0.8),
            0 0 40px rgba(74, 91, 255, 0.5),
            0 2px 10px rgba(74, 91, 255, 0.6);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(74, 91, 255, 1),
            0 0 60px rgba(74, 91, 255, 0.7),
            0 2px 15px rgba(74, 91, 255, 0.8);
    }
}

/* Progress bar glow effect on hover near top */
body:hover .scroll-progress {
    height: 5px;
}

/* ===== HEADER ===== */
header {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 100;
    padding: 1rem 2rem;
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.6rem 1rem;
    }
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }
}

.logo:hover {
    opacity: 0.8;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.btn {
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    line-height: 1.6;
    gap: 0.5rem;
}

.btn i {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transform: translateY(-2px);
}

.btn i.bi-discord {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 91, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 91, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: rgba(74, 91, 255, 0.1);
}

.hover-text {
    transition: all 0.4s ease;
    position: relative;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .hover-text {
        white-space: normal;
    }
}

.btn-text-default,
.btn-text-hover {
    transition: opacity 0.4s ease;
}

.btn-text-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 100%;
}

.btn-text-default {
    opacity: 1;
}

.hover-text:hover .btn-text-default {
    opacity: 0;
}

.hover-text:hover .btn-text-hover {
    opacity: 1;
}

.hover-invert:hover {
    background: var(--gradient-primary) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(74, 91, 255, 0.6) !important;
    border-color: transparent !important;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 91, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 87, 51, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: -12rem auto 0;
    padding: 2rem;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero .subtitle {
        font-size: 1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem !important;
    }
    
    .hero .subtitle {
        font-size: 0.9rem !important;
    }
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .btn-large {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .btn-large {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* ===== SCROLL DOWN INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.scroll-indicator:hover {
    opacity: 1;
}

/* Mouse Icon */
.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
    animation: mouse-bounce 2s infinite;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel-scroll 2s infinite;
}

@keyframes mouse-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes wheel-scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

/* Arrow Down Animation */
.arrow-down {
    display: flex;
    flex-direction: column;
    gap: -2px;
    align-items: center;
    margin-left: 2px;
}

.arrow-down span {
    display: block;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    animation: arrow-down 2s infinite;
}

.arrow-down span:nth-child(1) {
    animation-delay: 0s;
}

.arrow-down span:nth-child(2) {
    animation-delay: 0.15s;
}

.arrow-down span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes arrow-down {
    0% {
        opacity: 0;
        transform: translateY(-10px) rotate(45deg);
    }
    50% {
        opacity: 1;
        transform: translateY(0) rotate(45deg);
    }
    100% {
        opacity: 0;
        transform: translateY(10px) rotate(45deg);
    }
}

/* Hide scroll indicator on small screens or when scrolled */
@media (max-height: 700px) {
    .scroll-indicator {
        display: none;
    }
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .benefits {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .benefits {
        padding: 2rem 1rem;
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 4rem 2rem;
    width: 100%;
    max-width: 100vw;
    background: var(--bg-dark);
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 2rem 1rem;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    animation: slideInUp 0.6s ease-out backwards;
    cursor: default;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(74, 91, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.live-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
    padding: 0.35rem 0.6rem;
    border-radius: 4px;
    animation: pulseLive 2s ease-in-out infinite;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

@keyframes pulseLive {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

.benefits {
    padding: 4rem 2rem;
    width: 100%;
    max-width: 100vw;
    background: var(--bg-dark);
    overflow-x: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
    animation: slideInUp 0.6s ease-out backwards;
    cursor: default;
}

.benefit-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(74, 91, 255, 0.3), 0 0 20px rgba(74, 91, 255, 0.1);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(74, 91, 255, 0.03) 100%);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
    .benefit-card h3 {
        font-size: 1.05rem;
    }
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .benefit-card p {
        font-size: 0.9rem;
    }
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 4rem 2rem;
    width: 100%;
    max-width: 100vw;
    background: var(--bg-darker);
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .products {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .products {
        padding: 2rem 1rem;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    animation: slideInUp 0.6s ease-out backwards;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(74, 91, 255, 0.3), 0 0 30px rgba(74, 91, 255, 0.1);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(74, 91, 255, 0.05) 100%);
}

.product-header {
    padding: 1.5rem;
    background: rgba(74, 91, 255, 0.1);
    border-bottom: 1px solid var(--border-color);
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
    .product-name {
        font-size: 1.1rem;
    }
}

.product-category {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
}

.product-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.product-action {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.product-action button {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-action .btn-view {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.product-action .btn-view:hover {
    background: rgba(74, 91, 255, 0.1);
}

/* ===== HOW TO BUY SECTION ===== */
.how-to-buy {
    padding: 4rem 2rem;
    width: 100%;
    max-width: 100vw;
    background: var(--bg-dark);
    overflow-x: hidden;
}

.how-to-buy h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    animation: slideInUp 0.6s ease-out backwards;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    color: white;
    transition: all 0.3s ease;
}

.step-glow {
    opacity: 0.4;
    box-shadow: 0 0 0 0 rgba(74, 91, 255, 0.3);
}

.step-glow.active {
    opacity: 1;
    animation: stepPulse 0.6s ease-out;
    box-shadow: 0 0 20px rgba(74, 91, 255, 0.8);
}

@keyframes stepPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 91, 255, 0.8);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(74, 91, 255, 0.4);
    }
}

.step h3 {
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== YOUTUBE SECTION ===== */
.youtube-section {
    padding: 4rem 2rem;
    width: 100%;
    max-width: 100vw;
    background: var(--bg-darker);
    text-align: center;
    overflow-x: hidden;
}

.youtube-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.youtube-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    animation: slideInUp 0.6s ease-out backwards;
}

.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 4rem 2rem;
    width: 100%;
    max-width: 100vw;
    text-align: center;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow-x: hidden;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 4rem 2rem;
    width: 100%;
    max-width: 100vw;
    background: var(--bg-darker);
    overflow-x: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    animation: slideInUp 0.6s ease-out backwards;
    cursor: default;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(74, 91, 255, 0.2);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Custom emoji in testimonials */
.emoji-custom {
    width: 32px !important;
    height: 32px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 4px !important;
    object-fit: contain;
    border: none !important;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.emoji-custom:hover {
    transform: scale(2);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 4rem 2rem;
    width: 100%;
    max-width: 100vw;
    background: transparent;
    overflow-x: hidden;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(26, 35, 126, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease-out backwards;
    outline: none;
}

.faq-item:hover {
    border-color: var(--primary);
    background: rgba(26, 35, 126, 0.25);
}

.faq-item:focus,
.faq-item:focus-visible {
    outline: none;
    border-color: var(--primary);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.3s ease;
    gap: 1rem;
    outline: none;
}

.faq-question:hover {
    background: rgba(74, 91, 255, 0.05);
}

.faq-question:focus,
.faq-question:focus-visible {
    outline: none;
}

.faq-question span:first-child {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.faq-question span:first-child i {
    font-size: 1.4em;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 95vh;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 100%;
        margin: 0.5rem;
        border-radius: 8px;
    }
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--primary);
}

/* ===== VIDEO PLAYER (TUTORIAL) ===== */
.video-player-container {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.video-player-container video {
    width: 100%;
    display: block;
    max-height: 500px;
}

.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(74, 91, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 91, 255, 0.6);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.custom-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(74, 91, 255, 1);
    box-shadow: 0 6px 30px rgba(74, 91, 255, 0.8);
}

.custom-play-button i {
    color: white;
    font-size: 2.5rem;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .video-player-container video {
        max-height: 350px;
    }
    
    .custom-play-button {
        width: 70px;
        height: 70px;
    }
    
    .custom-play-button i {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .video-player-container video {
        max-height: 250px;
    }
    
    .video-player-container {
        border-radius: 8px;
    }
    
    .custom-play-button {
        width: 60px;
        height: 60px;
    }
    
    .custom-play-button i {
        font-size: 2rem;
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(74, 91, 255, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(74, 91, 255, 0.6);
}

.back-to-top:active {
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem 1rem;
    color: var(--text-secondary);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    animation: slideInUp 0.6s ease-out backwards;
}

.footer-section:nth-child(1) h4 { animation-delay: 0.1s; }
.footer-section:nth-child(2) h4 { animation-delay: 0.2s; }
.footer-section:nth-child(3) h4 { animation-delay: 0.3s; }
.footer-section:nth-child(4) h4 { animation-delay: 0.4s; }

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 91, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary);
    margin-bottom: 0;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(74, 91, 255, 0.1);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    animation: slideInUp 0.5s ease-out backwards;
    cursor: default;
}

.badge:hover {
    background: rgba(74, 91, 255, 0.2);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== CUSTOM NUMBER ICONS ===== */
.step-icon {
    min-width: 32px;
    width: 32px;
    height: 32px;
    cursor: default;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    box-shadow: 0 4px 12px rgba(74, 91, 255, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    animation: slideInUp 0.5s ease-out backwards;
}

.step-icon::before {
    content: attr(data-number);
    position: relative;
    z-index: 1;
}

.step-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(74, 91, 255, 0.5);
}

/* Animated gradient background */
.step-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6B7CFF 0%, #4A5BFF 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.step-icon:hover::after {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */

/* Tablet Landscape and Medium Screens (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    section h2 {
        font-size: 2rem;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        z-index: 9999;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 90vh;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 1rem;
        margin: -4rem auto 0;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        word-break: break-word;
    }

    .hero .subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .btn-large {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        white-space: normal;
    }

    /* Stats Section Mobile */
    .stats-section {
        padding: 2rem 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Benefits Mobile */
    .benefits {
        padding: 2rem 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    /* Products Mobile */
    .products {
        padding: 2rem 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 2rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Section Titles Mobile */
    section h2 {
        font-size: 1.8rem;
        padding: 1rem 1.5rem;
        margin-bottom: 2rem !important;
    }

    /* Steps Mobile */
    .how-to-buy {
        padding: 2rem 1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 2rem 1rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .badge {
        width: 100%;
        text-align: center;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* YouTube Section Mobile */
    .youtube-section {
        padding: 2rem 1rem;
    }

    .apresentacao-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Scroll Indicator Mobile */
    .scroll-indicator {
        bottom: 80px;
        transform: translateX(-50%) scale(0.85);
    }

    .mouse {
        width: 22px;
        height: 36px;
    }

    .arrow-down span {
        width: 10px;
        height: 10px;
    }

    /* Back to Top Mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
    }

    .hero-content {
        margin: -2rem auto 0;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero .subtitle {
        font-size: 0.85rem;
    }

    .scroll-indicator {
        bottom: 60px;
        transform: translateX(-50%) scale(0.75);
    }

    section h2 {
        font-size: 1.5rem !important;
        padding: 0.75rem 1rem !important;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.5rem;
    }
}

/* Detail Pages Responsive Improvements */
@media (max-width: 1024px) {
    /* Product Hero Sections */
    .product-hero {
        padding: 8rem 2rem 4rem;
    }

    .product-hero h1 {
        font-size: 2.5rem;
    }

    .product-hero .price {
        font-size: 2.5rem;
    }

    /* Product Details Grid */
    .product-details {
        padding: 3rem 1.5rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Features List */
    .features-list {
        grid-template-columns: 1fr;
    }

    /* Server/Config Cards */
    .servers-grid,
    .configs-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Product Hero Mobile */
    .product-hero {
        padding: 7rem 1rem 3rem;
        min-height: 70vh;
    }

    .product-hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        word-break: break-word;
    }

    .product-hero .subtitle {
        font-size: 0.95rem;
        margin: 1rem 0;
    }

    .product-hero .price {
        font-size: 2rem;
        margin: 1.5rem 0;
    }

    .product-hero .price small {
        font-size: 0.9rem;
    }

    /* Detail Sections Mobile */
    .product-details {
        padding: 2rem 1rem;
    }

    .product-details h2 {
        font-size: 1.6rem !important;
        padding: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .product-details h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 1rem;
    }

    /* Content Boxes Mobile */
    .detail-section > div,
    .features-box,
    .info-box {
        padding: 1.5rem;
        border-radius: 12px;
    }

    /* Lists Mobile */
    .features-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .features-list li,
    .detail-section ul li {
        font-size: 0.95rem;
        padding: 0.75rem;
    }

    /* Server Cards Mobile */
    .servers-grid,
    .configs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .server-card,
    .config-card {
        padding: 1.5rem;
    }

    .server-card h4,
    .config-card h4 {
        font-size: 1.1rem;
    }

    /* Badges Mobile */
    .server-card .badge,
    .config-card .badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    /* Purchase Section Mobile */
    .purchase-section {
        padding: 2rem 1rem;
        margin: 2rem 1rem;
        border-radius: 12px;
    }

    .purchase-section h3 {
        font-size: 1.3rem;
    }

    .purchase-section .btn-large {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices - Detail Pages */
    .product-hero {
        padding: 6rem 1rem 2rem;
        min-height: 60vh;
    }

    .product-hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .product-hero .subtitle {
        font-size: 0.85rem;
    }

    .product-hero .price {
        font-size: 1.75rem;
        margin: 1rem 0;
    }

    .product-details h2 {
        font-size: 1.4rem !important;
        padding: 0.75rem !important;
    }

    .product-details h3 {
        font-size: 1.1rem;
    }

    .detail-section > div {
        padding: 1rem;
    }

    .features-list li {
        font-size: 0.875rem;
        padding: 0.625rem;
    }

    .server-card,
    .config-card {
        padding: 1.25rem;
    }

    .purchase-section {
        margin: 1.5rem 0.5rem;
        padding: 1.5rem 1rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(74, 91, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(74, 91, 255, 0.8);
    }
}

@keyframes float-smooth {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Apply animations to specific elements */
.hero-content {
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero .subtitle {
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    animation: slideInUp 0.8s ease-out 0.6s both;
}

/* Gradient animation for titles */
section h2 {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Stagger animations for grid items */
.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

.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:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }
.faq-item:nth-child(6) { animation-delay: 0.35s; }
.faq-item:nth-child(7) { animation-delay: 0.4s; }
.faq-item:nth-child(8) { animation-delay: 0.45s; }

.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }

.badge:nth-child(1) { animation-delay: 0.1s; }
.badge:nth-child(2) { animation-delay: 0.15s; }
.badge:nth-child(3) { animation-delay: 0.2s; }
.badge:nth-child(4) { animation-delay: 0.25s; }
.badge:nth-child(5) { animation-delay: 0.3s; }

/* ===== SECTION TITLES ===== */
section h2 {
    position: relative;
    display: block;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem !important;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 1.5rem 3rem;
    border: 2px solid rgba(74, 91, 255, 0.5);

/* Hero emoji responsivo */
.hero-content > div:first-child {
    font-size: 4rem;
}

@media (max-width: 768px) {
    .hero-content > div:first-child {
        font-size: 3rem !important;
    }
}

@media (max-width: 480px) {
    .hero-content > div:first-child {
        font-size: 2.5rem !important;
    }
}

/* Texts responsivos dentro do hero */
.hero-content p {
    max-width: 100%;
}

@media (max-width: 480px) {
    .hero-content p {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 768px) {
    section h2 {
        font-size: 2rem;
        padding: 1.2rem 2rem;
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 480px) {
    section h2 {
        font-size: 1.6rem;
        padding: 1rem 1.5rem;
        margin-bottom: 1.5rem !important;
    }
}
    border-radius: 12px;
    transition: all 0.3s ease;
}

section h2:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(74, 91, 255, 0.3);
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-8deg);
    }
    75% {
        transform: rotate(8deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(74, 91, 255, 0));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 15px rgba(74, 91, 255, 0.8));
    }
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

@keyframes moneyFall {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    10% {
        transform: translateY(-12px) rotate(-4deg);
    }
    20% {
        transform: translateY(0) rotate(0deg) scaleY(0.95);
    }
    25% {
        transform: translateY(-5px) rotate(2deg) scaleY(1);
    }
    35% {
        transform: translateY(0) rotate(0deg) scaleY(0.98);
    }
    40% {
        transform: translateY(-2px) rotate(-1deg) scaleY(1);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes clapperBeat {
    0% {
        transform: translateY(0) scaleY(1);
    }
    8% {
        transform: translateY(-3px) scaleY(0.85);
    }
    12% {
        transform: translateY(-3px) scaleY(1);
    }
    16% {
        transform: translateY(-3px) scaleY(0.85);
    }
    20% {
        transform: translateY(-3px) scaleY(1);
    }
    30% {
        transform: translateY(0) scaleY(1);
    }
    100% {
        transform: translateY(0) scaleY(1);
    }
}

/* Animações individuais por card */
.benefit-card:nth-child(1) .benefit-icon {
    animation: pulse 2s ease-in-out infinite;
}

.benefit-card:nth-child(2) .benefit-icon {
    animation: clapperBeat 2.5s ease-out infinite;
}

.benefit-card:nth-child(3) .benefit-icon {
    animation: spin 4s linear infinite;
}

.benefit-card:nth-child(4) .benefit-icon {
    animation: moneyFall 2s ease-in-out infinite;
}

.benefit-card:nth-child(5) .benefit-icon {
    animation: shake 0.5s ease-in-out infinite;
    transform-origin: center bottom;
}

.benefit-card:nth-child(6) .benefit-icon {
    animation: slideRight 2s ease-in-out infinite;
}

.benefit-card,
.product-card,
.step {
    animation: slideInUp 0.6s ease-out forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== APRESENTAÇÃO DOS PRODUTOS (migrado do HTML) ===== */
.apresentacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    align-items: start;
}
.apresentacao-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.05));
    border: 1px solid rgba(255,255,255,0.03);
    padding: 0.75rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6), 0 0 20px rgba(74,91,255,0.04);
    display: flex;
    flex-direction: column;
    animation: slideInUp 0.6s ease-out backwards;
    transition: all 0.3s ease;
    cursor: default;
}

.apresentacao-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74,91,255,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.8), 0 0 30px rgba(74,91,255,0.2);
}

.apresentacao-card:nth-child(1) { animation-delay: 0.1s; }
.apresentacao-card:nth-child(2) { animation-delay: 0.2s; }
.apresentacao-card:nth-child(3) { animation-delay: 0.3s; }
.apresentacao-card:nth-child(4) { animation-delay: 0.4s; }
.apresentacao-card:nth-child(5) { animation-delay: 0.5s; }
.apresentacao-card:nth-child(6) { animation-delay: 0.6s; }
.apresentacao-card:nth-child(7) { animation-delay: 0.7s; }
.apresentacao-card:nth-child(8) { animation-delay: 0.8s; }
.product-title {
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin: 0.5rem 0 0.75rem 0;
    font-size: 1.05rem;
    letter-spacing: 0.6px;
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-title i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.apresentacao-card:hover .product-title {
    color: #5D6EFF;
    text-shadow: 0 0 20px rgba(74,91,255,0.6);
    transform: scale(1.05);
}

.apresentacao-card:hover .product-title i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(74,91,255,0.8));
}
.video-wrapper { position: relative; width: 100%; padding-bottom: 56.25%; border-radius: 10px; overflow: hidden; background: var(--bg-card); }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width:560px) {
    .product-title { font-size: 0.98rem; }
}

/* ===== TERMS SECTION ===== */
.terms-section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background: linear-gradient(180deg, #0A0E13 0%, #0F1419 100%);
    padding: 4rem 2rem;
    position: relative;
}

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    animation: slideInUp 0.8s ease-out;
}

.terms-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.terms-block {
    background: rgba(74, 91, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out forwards;
    cursor: default;
}
    opacity: 0;
}

.terms-block:nth-child(1) { animation-delay: 0.1s; }
.terms-block:nth-child(2) { animation-delay: 0.2s; }
.terms-block:nth-child(3) { animation-delay: 0.3s; }
.terms-block:nth-child(4) { animation-delay: 0.4s; }
.terms-block:nth-child(5) { animation-delay: 0.5s; }
.terms-block:nth-child(6) { animation-delay: 0.6s; }
.terms-block:nth-child(7) { animation-delay: 0.7s; }
.terms-block:nth-child(8) { animation-delay: 0.8s; }
.terms-block:nth-child(9) { animation-delay: 0.9s; }
.terms-block:nth-child(10) { animation-delay: 1s; }
.terms-block:nth-child(11) { animation-delay: 1.1s; }

.terms-block:hover {
    background: rgba(74, 91, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(74, 91, 255, 0.2);
}

.terms-block h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.terms-block ul {
    list-style: none;
    padding: 0;
}

.terms-block li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
}

.terms-block li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.terms-block li strong {
    color: var(--text-primary);
}

.terms-block li ul {
    margin-top: 0.5rem;
    margin-left: 1rem;
}

.terms-block li ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
}

.terms-summary {
    background: linear-gradient(135deg, rgba(74, 91, 255, 0.08) 0%, rgba(255, 87, 51, 0.08) 100%);
    border: 2px solid var(--primary);
}

.terms-summary li:before {
    content: '✓';
    color: var(--success);
}

.terms-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, rgba(255, 87, 51, 0.08) 100%);
    border: 2px solid var(--warning);
}

.terms-warning h3 {
    color: var(--warning);
}

.terms-warning p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Responsive Terms Section */
@media (max-width: 768px) {
    .terms-section {
        padding: 2.5rem 1.5rem;
    }

    .terms-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .terms-block {
        padding: 1.5rem;
    }

    .terms-block h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .terms-block li {
        padding-left: 1.25rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 480px) {
    .terms-section {
        padding: 1.5rem 1rem;
    }

    .terms-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .terms-block {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .terms-block h3 {
        font-size: 1.05rem;
        margin-bottom: 0.8rem;
    }

    .terms-block li {
        padding-left: 1rem;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
}
