:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --primary: #FFD700;
    /* Gold */
    --primary-glow: rgba(255, 215, 0, 0.3);
    --accent: #ffffff;
    --text-main: #f0f0f0;
    --text-muted: #888888;
    --font-main: 'Outfit', sans-serif;
    --font-tech: 'Rajdhani', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky Bar */
.sticky-bar {
    background: linear-gradient(90deg, #000, #1a1a1a);
    border-bottom: 1px solid var(--primary);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 20px var(--primary-glow);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-text {
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    gap: 10px;
    font-family: var(--font-tech);
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.time-box span {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.time-box small {
    font-size: 0.6rem;
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        linear-gradient(rgba(0, 0, 0, 0.9), var(--bg-dark));
    z-index: -1;
}

.badge-glitch {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-tech);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    background: rgba(255, 215, 0, 0.1);
}

.glitch-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0);
        text-shadow: none;
    }

    2% {
        transform: translate(-2px, 2px);
        text-shadow: 2px 0 #ff0000, -2px 0 #0000ff;
    }

    4% {
        transform: translate(2px, -2px);
        text-shadow: -2px 0 #ff0000, 2px 0 #0000ff;
    }

    6% {
        transform: translate(0);
        text-shadow: none;
    }

    100% {
        transform: translate(0);
        text-shadow: none;
    }
}

.highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-family: var(--font-tech);
    font-weight: 600;
}

.stat-item i {
    color: var(--primary);
}

/* Hero Image */
.hero-image-container {
    margin-top: 5px;
    font-style: italic;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #000;
    padding: 18px 40px;
    border-radius: 0;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-tech);
    font-size: 1.2rem;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #fff;
    box-shadow: 0 0 30px var(--primary-glow);
    transform: translateY(-2px);
}

.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.guarantee-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Sections */
.section-title {
    font-family: var(--font-tech);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--text-main);
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
}

section {
    padding: 80px 0;
}

/* Tech Cards */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid #222;
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.tech-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.tech-card:hover::before {
    opacity: 1;
}

.card-icon {
    color: var(--primary);
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tech-card h3 {
    font-family: var(--font-tech);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tech-card p {
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #111;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
}

.testi-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.verified {
    font-size: 0.8rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars {
    color: #ffd700;
}

.progress-bar {
    margin-top: 20px;
}

.progress-label {
    font-size: 0.8rem;
    margin-bottom: 5px;
    color: var(--text-muted);
}

.progress-track {
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    font-size: 0;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #333;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-tech);
    z-index: 1;
    flex-shrink: 0;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(180deg, var(--bg-dark), #1a1500);
}

.scarcity-banner {
    background: #dc2626;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.discount-badge {
    background: var(--primary);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
}

.offer-header h2 {
    font-family: var(--font-tech);
    font-size: 2.5rem;
    margin: 20px 0;
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.benefits-list i {
    color: var(--primary);
}

.price-box {
    margin-bottom: 30px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-right: 15px;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-tech);
}

.big-cta {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.big-cta small {
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: none;
}

.payment-methods {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ */
.accordion-item {
    border-bottom: 1px solid #333;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: white;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: var(--font-main);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: var(--text-muted);
}

.accordion-content.active {
    padding-bottom: 20px;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid #222;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Responsive */
}
}

/* Fake Notification */
.fake-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
}

.fake-notification.show {
    transform: translateX(0);
}

.notif-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.notif-content h4 {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 2px;
}

.notif-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.notif-time {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: bold;
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Urgency Box */
.urgency-box {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border: 2px solid #ff3333;
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
    animation: pulse-red 2s ease-in-out infinite;
}

.urgency-box i {
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.urgency-box p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.highlight-number {
    background: white;
    color: #ff0000;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1.2em;
}

@keyframes pulse-red {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 50px rgba(255, 0, 0, 0.8);
    }
}

/* Social Proof Bar */
.social-proof-bar {
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 30px 0;
    margin: 40px 0;
}

.proof-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.proof-item i {
    color: var(--primary);
    font-size: 2rem;
}

.proof-item span {
    font-size: 1.1rem;
}

.proof-item strong {
    color: var(--primary);
    font-size: 1.5rem;
    display: block;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 0, 0, 0.1));
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.warning-box h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.warning-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 600;
}

/* Enhanced Pulse Animation */
.pulse-animation {
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

/* Value Box */
.value-box {
    background: rgba(255, 215, 0, 0.1);
    border: 2px dashed var(--primary);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.value-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.value-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: line-through;
}

/* Price Comparison */
.price-comparison {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.old-price-section,
.new-price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.installment {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.guarantee-badge i {
    font-size: 3rem;
    color: #00ff00;
    flex-shrink: 0;
}

.guarantee-badge strong {
    display: block;
    color: #00ff00;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.guarantee-badge p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Risk Reversal */
.risk-reversal {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.risk-reversal h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.risk-reversal p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
    padding: 60px 0;
    margin: 60px 0 0;
}

.final-cta-content {
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.final-cta>p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.choice-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.choice {
    border-radius: 12px;
    padding: 30px;
    text-align: left;
}

.bad-choice {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff3333;
}

.good-choice {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.choice h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.bad-choice h3 {
    color: #ff3333;
}

.good-choice h3 {
    color: #00ff00;
}

.choice ul {
    list-style: none;
    padding: 0;
}

.choice li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
}

.bad-choice li:before {
    content: "❌";
    position: absolute;
    left: 0;
}

.good-choice li:before {
    content: "✅";
    position: absolute;
    left: 0;
}

.final-warning {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff3333;
}

/* Enhanced Testimonials */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.installment {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.guarantee-badge i {
    font-size: 3rem;
    color: #00ff00;
    flex-shrink: 0;
}

.guarantee-badge strong {
    display: block;
    color: #00ff00;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.guarantee-badge p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Risk Reversal */
.risk-reversal {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.risk-reversal h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.risk-reversal p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
    padding: 60px 0;
    margin: 60px 0 0;
}

.final-cta-content {
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.final-cta>p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.choice-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.choice {
    border-radius: 12px;
    padding: 30px;
    text-align: left;
}

.bad-choice {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff3333;
}

.good-choice {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.choice h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.bad-choice h3 {
    color: #ff3333;
}

.good-choice h3 {
    color: #00ff00;
}

.choice ul {
    list-style: none;
    padding: 0;
}

.choice li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
}

.bad-choice li:before {
    content: "❌";
    position: absolute;
    left: 0;
}

.good-choice li:before {
    content: "✅";
    position: absolute;
    left: 0;
}

.final-warning {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff3333;
}

/* Enhanced Testimonials */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .urgency-box {
        flex-direction: column;
        text-align: center;
    }

    right: 20px;
    z-index: 1001;
    background: linear-gradient(135deg, var(--primary), #ffa500);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    transition: var(--transition);
}

.hamburger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-card));
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    border-bottom: 2px solid var(--primary);
    background: rgba(255, 215, 0, 0.1);
}

.mobile-menu-header h3 {
    font-family: var(--font-tech);
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.close-menu {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-menu:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-list {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-menu-list li {
    margin: 0;
}

.menu-link {
    display: block;
    padding: 18px 25px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-left: 4px solid transparent;
    transition: var(--transition);
    position: relative;
}

.menu-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--primary);
    padding-left: 35px;
    color: var(--primary);
}

.menu-link.cta-menu {
    margin: 20px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary), #ffa500);
    color: #000;
    text-align: center;
    border-radius: 8px;
    border: none;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.menu-link.cta-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    padding-left: 25px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Hamburger Menu */
.mobile-nav {
    position: relative;
}

.hamburger {
    display: none;
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 1001;
    background: linear-gradient(135deg, var(--primary), #ffa500);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    transition: var(--transition);
}

.hamburger:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, var(--bg-dark), var(--bg-card));
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    border-bottom: 2px solid var(--primary);
    background: rgba(255, 215, 0, 0.1);
}

.mobile-menu-header h3 {
    font-family: var(--font-tech);
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.close-menu {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-menu:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-list {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-menu-list li {
    margin: 0;
}

.menu-link {
    display: block;
    padding: 18px 25px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-left: 4px solid transparent;
    transition: var(--transition);
    position: relative;
}

.menu-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--primary);
    padding-left: 35px;
    color: var(--primary);
}

.menu-link.cta-menu {
    margin: 20px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary), #ffa500);
    color: #000;
    text-align: center;
    border-radius: 8px;
    border: none;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.menu-link.cta-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    padding-left: 25px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .urgency-box {
        flex-direction: column;
        text-align: center;
    }

    .price-comparison {
        flex-direction: column;
    }

    .choice-comparison {
        grid-template-columns: 1fr;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }

    .hero-image-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 20px 0;
        display: block !important;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .hero-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain;
        display: block;
    }
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}