/* ================================================
   TITAN GEL OFFICIAL - MAXIMALIST CONVERSION DESIGN
   Premium Brand Experience That Sells
   ================================================ */

/* Fonturile se incarca prin <link rel="preconnect"> + <link rel="stylesheet"> in <head>, pentru performanta. */

:root {
    /* Brand Colors */
    --black: #000;
    --black-rich: #030305;
    --dark: #0a0a0e;
    --dark-card: #111116;
    --dark-elevated: #18181f;
    
    /* Gold - Premium */
    --gold: #d4a439;
    --gold-bright: #ffd700;
    --gold-light: #ffe066;
    --gold-dark: #996515;
    
    /* Urgency Red */
    --red: #ff3b3b;
    --red-bright: #ff5252;
    --red-dark: #cc0000;
    
    /* Success */
    --green: #00d26a;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-100: #f5f5f7;
    --gray-300: #c0c0c8;
    --gray-500: #8a8a95;
    --gray-700: #4a4a55;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #d4a439 0%, #ffd700 50%, #d4a439 100%);
    --gradient-gold-shine: linear-gradient(90deg, transparent, rgba(255,215,0,0.4), transparent);
    --gradient-dark: linear-gradient(180deg, #030305 0%, #0a0a0e 50%, #030305 100%);
    --gradient-red: linear-gradient(135deg, #ff3b3b 0%, #ff6b6b 100%);
    --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(212,164,57,0.15) 0%, transparent 60%);
    
    /* Glows */
    --glow-gold: 0 0 60px rgba(212,164,57,0.4);
    --glow-red: 0 0 40px rgba(255,59,59,0.4);
    --glow-text: 0 0 40px rgba(212,164,57,0.3);
    
    /* Shadows */
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.7);
    --shadow-card: 0 20px 50px rgba(0,0,0,0.5);
    
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--black-rich);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
::selection { background: var(--gold); color: var(--black); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ================================================
   TOP ANNOUNCEMENT BAR - URGENCY
   ================================================ */
.announcement-bar {
    background: var(--gradient-red);
    padding: 12px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: pulse-bg 2s infinite;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.announcement-bar p {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.announcement-bar .flash {
    animation: flash 1s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ================================================
   HEADER
   ================================================ */
.header {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3,3,5,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212,164,57,0.1);
    padding: 15px 0;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .icon { font-size: 2.2rem; }

.logo span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav { display: flex; gap: 30px; }

.nav a {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-300);
    transition: var(--transition);
}

.nav a:hover, .nav a.active { color: var(--gold); }

.header-cta {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 12px 25px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.header-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
}

/* ================================================
   HERO - MAXIMUM IMPACT
   ================================================ */
.hero {
    min-height: 100vh;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--black-rich);
}

/* Animated Background */
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212,164,57,0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

/* Floating Particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-up 10s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 50%; animation-delay: 1s; }
.particle:nth-child(5) { left: 70%; animation-delay: 3s; }
.particle:nth-child(6) { left: 80%; animation-delay: 5s; }
.particle:nth-child(7) { left: 90%; animation-delay: 2.5s; }

@keyframes float-up {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Text */
.hero-text { animation: fadeInUp 1s ease-out; }

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

/* Official Badge */
.official-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(212,164,57,0.2) 0%, rgba(212,164,57,0.05) 100%);
    border: 1px solid rgba(212,164,57,0.4);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.official-badge .verified {
    width: 20px;
    height: 20px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.official-badge span {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

/* Main Title */
.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 1;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: var(--glow-text);
}

.hero h1 .gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .line2 {
    font-size: 3.5rem;
    color: var(--gray-300);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 30px;
    max-width: 500px;
}

/* Star Rating */
.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 3px;
    font-size: 1.3rem;
    color: var(--gold-bright);
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.rating-text {
    font-weight: 600;
    font-size: 1rem;
}

.rating-text strong {
    color: var(--gold);
}

.reviews-count {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Price Section */
.price-section {
    background: var(--dark-card);
    border: 2px solid rgba(212,164,57,0.3);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    margin-bottom: 25px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.price-left {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.price-current {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-old {
    font-size: 1.4rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.price-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.discount-badge {
    background: var(--gradient-red);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stock-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 600;
    font-size: 0.85rem;
}

.stock-warning .dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* CTA Buttons */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-mega {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 40px;
    border-radius: var(--radius);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-mega.primary {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: var(--glow-gold);
}

.btn-mega.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold-shine);
    animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-mega.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212,164,57,0.5);
}

.btn-mega.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-mega.secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Guarantee */
.guarantee {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
    font-size: 0.9rem;
}

.guarantee-item .icon {
    color: var(--green);
    font-size: 1.1rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.product-display {
    position: relative;
    text-align: center;
}

/* Glowing Ring */
.glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 2px solid rgba(212,164,57,0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.glow-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--gold);
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Inner Glow */
.inner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212,164,57,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

.product-img {
    position: relative;
    z-index: 2;
}

.product-img img {
    max-width: 350px;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
    transition: var(--transition);
}

.product-img:hover img {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 50px 100px rgba(0,0,0,0.7)) drop-shadow(0 0 30px rgba(212,164,57,0.3));
}

/* Floating Labels */
.float-label {
    position: absolute;
    z-index: 10;
    padding: 12px 20px;
    border-radius: 10px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-card);
    animation: float 3s ease-in-out infinite;
}

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

.float-label.official {
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--black);
}

.float-label.bestseller {
    bottom: 80px;
    left: 0;
    background: var(--gradient-red);
    color: white;
    animation-delay: 0.5s;
}

.float-label.russia {
    top: 100px;
    left: 10px;
    background: var(--dark-elevated);
    border: 1px solid var(--gold);
    color: var(--gold);
    animation-delay: 1s;
}

/* ================================================
   SOCIAL PROOF BAR
   ================================================ */
.social-proof-bar {
    background: var(--dark);
    border-top: 1px solid rgba(212,164,57,0.1);
    border-bottom: 1px solid rgba(212,164,57,0.1);
    padding: 30px 0;
    overflow: hidden;
}

.proof-scroll {
    display: flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.proof-item .number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-item .text {
    font-size: 0.9rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================
   TRUST BADGES
   ================================================ */
.trust-section {
    background: var(--black-rich);
    padding: 60px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
}

.trust-card:hover {
    border-color: rgba(212,164,57,0.3);
    transform: translateY(-5px);
}

.trust-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.trust-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ================================================
   PRODUCTS SECTION
   ================================================ */
.section {
    padding: 100px 0;
}

.section-dark { background: var(--dark); }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-header h2 .gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--gray-500);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: scaleX(0);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212,164,57,0.3);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card.featured {
    border-color: var(--gold);
}

.product-card.featured::before {
    transform: scaleX(1);
}

.product-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-red);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.product-card-image img {
    max-width: 180px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.product-card:hover .product-card-image img {
    transform: scale(1.1) rotate(3deg);
}

.product-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.product-card .price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.product-card .price small {
    font-size: 1rem;
    -webkit-text-fill-color: var(--gray-500);
}

.product-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.product-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--gray-300);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card ul li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
}

.product-card .btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    border-radius: var(--radius);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.product-card .btn:hover {
    transform: scale(1.02);
    box-shadow: var(--glow-gold);
}

/* ================================================
   BENEFITS
   ================================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.benefit-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: rgba(212,164,57,0.3);
    transform: translateY(-8px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212,164,57,0.15) 0%, rgba(212,164,57,0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--gradient-gold);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ================================================
   CONTENT BOX
   ================================================ */
.content-box {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 50px;
}

.content-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.content-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin: 30px 0 15px;
}

.content-box p {
    color: var(--gray-300);
    margin-bottom: 18px;
    line-height: 1.8;
}

/* ================================================
   DISCLAIMER
   ================================================ */
.disclaimer-box {
    background: rgba(255,59,59,0.05);
    border: 1px solid rgba(255,59,59,0.2);
    border-left: 4px solid var(--red);
    border-radius: var(--radius);
    padding: 25px 30px;
}

.disclaimer-box h4 {
    color: var(--red);
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
}

.disclaimer-box p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.7;
}

/* ================================================
   FAQ
   ================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item:hover, .faq-item.active {
    border-color: rgba(212,164,57,0.3);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-question .icon {
    color: var(--gold);
    font-size: 1.3rem;
    transition: var(--transition);
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 22px;
    color: var(--gray-300);
    line-height: 1.7;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    text-align: center;
    padding: 80px 50px;
    background: 
        radial-gradient(ellipse at center, rgba(212,164,57,0.15) 0%, transparent 60%),
        var(--dark-card);
    border: 1px solid rgba(212,164,57,0.2);
    border-radius: var(--radius-lg);
}

.cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-section .btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    padding: 18px 40px;
    border-radius: var(--radius);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.cta-section .btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
}

.cta-section .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-gold);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--black);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--gray-500);
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: var(--gray-700);
    font-size: 0.85rem;
}

/* ================================================
   AGE GATE
   ================================================ */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate.hidden { display: none; }

.age-gate-content {
    background: var(--dark-card);
    border: 1px solid rgba(212,164,57,0.3);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    max-width: 450px;
    margin: 20px;
}

.age-gate-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.age-gate-content p {
    color: var(--gray-500);
    margin-bottom: 25px;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-gate-buttons .btn {
    padding: 15px 30px;
    border-radius: var(--radius);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.age-gate-buttons .btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
}

.age-gate-buttons .btn-secondary {
    background: transparent;
    color: var(--gray-300);
    border: 1px solid var(--gray-700);
}

/* ================================================
   COOKIE BANNER
   ================================================ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 1000;
    box-shadow: var(--shadow-xl);
}

.cookie-banner.hidden { display: none; }

.cookie-banner p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-banner a { color: var(--gold); }

.cookie-banner .btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-banner .btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
}

.cookie-banner .btn-secondary {
    background: transparent;
    color: var(--gray-300);
    border: 1px solid var(--gray-700);
}

/* ================================================
   STICKY CTA MOBILE
   ================================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 2px solid var(--gold);
    padding: 15px 20px;
    z-index: 999;
    display: none;
}

.sticky-cta .btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    border-radius: var(--radius);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .hero h1 .line2 { font-size: 2.5rem; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .announcement-bar p { font-size: 0.8rem; letter-spacing: 1px; }
    
    .header { top: 40px; }
    .header-cta { display: none; }
    .nav {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 30px;
        transform: translateY(-150%);
        transition: var(--transition);
    }
    .nav.active { transform: translateY(0); }
    .menu-toggle { display: flex; }
    
    .hero { padding: 140px 0 60px; min-height: auto; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-image { order: -1; margin-bottom: 30px; }
    .hero h1 { font-size: 2.5rem; }
    .hero h1 .line2 { font-size: 1.8rem; }
    .product-img img { max-width: 250px; }
    .glow-ring, .inner-glow { width: 280px; height: 280px; }
    .float-label { display: none; }
    
    .rating-bar { justify-content: center; }
    .price-section { text-align: center; }
    .price-row { justify-content: center; }
    .price-right { align-items: center; }
    .guarantee { justify-content: center; }
    
    .proof-scroll { gap: 40px; }
    .proof-item .number { font-size: 2rem; }
    
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .trust-card { padding: 20px 15px; }
    
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 2.5rem; }
    
    .products-grid { grid-template-columns: 1fr; max-width: 400px; }
    .benefits-grid { grid-template-columns: 1fr; }
    
    .content-box { padding: 30px 20px; }
    
    .cta-section { padding: 50px 25px; }
    .cta-section h2 { font-size: 2rem; }
    .cta-section .btn-group { flex-direction: column; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .cookie-banner { flex-direction: column; text-align: center; }
    
    .sticky-cta { display: block; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero h1 .line2 { font-size: 1.5rem; }
    .price-current { font-size: 2.5rem; }
    .btn-mega { padding: 18px 30px; font-size: 1rem; }
    .age-gate-content { padding: 35px 25px; }
    .age-gate-buttons { flex-direction: column; }
}
