/* ===================================
   SHREE SHYAM MART - PREMIUM LANDING PAGE
   Luxury Gold + Black + Neon Design
   =================================== */

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

:root {
    /* Premium Color Palette */
    --gold: #FFD700;
    --gold-light: #FFED4E;
    --gold-dark: #DAA520;
    --black: #000000;
    --black-soft: #0a0a0a;
    --black-lighter: #1a1a1a;
    --neon-blue: #00D9FF;
    --neon-pink: #FF006E;
    --neon-purple: #8B5CF6;
    --white: #FFFFFF;
    --gray: #9CA3AF;
    --gray-dark: #4B5563;
    --success: #10B981;
    --danger: #EF4444;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--gold);
}

.logo i {
    font-size: 28px;
    animation: gemRotate 3s ease-in-out infinite;
}

@keyframes gemRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.1), transparent 50%),
                radial-gradient(ellipse at bottom, rgba(0, 217, 255, 0.1), transparent 50%),
                var(--black);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 217, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 1px solid var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.neon-text {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue),
                 0 0 20px var(--neon-blue),
                 0 0 30px var(--neon-blue);
    animation: neonGlow 2s ease-in-out infinite;
}

@keyframes neonGlow {
    0%, 100% { text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue); }
    50% { text-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue), 0 0 60px var(--neon-blue); }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
}

/* === COUNTDOWN TIMER === */
.countdown-container {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    border: 2px solid var(--danger);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.countdown-header {
    font-size: 20px;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.timer-block {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid var(--danger);
    border-radius: 15px;
    padding: 20px 30px;
    min-width: 120px;
    text-align: center;
}

.timer-value {
    display: block;
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--danger);
    line-height: 1;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.timer-label {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 48px;
    font-weight: 900;
    color: var(--danger);
}

.limited-badge {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: blink 1.5s ease-in-out infinite;
}

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

/* === BUTTONS === */
.hero-cta {
    margin-top: 40px;
}

.btn-hero {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 14px;
}

.trust-badges i {
    color: var(--gold);
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
}

/* === PRODUCTS SECTION === */
.products {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.product-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(218, 165, 32, 0.05));
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--danger), #DC2626);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-badge.hero-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}

.product-icon {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-block;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.product-desc {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.product-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 14px;
}

.product-features i {
    color: var(--success);
    font-size: 16px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.price-old {
    font-size: 20px;
    color: var(--gray);
    text-decoration: line-through;
}

.price-new {
    font-size: 36px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--gold);
}

.discount-badge {
    background: var(--success);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.btn-product {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* === COMBOS SECTION === */
.combos {
    padding: var(--section-padding);
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05), transparent 70%),
                var(--black);
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.combo-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 25px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.combo-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.combo-card.bestseller {
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(218, 165, 32, 0.1));
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.3);
}

.ribbon {
    position: absolute;
    top: 30px;
    right: -35px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 8px 50px;
    font-weight: 700;
    font-size: 14px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.combo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--danger), #DC2626);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.combo-badge.bestseller-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}

.combo-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--white);
}

.combo-items {
    margin-bottom: 30px;
}

.combo-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.combo-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.combo-item i {
    color: var(--success);
    font-size: 20px;
}

.combo-item.highlight {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--neon-blue);
}

.combo-item.highlight i {
    color: var(--neon-blue);
}

.combo-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 14px;
}

.benefit i {
    color: var(--gold);
    font-size: 16px;
}

.benefit.highlight {
    color: var(--neon-blue);
}

.benefit.highlight i {
    color: var(--neon-blue);
}

.combo-pricing {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.pricing-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.original-price {
    font-size: 24px;
    color: var(--gray);
    text-decoration: line-through;
}

.savings-badge {
    background: var(--success);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.final-price {
    text-align: center;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--gold);
    display: block;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.btn-combo {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-combo:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
}

.btn-combo.glow {
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 12px 50px rgba(255, 215, 0, 0.8);
    }
}

.combo-urgency {
    margin-top: 20px;
    text-align: center;
    color: var(--danger);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* === COMPARISON TABLE === */
.comparison-table {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.9));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 50px;
}

.comparison-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

thead th {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    padding: 20px;
    font-weight: 700;
    font-size: 18px;
    border-bottom: 2px solid var(--gold);
    text-align: center;
}

thead th:first-child {
    text-align: left;
    border-radius: 15px 0 0 0;
}

thead th:last-child {
    border-radius: 0 15px 0 0;
}

thead th.highlight-col {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.2));
    color: var(--gold);
}

tbody tr {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody td {
    padding: 20px;
    text-align: center;
}

tbody td:first-child {
    text-align: left;
    font-weight: 500;
}

tbody td.highlight-col {
    background: rgba(255, 215, 0, 0.05);
}

tbody .fa-check-circle {
    color: var(--success);
    font-size: 24px;
}

tbody .fa-times-circle {
    color: var(--gray-dark);
    font-size: 24px;
}

.price-row {
    background: rgba(255, 215, 0, 0.1);
    font-size: 20px;
}

.price-row td {
    padding: 25px 20px;
}

/* === WHY CHOOSE SECTION === */
.why-choose {
    padding: var(--section-padding);
    background: var(--black-soft);
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--gold);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* === WHAT YOU LEARN SECTION === */
.what-learn {
    padding: var(--section-padding);
    background: radial-gradient(ellipse at center, rgba(0, 217, 255, 0.05), transparent 70%),
                var(--black);
}

.learn-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.learn-category {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.learn-category:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--black);
}

.category-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.learn-list {
    list-style: none;
}

.learn-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.learn-list li:last-child {
    border-bottom: none;
}

.learn-list i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 14px;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    padding: var(--section-padding);
    background: var(--black-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: var(--gold);
    font-size: 18px;
}

.testimonial-text {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--gray);
}

/* === FAQ SECTION === */
.faq {
    padding: var(--section-padding);
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05), transparent 70%),
                var(--black);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

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

/* === PAYMENT SECTION === */
.payment {
    padding: var(--section-padding);
    background: var(--black-soft);
}

.payment-content {
    max-width: 800px;
    margin: 0 auto;
}

.payment-info {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.8));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
}

.payment-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.payment-method {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.payment-method i {
    font-size: 36px;
    color: var(--gold);
}

.payment-method span {
    font-weight: 600;
    color: var(--white);
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray);
}

.security-item i {
    color: var(--success);
    font-size: 24px;
}

.instant-delivery {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    border-radius: 15px;
    padding: 25px;
}

.instant-delivery i {
    font-size: 36px;
    color: var(--success);
}

.instant-delivery h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.instant-delivery p {
    color: var(--gray);
}

.cta-final {
    text-align: center;
}

.final-urgency {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    border: 2px solid var(--danger);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--danger);
    font-weight: 700;
    font-size: 18px;
}

.btn-final {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    margin-bottom: 20px;
}

.btn-final:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

.guarantee-text {
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.guarantee-text i {
    color: var(--success);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 28px;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
}

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

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

.footer-links a {
    color: var(--gray);
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: var(--gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--gray);
}

/* === STICKY BOTTOM CTA === */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(10, 10, 10, 0.98));
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--gold);
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 -5px 30px rgba(255, 215, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sticky-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sticky-title {
    font-weight: 700;
    color: var(--white);
    font-size: 16px;
}

.sticky-timer {
    color: var(--danger);
    font-weight: 700;
    font-size: 16px;
}

.btn-sticky {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 968px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .combos-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        padding: 30px 20px;
    }
    
    .payment-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .timer-block {
        min-width: 100px;
        padding: 15px 20px;
    }
    
    .timer-value {
        font-size: 36px;
    }
    
    .products-grid,
    .features-grid,
    .learn-content,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .combo-benefits {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .sticky-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .sticky-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .btn-sticky {
        width: 100%;
        justify-content: center;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    table {
        font-size: 14px;
    }
    
    thead th,
    tbody td {
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn-hero,
    .btn-final {
        padding: 18px 40px;
        font-size: 18px;
    }
    
    .countdown-container {
        padding: 20px;
    }
    
    .countdown-timer {
        flex-direction: row;
        gap: 10px;
    }
    
    .timer-block {
        min-width: 80px;
        padding: 12px 15px;
    }
    
    .timer-value {
        font-size: 28px;
    }
    
    .timer-separator {
        font-size: 28px;
    }
    
    .price-value {
        font-size: 36px;
    }
    
    .combo-title {
        font-size: 26px;
    }
    
    .product-card,
    .combo-card,
    .feature-card,
    .learn-category,
    .testimonial-card {
        padding: 25px 20px;
    }
}