/* PUMP TRADER PRO - LIQUID GLASS GALACTIC THEME V2 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00d4ff;
    --secondary: #0099ff;
    --accent: #00ff88;
    --danger: #ff3860;
    --dark: #0a0e27;
    --darker: #060913;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* TELEGRAM FLOATING BUTTON */
.telegram-float {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 1999;
    background: linear-gradient(135deg, #0088cc, #00aaff);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.5);
    animation: pulse-telegram 2s infinite;
    transition: all 0.3s;
}

.telegram-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 136, 204, 0.7);
}

.telegram-float i {
    font-size: 1.3rem;
}

@keyframes pulse-telegram {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 136, 204, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(0, 136, 204, 0.8); }
}

/* DISCLAIMER BANNER */
.disclaimer-banner {
    background: var(--danger);
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.disclaimer-banner p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.disclaimer-banner i {
    font-size: 1.2rem;
    animation: blink 2s infinite;
}

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

/* GLASS EFFECTS */
.glass-effect {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.glass-button {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
}

.glass-button:hover {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

/* LANGUAGE SELECTOR */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn:hover, .lang-btn.active {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    text-decoration: none;
    cursor: pointer;
    position: absolute;
    left: 20px;
}

.nav-brand i {
    animation: rotate-pulse 3s infinite;
}

@keyframes rotate-pulse {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8), rgba(6, 9, 19, 0.9));
}

/* STARS */
.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stars, .stars2, .stars3 {
    width: 1px;
    height: 1px;
    background: transparent;
    box-shadow: 
        100px 200px #fff, 200px 400px #fff, 300px 100px #fff,
        400px 300px #fff, 500px 500px #fff, 600px 150px #fff,
        700px 350px #fff, 800px 450px #fff, 900px 250px #fff,
        1000px 100px #fff, 50px 450px #fff, 150px 300px #fff;
    animation: animStar 50s linear infinite;
}

.stars2 {
    width: 2px;
    height: 2px;
    box-shadow: 
        200px 300px #fff, 400px 500px #fff, 600px 200px #fff,
        800px 400px #fff, 1000px 600px #fff, 100px 100px #fff;
    animation: animStar 100s linear infinite;
}

.stars3 {
    width: 3px;
    height: 3px;
    box-shadow: 
        300px 400px #fff, 500px 600px #fff, 700px 300px #fff,
        900px 500px #fff, 200px 200px #fff;
    animation: animStar 150s linear infinite;
}

@keyframes animStar {
    from { transform: translateY(0px); }
    to { transform: translateY(-2000px); }
}

/* PARTICLES */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: float 3s infinite ease-in-out;
    opacity: 0.6;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    75% { transform: translateY(20px) translateX(-10px); }
}

/* HERO CONTENT */
.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--primary);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    font-size: 0.95rem;
    font-weight: 600;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--accent);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.explosive-text {
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(0, 212, 255, 0.5), 0 0 80px rgba(0, 255, 136, 0.3);
        transform: scale(1.02);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem;
    border-radius: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.explosive-number {
    animation: pulse-scale 2s infinite;
}

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

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

/* HERO CTA BUTTONS */
.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-cta.btn-free {
    background: linear-gradient(135deg, #0088cc, #00aaff);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* COSMIC BG */
.cosmic-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: nebula-float 20s infinite ease-in-out;
}

.nebula-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: 10%;
    left: 10%;
}

.nebula-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent), transparent);
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.nebula-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary), transparent);
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes nebula-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, 30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(40px, -40px) scale(1.05); }
}

/* SECTIONS */
.glass-section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

/* HOW IT WORKS DETAILED */
.how-it-works-detailed {
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.how-step {
    text-align: center;
    padding: 2.5rem;
}

.step-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.how-step h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.how-step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* CORNIX INFO */
.cornix-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem;
    border: 2px solid var(--accent);
    background: rgba(0, 255, 136, 0.05);
}

.cornix-info h3 {
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 1.5rem;
}

.btn-cornix {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    margin: 1.5rem 0;
    transition: all 0.3s;
}

.btn-cornix:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.5);
}

.cornix-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* FEATURES */
.features {
    padding: 100px 0;
}

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

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* PRICING */
.pricing {
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.explosive-badge {
    animation: badge-glow 2s infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(0, 212, 255, 0.8); }
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 2rem 0;
}

.currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features i.fa-check {
    color: var(--accent);
}

.pricing-features i.fa-times {
    color: rgba(255, 255, 255, 0.3);
}

.btn-subscribe {
    width: 100%;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.pricing-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    font-style: italic;
}

.payment-methods {
    text-align: center;
    margin-top: 4rem;
}

.payment-methods p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    font-size: 2rem;
    flex-wrap: wrap;
}

.payment-icons i {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.payment-icons i:hover {
    color: var(--primary);
    transform: scale(1.2);
}

/* RESULTS/BACKTEST */
.results {
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

.results-highlight {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    text-align: center;
}

.result-stat {
    flex: 1;
    min-width: 200px;
}

.result-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    margin-bottom: 0.5rem;
}

.result-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.backtest-chart {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.backtest-chart h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.backtest-chart canvas {
    max-height: 400px;
}

.proof-statement {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem;
    border: 2px solid var(--accent);
}

.proof-statement h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.proof-statement p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* TESTIMONIALS TELEGRAM STYLE */
.testimonials {
    padding: 100px 0;
}

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

.testimonial-telegram {
    padding: 1.5rem;
}

.telegram-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.telegram-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.telegram-info {
    flex: 1;
}

.telegram-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.telegram-time {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.telegram-message {
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid var(--primary);
    padding: 1rem;
    border-radius: 0 10px 10px 0;
    margin-bottom: 1rem;
}

.telegram-message p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.telegram-reactions {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.telegram-reactions span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

/* FOOTER */
.footer {
    padding: 60px 0 30px;
    background: var(--darker);
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-address {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-made-with {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.heart {
    color: #ff3860;
    animation: heartbeat 1.5s infinite;
}

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

.flag {
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: white;
    text-decoration: none;
}

.social-links a:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer {
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.7;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 600px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    z-index: 1;
    transition: all 0.3s;
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.payment-option {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.payment-option:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.payment-option i {
    font-size: 2rem;
    color: var(--primary);
}

.modal-cornix-reminder {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    text-align: center;
}

.modal-cornix-reminder i {
    color: var(--accent);
    margin-right: 5px;
}

.modal-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

/* LEGAL PAGES */
.legal-page {
    padding: 100px 0;
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-date {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.legal-content ul, .legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--accent);
}

.legal-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    text-align: center;
}

.legal-footer p {
    margin-bottom: 0.5rem;
}

.warning-box {
    background: rgba(255, 56, 96, 0.1);
    border-left: 4px solid var(--danger);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 10px;
}

.warning-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-brand {
        position: static;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }
    
    .language-selector {
        top: 140px;
    }
    
    .telegram-float {
        top: 80px;
        font-size: 0.8rem;
        padding: 10px 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .results-highlight {
        flex-direction: column;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .result-number {
        font-size: 2.5rem;
    }
}
