:root {
    --neon-cyan: #00e5ff;
    --neon-red: #ff3c3c;
    --neon-yellow: #ffd700;
    --neon-green: #39ff14;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --text-light: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 229, 255, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 80%, rgba(255, 60, 60, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 2px;
    margin-bottom: 32px;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
    animation: fadeUp 0.6s ease both;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 8vw, 6rem);
    line-height: 1.0;
    letter-spacing: 2px;
    animation: fadeUp 0.7s ease 0.1s both;
}

.hero h1 .line-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px rgba(0, 229, 255, 0.4);
    display: block;
}

.hero h1 .line-yellow {
    color: var(--neon-yellow);
    text-shadow: 0 0 20px var(--neon-yellow), 0 0 40px rgba(255, 215, 0, 0.4);
    display: block;
}

.hero h1 .line-red {
    color: var(--neon-red);
    text-shadow: 0 0 20px var(--neon-red), 0 0 40px rgba(255, 60, 60, 0.4);
    display: block;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #aaa;
    max-width: 620px;
    line-height: 1.7;
    margin: 28px 0 0;
    animation: fadeUp 0.7s ease 0.2s both;
}

.hero-sub strong {
    color: var(--text-light);
}

/* NEON BOX */
.neon-box {
    border: 2px solid var(--neon-yellow);
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.03);
    padding: 20px 28px;
    margin: 36px 0 0;
    max-width: 480px;
    animation: fadeUp 0.7s ease 0.3s both;
}

.neon-box p {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* CTA BUTTON */
.cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeUp 0.7s ease 0.4s both;
    margin-top: 44px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--neon-yellow);
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem, 4vw, 2rem);
    letter-spacing: 3px;
    padding: 18px 48px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.2);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: left 0.4s ease;
}

.cta-btn:hover::after {
    left: 150%;
}

.cta-btn:hover {
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.9), 0 0 100px rgba(255, 215, 0, 0.4);
    transform: scale(1.04);
}

.cta-icon {
    font-size: 1.6rem;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-15deg);
    }

    20% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(0deg);
    }
}

.cta-phone {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #888;
    margin-top: 18px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* HERO VISUAL & IMAGE */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 0.8s ease 0.4s both;
}

.hero-img {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid var(--neon-yellow);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
}

.image-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.video-trigger {
    position: relative;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(0, 229, 255, 0.2);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    backdrop-filter: blur(4px);
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid var(--neon-cyan);
    margin-left: 8px;
}

.video-trigger:hover .play-button {
    transform: scale(1.1);
    background: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 30px var(--neon-cyan);
}

/* VIDEO MODAL */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 1001;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-modal.active .modal-content {
    transform: scale(1);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.3);
    overflow: hidden;
}

.video-container #player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--neon-red);
}

.mobile-image-wrap {
    display: none;
}

/* SECTION */
section {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.section-title span {
    color: var(--text-light);
    text-shadow: none;
}

/* BENEFITS GRID */
.benefits {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-left: 3px solid var(--neon-yellow);
    border-radius: 4px;
    padding: 24px 26px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    border-color: var(--neon-yellow);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.benefit-head {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neon-yellow);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.benefit-body {
    font-size: 0.92rem;
    color: #999;
    line-height: 1.65;
}

/* DIVIDER */
.neon-divider {
    max-width: 900px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--neon-yellow), transparent);
    opacity: 0.4;
}

/* BOTTOM CTA */
.bottom-cta {
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d00 100%);
    padding: 80px 20px 100px;
}

.bottom-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.bottom-cta h2 em {
    color: var(--neon-red);
    font-style: normal;
    text-shadow: 0 0 20px var(--neon-red);
}

.bottom-cta p {
    color: #888;
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pulse {
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.9), 0 0 100px rgba(255, 215, 0, 0.5);
    }
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    color: #333;
    font-size: 0.78rem;
    letter-spacing: 1px;
    border-top: 1px solid #1a1a1a;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NEON FLICKER */
.flicker {
    animation: flicker 5s ease-in-out infinite;
}

@keyframes flicker {

    0%,
    95%,
    100% {
        opacity: 1;
    }

    96% {
        opacity: 0.7;
    }

    97% {
        opacity: 1;
    }

    98% {
        opacity: 0.5;
    }

    99% {
        opacity: 1;
    }
}

/* CONTACT FORM */
.contact-section {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
    text-align: center;
}

.contact-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.contact-section p {
    color: #888;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    background: rgba(0, 229, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--neon-cyan);
    color: black;
    border: none;
    border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

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

.form-message {
    margin-top: 20px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    color: #4ade80;
    display: block;
}

.form-message.error {
    color: #f87171;
    display: block;
}

/* Mobile */
@media (max-width: 1000px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .cta-wrap {
        align-items: center;
        margin-top: 24px;
    }

    .hero-badge {
        margin-bottom: 16px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero-sub {
        margin-top: 12px;
        font-size: 0.95rem;
    }

    .neon-box {
        margin-top: 20px;
        padding: 12px 20px;
    }

    .neon-box p {
        font-size: 1rem;
    }

    .hero-visual {
        display: none;
    }

    .mobile-image-wrap {
        display: flex;
        justify-content: center;
        padding: 40px 20px;
        background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d00 100%);
    }

    .mobile-image-wrap .hero-img {
        max-width: 320px;
        transform: none;
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
    }

    .hero-img {
        max-width: 320px;
        transform: none;
    }

    .hero-img:hover {
        transform: scale(1.05);
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .cta-btn {
        padding: 16px 32px;
    }
}
/* COOKIE CONSENT BANNER */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    z-index: 2000;
    display: none;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeUp 0.5s ease both;
}

.cookie-consent.active {
    display: flex;
}

.cookie-content p {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.4;
    margin: 0;
}

.cookie-btn {
    background: var(--neon-cyan);
    color: black;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--neon-cyan);
}

@media (max-width: 600px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
    }
}
