/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 2s cubic-bezier(0.2, 0.8, 0.2, 1);
    visibility: hidden;
    filter: blur(5px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    filter: blur(0);
}

/* RESET & BASE - Dark Theme Foundation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Urbanist', sans-serif;
    background-color: #080808;
    background-image: 
        linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 40%, #0d0d0d 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise" seed="2"/><feColorMatrix in="noise" type="saturate" values="0.3"/></filter><rect width="100" height="100" fill="%23000000" filter="url(%23noise)" opacity="0.15"/></svg>');
    background-attachment: fixed;
    color: #d9d9d9;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    animation: ambientShift 80s ease-in-out infinite;
}

img {
    max-width: 260px;
    width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   ANIMATIONS - Subtle & Professional
   ============================================ */
@keyframes floatSubtle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes floatDelicate {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes softGlow {
    0%, 100% {
        text-shadow: 0 0 8px rgba(0, 255, 136, 0.4), 0 0 16px rgba(0, 255, 136, 0.2);
    }
    50% {
        text-shadow: 0 0 12px rgba(0, 255, 136, 0.5), 0 0 24px rgba(0, 255, 136, 0.3);
    }
}

@keyframes shimmer {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.2), 0 8px 20px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.3), 0 8px 20px rgba(0, 0, 0, 0.4);
    }
}

@keyframes checkmarkFade {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Ambient Animations - Slow Environmental Movement */
@keyframes ambientShift {
    0%, 100% {
        background-position: 0% 0%;
        filter: brightness(1);
    }
    50% {
        background-position: 10% 10%;
        filter: brightness(1.08);
    }
}

@keyframes environmentalGlow {
    0%, 100% {
        box-shadow: inset 0 0 60px rgba(184, 134, 11, 0.05), 0 20px 50px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: inset 0 0 80px rgba(184, 134, 11, 0.08), 0 20px 50px rgba(0, 0, 0, 0.5);
    }
}

@keyframes floatingCloud {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -12px); }
}

@keyframes badgeShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.premium .badge {
    position: absolute;
    top: 22px;
    font-size: 0.75rem;
    background: linear-gradient(90deg, #d4af37, #fff, #d4af37);
    background-size: 200% auto;
    animation: floatingCloud 4s ease-in-out infinite, badgeShimmer 3s linear infinite !important;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.premium .current-price {
    font-size: 3.2rem;
    animation: textGlow 2.5s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.6); }
    50% { text-shadow: 0 0 25px rgba(212, 175, 55, 0.9), 0 0 35px rgba(212, 175, 55, 0.4); }
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.9) translateX(40px); filter: blur(10px); }
    100% { opacity: 0.4; transform: scale(1) translateX(0); filter: blur(1px); }
}

@keyframes depthOscillation {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    }
    50% {
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
    }
}

@keyframes floatingJump {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

@keyframes shimmerSlow {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn-catchy {
    background: linear-gradient(90deg, #d4af37, #f1c40f, #d4af37);
    background-size: 200% auto;
    animation: floatingJump 4s ease-in-out infinite, shimmerSlow 6s linear infinite !important;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6), 0 12px 30px rgba(0,0,0,0.5) !important;
    transition: all 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.btn-catchy:hover {
    transform: translateY(-12px) scale(1.08) !important;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 15px 40px rgba(212, 175, 55, 0.3) !important;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.section {
    padding: 80px 0;
    animation: fadeIn 0.8s ease-out;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #aa8c2a 100%);
    background-color: #d4af37;
    color: #0a0e27;
    font-weight: 700;
    padding: 18px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 2s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 8px 20px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 350px;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 12px 30px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background: linear-gradient(135deg, #4a6fa5 0%, #2d4a6f 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(74, 111, 165, 0.3), 0 8px 20px rgba(0, 0, 0, 0.5);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5a7fb5 0%, #3d5a7f 100%);
    box-shadow: 0 0 25px rgba(74, 111, 165, 0.5), 0 12px 25px rgba(74, 111, 165, 0.15);
    transform: translateY(-3px) scale(1.03);
}

.highlight {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.logo-marca {
    max-width: 140px;
    width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out;
}

h1 { 
    font-size: 2.8rem; 
    font-weight: 800; 
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

h2 { 
    font-size: 2rem; 
    font-weight: 700;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

h3 { 
    font-size: 1.6rem; 
    font-weight: 700;
    color: #d4af37;
}

p { 
    margin-bottom: 15px; 
    font-size: 1.05rem; 
    color: #b0b0b0;
    font-weight: 400;
}

strong {
    color: #d4af37;
    font-weight: 600;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, 
        rgba(184, 134, 11, 0.08) 0%, 
        rgba(74, 111, 165, 0.04) 50%, 
        #080808 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    animation: environmentalGlow 12s ease-in-out infinite;
}

.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    color: #a0aec0;
    font-weight: 700;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-logo-box {
    padding: 12px 24px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.9rem;
    background: rgba(212, 175, 55, 0.08);
    transition: all 2s ease;
    color: #d4af37;
}

.hero-logo-box:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out, depthOscillation 10s ease-in-out infinite 1s;
}

.hero .subheadline {
    font-size: 1.2rem;
    color: #a8a8a8;
    max-width: 800px;
    margin: 0 auto 50px;
    animation: fadeInUp 0.9s ease-out 0.1s both;
}

/* ============================================
   PAIN BLOCK
   ============================================ */
.pain {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.pain-item {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, rgba(74, 111, 165, 0.05) 100%);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 4px solid #d4af37;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 20px;
    animation: floatDelicate 5s ease-in-out infinite;
    transition: all 2s ease;
}

.pain-item:hover {
    border-color: #d4af37;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.pain-icon {
    font-size: 1.8rem;
    color: #ff0066;
    min-width: 50px;
}

.pain-item p {
    color: #e0e6ff;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* ============================================
   SOLUTION BLOCK
   ============================================ */
.solution {
    background: #080808;
}

.solution h2 {
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.solution > .container > p {
    font-size: 1.15rem;
    margin-bottom: 50px;
    color: #9a9a9a;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    padding: 40px 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(74, 111, 165, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 2s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.feature-box:nth-child(1) { animation-delay: 0.1s; }
.feature-box:nth-child(2) { animation-delay: 0.2s; }
.feature-box:nth-child(3) { animation-delay: 0.3s; }

.feature-box:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2), 0 0 30px rgba(212, 175, 55, 0.1);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(74, 111, 165, 0.1) 100%);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    animation: floatDelicate 5s ease-in-out infinite;
}

.feature-box h3 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.feature-box p {
    color: #9a9a9a;
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(74, 111, 165, 0.04) 100%);
    border-radius: 16px;
    padding: 50px 35px;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    animation: fadeInUp 0.8s ease-out, environmentalGlow 10s ease-in-out 1s infinite;
    transition: all 2s ease;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 70%);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15), 0 0 40px rgba(212, 175, 55, 0.1);
}

.product-card.premium {
    border: 2px solid #d4af37;
    animation: fadeInUp 0.8s ease-out, floatSubtle 5s ease-in-out infinite;
}

.product-card.premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05), transparent);
    pointer-events: none;
}

.badge {
    background: linear-gradient(135deg, #d4af37 0%, #c29c1f 100%);
    color: #080808;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.product-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.product-card > p:first-of-type {
    color: #b8c5d6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #d4af37;
    margin: 30px 0;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
}

.price .old-price {
    font-size: 1.1rem;
    color: rgba(122, 139, 160, 0.6);
    font-weight: 400;
    text-decoration: line-through;
    display: block;
    margin-bottom: -5px;
}

.price .current-price {
    display: block;
    color: #d4af37;
}

.product-card.premium .price .current-price {
    color: #e5c158; /* Destaque dourado queimado */
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    font-size: 2.8rem;
}

.product-card.premium {
    border: 2px solid #d4af37;
    animation: fadeInUp 0.8s ease-out, floatSubtle 5s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.12) 0%, rgba(74, 111, 165, 0.06) 100%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(212, 175, 55, 0.15);
    transform: scale(1.02);
    z-index: 2;
    padding-top: 60px;
}

/* Order Bump Styling */
.order-bump {
    margin: 25px auto 0;
    max-width: 350px;
    background: rgba(25, 25, 25, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 22px;
    text-align: left;
    animation: fadeIn 0.6s ease-out;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.order-bump:hover {
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    background: rgba(30, 30, 30, 1);
}

.order-bump-checkbox {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 2s ease;
    background: rgba(0,0,0,0.2);
}

.order-bump-checkbox:checked {
    background-color: #d4af37;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.order-bump-checkbox:checked::after {
    content: "✓";
    position: absolute;
    color: #080808;
    font-size: 16px;
    font-weight: 800;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.order-bump-content {
    flex: 1;
    cursor: pointer;
}

.order-bump-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-bump-desc {
    color: #b0b0b0;
    font-size: 0.88rem;
    line-height: 1.5;
    display: block;
    margin-bottom: 12px;
}

.order-bump-price {
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.order-bump-price .old {
    text-decoration: line-through;
    color: rgba(122, 139, 160, 0.6);
    font-weight: 400;
}

.order-bump-price .new {
    color: #d4af37;
    padding: 2px 6px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.product-features {
    margin: 30px 0 40px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.product-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    color: #d1d8e8;
    font-size: 1.05rem;
    font-weight: 500;
}

.product-features li::before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    animation: checkmarkFade 0.7s ease-out forwards;
}

.product-features li:nth-child(1)::before { animation-delay: 0.2s; }
.product-features li:nth-child(2)::before { animation-delay: 0.4s; }
.product-features li:nth-child(3)::before { animation-delay: 0.6s; }
.product-features li:nth-child(4)::before { animation-delay: 0.8s; }

.alert-text {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 25px;
    border-left: 4px solid #ffc107;
    position: relative;
    z-index: 1;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison {
    overflow-x: auto;
    margin-top: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, rgba(74, 111, 165, 0.02) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

th, td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: #a8a8a8;
}

th {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(74, 111, 165, 0.1) 100%);
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

td:first-child, th:first-child {
    text-align: left;
    font-weight: 600;
    color: #d1d1d1;
}

/* FAQ Styling */
.faq {
    background: #080808;
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
    text-align: left;
}

.faq-item {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05) 0%, rgba(74, 111, 165, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 2s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(184, 134, 11, 0.08);
    transform: translateX(5px);
}

.faq-question {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-answer {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.testimonials {
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonials h2 {
    color: #ffffff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(74, 111, 165, 0.04) 100%);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    font-style: italic;
    transition: all 2s ease;
    animation: slideInLeft 0.8s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation-fill-mode: both;
}

.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:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15), 0 0 30px rgba(212, 175, 55, 0.1);
}

.testimonial-card p {
    color: #a8a8a8;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-card span {
    color: #7a8ba0;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 600;
}

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee {
    background: #080808;
}

.guarantee-box {
    border: 2px dashed rgba(212, 175, 55, 0.4);
    padding: 50px;
    border-radius: 16px;
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(74, 111, 165, 0.02) 100%);
    animation: fadeInUp 0.8s ease-out;
    transition: all 2s ease;
}

.guarantee-box:hover {
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.guarantee-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    animation: floatDelicate 5s ease-in-out infinite;
}

.guarantee-box h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.guarantee-box p {
    color: #9a9a9a;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.guarantee-box small {
    color: #7a7a7a;
    font-size: 0.9rem;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 100px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.final-cta h2 {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.final-cta > .container > p {
    font-size: 1.15rem;
    margin-bottom: 50px;
    color: #9a9a9a;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   AUDIO PREVIEWS SECTION
   ============================================ */
.audio-previews {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    pointer-events: auto;
}

.audio-previews h2 {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    margin-bottom: 15px;
}

.audio-previews > .container > p {
    font-size: 1.15rem;
    margin-bottom: 50px;
    color: #9a9a9a;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.audio-item {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(74, 111, 165, 0.05) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 2s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    pointer-events: auto !important;
}

.audio-item:nth-child(1) { animation-delay: 0.1s; }
.audio-item:nth-child(2) { animation-delay: 0.2s; }
.audio-item:nth-child(3) { animation-delay: 0.3s; }
.audio-item:nth-child(4) { animation-delay: 0.4s; }
.audio-item:nth-child(5) { animation-delay: 0.5s; }
.audio-item:nth-child(6) { animation-delay: 0.6s; }

.audio-item:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(74, 111, 165, 0.08) 100%);
}

.audio-title {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.audio-description {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.audio-player {
    width: 100%;
    height: 38px;
    border-radius: 6px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    pointer-events: auto !important;
}

.audio-player:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.audio-preview-note {
    text-align: center;
    padding: 25px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    margin-bottom: 30px;
}

.audio-preview-note p {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.audio-preview-note small {
    color: #9a9a9a;
    font-size: 0.95rem;
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: #707070;
    padding: 50px 0;
    font-size: 0.95rem;
}

footer p {
    color: #707070;
    margin-bottom: 10px;
}

footer .hero-logos {
    margin-bottom: 20px;
    gap: 15px;
}

footer .hero-logo-box {
    padding: 8px 16px;
    border-color: rgba(212, 175, 55, 0.2);
    background: transparent;
    font-size: 0.85rem;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison {
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.comparison h2 {
    color: #ffffff;
    margin-bottom: 50px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.comparison-column {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(74, 111, 165, 0.04) 100%);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    transition: all 2s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.comparison-column:nth-child(1) { animation-delay: 0.1s; }
.comparison-column:nth-child(2) { animation-delay: 0.2s; }

.comparison-column:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15), 0 0 30px rgba(212, 175, 55, 0.1);
}

.comparison-column h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: #b0b0b0;
    font-size: 0.95rem;
    font-weight: 500;
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-item-name {
    color: #d9d9d9;
}

.comparison-item-count {
    color: #d4af37;
    font-weight: 700;
    font-size: 1rem;
}

/* ============================================
   AUDIO SECTION
   ============================================ */
.audio-preview {
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.audio-preview h2 {
    color: #ffffff;
    margin-bottom: 40px;
}

.audio-player-container {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(74, 111, 165, 0.04) 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out;
}

.audio-player-title {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.audio-player {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.audio-player:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.audio-player-description {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-top: 15px;
    text-align: center;
    line-height: 1.6;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.8rem; }
    .hero h1 { font-size: 2.5rem; }
    .price { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.1rem; font-weight: 800; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    
    .section { padding: 60px 0; }
    .hero { padding: 70px 0 50px; }
    .hero h1 { font-size: 2.2rem; }
    .hero .subheadline { font-size: 1.1rem; margin-bottom: 35px; }
    
    .btn { width: 100%; padding: 16px 24px; font-size: 1rem; }
    
    .product-card { padding: 35px 20px; }
    .price { font-size: 2.2rem; }
    
    .guarantee-box { padding: 35px 25px; }
    
    .feature-box { padding: 30px 20px; }
    
    .comparison-grid { gap: 18px; }
    .comparison-column { padding: 25px; }
    .comparison-column p { font-size: 0.95rem; }
    
    .audio-previews { padding: 60px 0; }
    .audio-grid { gap: 20px; }
    .audio-item { padding: 25px; }
    
    .final-cta { padding: 70px 0; }
    
    footer { padding: 40px 0; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    p { font-size: 0.95rem; }
    
    .container { padding: 0 15px; }
    
    .hero { padding: 50px 0 40px; }
    .hero h1 { font-size: 1.9rem; }
    .hero .subheadline { font-size: 1rem; }
    
    .section { padding: 45px 0; }
    
    .btn { padding: 14px 20px; font-size: 0.95rem; letter-spacing: 0.3px; }
    
    .hero-logos { gap: 12px; margin-bottom: 25px; }
    .hero-logo-box { padding: 10px 18px; font-size: 0.8rem; }
    
    .pain-item { padding: 18px; gap: 12px; }
    .pain-icon { font-size: 1.5rem; }
    
    .product-card { padding: 25px 18px; margin-bottom: 30px; }
    .price { font-size: 2rem; margin: 20px 0; }
    .product-features li { margin-bottom: 12px; font-size: 0.95rem; }
    .product-features li::before { font-size: 1.2rem; margin-right: 10px; }
    
    .alert-text { padding: 12px; font-size: 0.9rem; }
    
    .solution-features { gap: 20px; }
    .feature-box { padding: 22px 18px; }
    .feature-icon { font-size: 2rem; margin-bottom: 12px; }
    
    .guarantee-box { padding: 30px 20px; }
    .guarantee-icon { font-size: 3rem; margin-bottom: 20px; }
    
    .testimonial-grid { gap: 18px; }
    .testimonial-card { padding: 25px; }
    .testimonial-card p { font-size: 0.95rem; }
    
    .comparison { margin-top: 25px; }
    th, td { padding: 12px 8px; font-size: 0.85rem; }
    
    .audio-previews { padding: 50px 0; }
    .audio-grid { grid-template-columns: 1fr; }
    .audio-item { padding: 20px; }
    .audio-title { font-size: 1.1rem; }
    .audio-description { font-size: 0.9rem; }
    .audio-preview-note { padding: 15px; }
    .audio-preview-note p { font-size: 0.95rem; }
    
    .final-cta { padding: 50px 0; }
    .cta-group { gap: 12px; }
    
    footer { padding: 30px 0; font-size: 0.9rem; }
}

/* ============================================
   ACCESSIBILITY & SMOOTH SCROLLING
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
