/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

:root {
    --bg-light: #f5f5f5;
    --text-dark: #111111;
    --text-grey: #666666;
    --accent-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --card-bg: #ffffff;
    --shadow-soft: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff;
    --font-main: 'Inter', sans-serif;
    --green-positive: #00c853;
    --red-negative: #ff3d00;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.top-ticker {
    background-color: var(--accent-dark);
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.5px;
}

.ticker-track {
    display: inline-flex;
    gap: 50px;
    animation: ticker-move 15s linear infinite;
    /* Start from left, move to right */
}

@keyframes ticker-move {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100vw);
    }
}

.ticker-item span {
    color: var(--green-positive);
    margin-left: 5px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: var(--accent-dark);
    color: #fff;
    border-radius: 4px;
    font-size: 1.2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--text-grey);
}

.btn-pill {
    background-color: var(--accent-dark);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.btn-pill:hover {
    background-color: #333;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
}

.hero-premium {
    position: relative;
    min-height: 100vh;
    background: #050505;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content-premium .badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #888;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero-content-premium h1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 0.95;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -3px;
}

.text-gradient {
    background: linear-gradient(to right, #fff, #444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content-premium p {
    font-size: 1.25rem;
    color: #888;
    max-width: 500px;
    margin-bottom: 50px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary-premium {
    padding: 20px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    border-radius: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-secondary-premium {
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.btn-secondary-premium:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 3D Visual Section */
.hero-visual {
    perspective: 1000px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    transform: rotateY(-20px) rotateX(10deg);
    transition: transform 0.5s ease;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.glass-card:hover {
    transform: rotateY(-5deg) rotateX(5deg) translateY(-20px);
}

.chart-mockup {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 150px;
    margin-bottom: 40px;
}

.chart-mockup .bar {
    flex: 1;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.05), #fff);
    border-radius: 5px;
    animation: bar-fluctuate 2s infinite ease-in-out alternate;
}

@keyframes bar-fluctuate {
    0% {
        transform: scaleY(0.4);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }

    100% {
        transform: scaleY(0.7);
        opacity: 0.8;
    }
}

.chart-mockup .bar {
    transform-origin: bottom;
}

.stats {
    display: flex;
    justify-content: space-between;
}

.stat-item .label {
    color: #555;
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.stat-item .value {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
}

/* Floating 3D Background Objects */
.floating-objects .object {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.obj-1 {
    width: 250px;
    height: 250px;
    top: -50px;
    right: -50px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 40px;
    animation: mega-float 25s infinite ease-in-out;
}

.obj-2 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    left: 5%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
    animation: mega-float 18s infinite ease-in-out reverse;
}

.obj-3 {
    width: 400px;
    height: 400px;
    top: 30%;
    left: 30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border: none !important;
    animation: pulse-glow 12s infinite alternate;
}

.obj-4 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 10%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: orbit 30s infinite linear;
}

.obj-5 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 15%;
    background: #fff;
    filter: blur(40px);
    opacity: 0.2;
    animation: wandering-light 15s infinite alternate;
}

.obj-6 {
    width: 120px;
    height: 120px;
    bottom: -30px;
    right: 20%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
    animation: float-rotate 22s infinite linear;
}

.obj-7 {
    width: 200px;
    height: 2px;
    top: 40%;
    left: -100px;
    background: linear-gradient(to right, transparent, #fff, transparent);
    opacity: 0.1;
    animation: laser-beam 8s infinite linear;
}

.obj-8 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    animation: slow-spin 60s infinite linear;
}

@keyframes mega-float {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(100px, 50px) rotate(120deg) scale(1.1);
    }

    66% {
        transform: translate(-50px, 150px) rotate(240deg) scale(0.9);
    }

    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 0.2;
        filter: blur(20px);
    }

    100% {
        transform: scale(1.5);
        opacity: 0.5;
        filter: blur(50px);
    }
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

@keyframes wandering-light {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(200px, 100px);
    }

    50% {
        transform: translate(400px, -50px);
    }

    75% {
        transform: translate(100px, 300px);
    }

    100% {
        transform: translate(0, 0);
    }
}

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

    100% {
        transform: translateX(2000px) translateY(1000px) rotate(-45deg);
    }
}

@keyframes slow-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float-rotate {
    0% {
        transform: translate(0, 0) rotate(0deg) rotateX(0deg);
    }

    50% {
        transform: translate(50px, 50px) rotate(180deg) rotateX(45deg);
    }

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

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 80px 5%;
    background-color: var(--card-bg);
}

.feature-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.feature-card i {
    font-size: 3rem;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.page-header {
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-header h1 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
}

.about-content {
    padding: 80px 5%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-grey);
}

.team-section {
    padding: 80px 5%;
    background-color: var(--card-bg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.team-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.team-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.team-text p {
    color: var(--text-grey);
    font-size: 1.1rem;
}

.hybrid-contact,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 5%;
}

.values-box h2,
.contact-header {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.contact-header {
    font-size: 4rem;
    margin-bottom: 50px;
    padding: 0 5%;
    padding-top: 80px;
}

.values-list li {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 15px;
    margin-left: 20px;
}

.contact-info {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-grey);
}

.map-embed {
    width: 100%;
    height: 250px;
    background: #e0e0e0;
    border-radius: 10px;
    margin-top: 30px;
}

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-dark);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.register-page {
    min-height: calc(100vh - 150px);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
}

.register-container {
    width: 100%;
    max-width: 750px;
}

.register-header {
    text-align: center;
    margin-bottom: 50px;
}

.register-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #888;
}

.step.active {
    background: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.register-form-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.section-title i {
    color: #fff;
    font-size: 0.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.register-form-card label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 8px;
    margin-left: 5px;
}

.register-form-card .form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 18px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.register-form-card .form-control:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-primary-block {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000;
    width: 100%;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 16px;
    font-weight: 900;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 85px;
}

.btn-primary-block:hover {
    transform: translateY(-4px) scale(1.01);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15), 0 0 15px rgba(255, 255, 255, 0.1);
    letter-spacing: 3px;
}

.btn-primary-block:active {
    transform: translateY(-2px) scale(0.99);
}

.security-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.security-item {
    color: #aaa;
    font-size: 0.9rem;
}

.security-item i {
    color: var(--green-positive);
    margin-right: 5px;
}

.footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.brand-tagline {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #fff;
}

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

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

.footer-links ul li a {
    text-decoration: none;
    color: #888;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-newsletter p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    color: #fff;
    outline: none;
}

.newsletter-form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #eee;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.85rem;
}

.footer-bottom-right {
    display: flex;
    gap: 30px;
}

.footer-bottom-right span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-right i {
    color: var(--green-positive);
}

/* ═══════════════════════════════════════════════════════
   NEW LANDING PAGE SECTIONS
   ═══════════════════════════════════════════════════════ */

/* --- Shared Section Styles --- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #888;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-label i {
    color: var(--green-positive);
    font-size: 0.75rem;
}

.section-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

/* --- KEY HIGHLIGHTS --- */
.section-highlights {
    background: #050505;
    padding: 100px 0;
}

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

.highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--green-positive), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-positive), #00e676);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #000;
}

.highlight-card h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-card p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- HOW IT WORKS --- */
.section-how-it-works {
    background: #0a0a0a;
    padding: 100px 0;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--green-positive), rgba(0, 200, 83, 0.1));
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 0;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(0, 200, 83, 0.1);
    border: 2px solid var(--green-positive);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green-positive);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    background: var(--green-positive);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 200, 83, 0.4);
}

.step-content h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-content strong {
    color: #ccc;
}

/* --- PERFORMANCE --- */
.section-performance {
    background: #050505;
    padding: 100px 0;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.perf-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.perf-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--green-positive);
    transition: width 0.4s ease;
    border-radius: 3px;
}

.perf-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.perf-card:hover::after {
    width: 60%;
}

.perf-icon {
    font-size: 1.8rem;
    color: var(--green-positive);
    margin-bottom: 20px;
}

.perf-value {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.perf-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.tracking-platforms {
    text-align: center;
}

.tracking-platforms>p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.platform-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* --- RISK DISCLAIMER --- */
.section-disclaimer {
    background: #0a0a0a;
    padding: 60px 0;
}

.disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 35px;
    background: rgba(255, 152, 0, 0.05);
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: 16px;
    border-left: 4px solid #ff9800;
}

.disclaimer-icon {
    font-size: 1.5rem;
    color: #ff9800;
    min-width: 30px;
    padding-top: 2px;
}

.disclaimer-content h4 {
    color: #ff9800;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.disclaimer-content p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- PRICING PLANS --- */
.section-plans {
    background: #050505;
    padding: 100px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.plan-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.plan-card.featured {
    background: rgba(0, 200, 83, 0.05);
    border-color: rgba(0, 200, 83, 0.3);
    box-shadow: 0 0 60px rgba(0, 200, 83, 0.1);
}

.plan-card.featured:hover {
    border-color: rgba(0, 200, 83, 0.5);
    box-shadow: 0 0 80px rgba(0, 200, 83, 0.15);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--green-positive);
    color: #000;
    padding: 6px 40px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.plan-tier {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 20px;
}

.plan-free .plan-tier {
    color: #aaa;
}

.plan-starter .plan-tier {
    color: var(--green-positive);
}

.plan-professional .plan-tier {
    color: #4fc3f7;
}

.plan-vip .plan-tier {
    color: #ce93d8;
}

.plan-min-capital {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 5px;
}

.plan-min-label {
    color: #555;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: 600;
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 30px;
}

.plan-features li {
    color: #aaa;
    font-size: 0.95rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #555;
    font-size: 0.85rem;
    min-width: 18px;
}

.plan-features li strong {
    color: #fff;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.plan-card:hover .plan-btn {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.plan-card.featured .plan-btn {
    background: var(--green-positive);
    color: #000;
    border-color: var(--green-positive);
}

.plan-card.featured:hover .plan-btn {
    background: #00e676;
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.3);
}

/* --- TESTIMONIALS --- */
.section-testimonials {
    background: #0a0a0a;
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 35px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

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

.testimonial-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-card p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    color: #555;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- CONTACT CTA --- */
.section-cta {
    background: #050505;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.cta-subtext {
    color: #777;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.cta-contact-item:hover {
    color: #fff;
}

.cta-contact-item.telegram-link i {
    color: #0088cc;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: #0088cc;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-telegram:hover {
    background: #00a2ed;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 136, 204, 0.3);
}

.btn-start-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-start-now:hover {
    background: #2be872;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

/* ═══════════════════════════════════════════════════════
   PREMIUM ENHANCEMENTS
   ═══════════════════════════════════════════════════════ */

/* WhatsApp Hero Button */
.btn-whatsapp-hero {
    padding: 20px 40px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp-hero:hover {
    background: #2be872;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

/* Fade-in Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* New Hero & Features Layout */
.hero-label-top { display: inline-flex; align-items: center; gap: 8px; background: rgba(0, 200, 83, 0.1); border: 1px solid rgba(0, 200, 83, 0.2); padding: 8px 15px; border-radius: 50px; color: var(--green-positive); font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 25px; }
.hero-content-premium h1 { font-size: 5rem; line-height: 0.9; margin-bottom: 25px; }
.hero-content-premium p { font-size: 1.1rem; color: #888; max-width: 500px; line-height: 1.6; margin-bottom: 35px; }

.hero-stats-row { display: flex; align-items: center; gap: 30px; margin-bottom: 45px; }
.hero-stat-item { display: flex; flex-direction: column; }
.h-stat-label { font-size: 0.7rem; color: #555; text-transform: uppercase; font-weight: 800; letter-spacing: 1px; }
.h-stat-val { font-size: 1.8rem; font-weight: 800; color: #fff; }
.hero-stat-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.1); }

.btn-secondary-hero { padding: 15px 35px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); color: #fff; text-decoration: none; font-weight: 700; transition: all 0.3s; background: rgba(255,255,255,0.02); }
.btn-secondary-hero:hover { background: rgba(255,255,255,0.05); border-color: #fff; }

.glass-card-hero { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 30px; padding: 40px; position: relative; overflow: hidden; }
.card-glow-wrap::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(0, 200, 83, 0.1) 0%, transparent 70%); pointer-events: none; }

.section-core-features { padding: 80px 0; background: #050505; }
.features-grid-main { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.f-card-main { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 40px; border-radius: 25px; transition: all 0.3s; }
.f-card-main:hover { transform: translateY(-10px); background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.f-icon-wrap { width: 60px; height: 60px; background: rgba(0, 200, 83, 0.1); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--green-positive); margin-bottom: 25px; }
.f-card-main h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 15px; }
.f-card-main p { color: #666; line-height: 1.6; font-size: 0.95rem; }

@media (max-width: 1024px) {
    .hero-content-premium h1 { font-size: 3.5rem; }
    .features-grid-main { grid-template-columns: 1fr; }
    .hero-stats-row { justify-content: center; }
}

/* Live Chart Container */
.live-chart-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 40px;
    overflow: hidden;
}

.live-chart-header {
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #00c853;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

#liveChart {
    width: 100%;
    display: block;
}

/* Verify Performance Button */
.btn-verify-performance {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-verify-performance:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

/* Testimonial Avatars */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

/* Glowing CTA Button */
.btn-cta-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 44px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: glow-pulse 2s infinite;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-cta-glow:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.5);
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 0 35px rgba(37, 211, 102, 0.5); }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-bounce 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Neon glow on highlight icons */
.highlight-icon {
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.2);
}

.highlight-card:hover .highlight-icon {
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.4);
}

/* Plan card hover scale for featured */
.plan-card.featured {
    transform: scale(1.03);
}

.plan-card.featured:hover {
    transform: scale(1.06) translateY(-8px);
}

/* ═══════════════════════════════════════════════════════
   CRYPTO LEADERBOARD
   ═══════════════════════════════════════════════════════ */

.crypto-leaderboard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.leaderboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 12px;
}

.leaderboard-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.leaderboard-title h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.leaderboard-tabs {
    display: flex;
    gap: 6px;
}

.lb-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #888;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lb-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lb-tab.active {
    background: rgba(0, 200, 83, 0.15);
    border-color: rgba(0, 200, 83, 0.3);
    color: var(--green-positive);
}

.leaderboard-table-wrap {
    overflow-x: auto;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.leaderboard-table thead th {
    background: rgba(255, 255, 255, 0.03);
    color: #666;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.leaderboard-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}

.leaderboard-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.leaderboard-table td {
    padding: 14px 16px;
    color: #ccc;
    white-space: nowrap;
}

.rank-cell {
    color: #555;
    font-weight: 700;
    width: 40px;
}

.name-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coin-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.coin-info {
    display: flex;
    flex-direction: column;
}

.coin-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.coin-symbol {
    color: #666;
    font-size: 0.75rem;
    font-weight: 600;
}

.price-cell {
    color: #fff;
    font-weight: 600;
}

.pct-green {
    color: var(--green-positive) !important;
    font-weight: 600;
}

.pct-red {
    color: #ef5350 !important;
    font-weight: 600;
}

.mcap-cell, .vol-cell {
    color: #aaa;
}

.loading-row {
    text-align: center !important;
    padding: 40px !important;
    color: #666 !important;
    font-size: 0.95rem;
}

.loader-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--green-positive);
    border-radius: 50%;
    display: inline-block;
    animation: spin-loader 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin-loader {
    to { transform: rotate(360deg); }
}

.leaderboard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lb-update-time, .lb-source {
    color: #555;
    font-size: 0.75rem;
}

.supply-cell {
    color: #888;
    font-size: 0.8rem;
}

.sparkline-cell {
    padding: 10px !important;
    width: 180px;
    vertical-align: middle;
}

.sparkline-canvas {
    display: block;
    width: 160px;
    height: 40px;
}

/* ═══════════════════════════════════════════════════════
   PLAN SELECTOR (Registration Form)
   ═══════════════════════════════════════════════════════ */

.plan-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-option {
    cursor: pointer;
    display: block;
}

.plan-option input[type="radio"] {
    display: none;
}

.plan-option-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.plan-option:hover .plan-option-inner {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.plan-option.active .plan-option-inner {
    background: rgba(0, 200, 83, 0.08);
    border-color: rgba(0, 200, 83, 0.4);
    box-shadow: 0 0 25px rgba(0, 200, 83, 0.1);
}

.plan-option-icon {
    font-size: 1.5rem;
    min-width: 36px;
    text-align: center;
}

.plan-option-details {
    flex: 1;
}

.plan-option-details strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.plan-option-details span {
    color: #888;
    font-size: 0.85rem;
}

.plan-option-check {
    color: rgba(255, 255, 255, 0.1);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.plan-option.active .plan-option-check {
    color: var(--green-positive);
}

.plan-option-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .hero-premium {
        padding: 80px 5%;
        min-height: auto;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content-premium h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-content-premium p {
        margin: 0 auto 40px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-visual {
        order: -1;
        perspective: none;
    }

    .glass-card {
        transform: none !important;
        padding: 20px;
    }

    .hero-image {
        order: -1;
    }

    .hero,
    .features,
    .team-section,
    .hybrid-contact,
    .contact-grid,
    .register-form-card,
    .form-row,
    .footer-main-grid {
        grid-template-columns: 1fr;
    }

    .footer-main-grid {
        gap: 40px;
        text-align: center;
    }

    .brand-tagline {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-right {
        justify-content: center;
    }

    /* Typography adjustments */
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .btn-primary {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
        display: block;
    }

    .page-header h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .about-content h2,
    .team-text h2,
    .values-box h2,
    .contact-header,
    .register-header h1 {
        font-size: 2rem;
    }

    /* Mobile Menu */
    .menu-toggle {
        display: block;
    }

    .navbar {
        position: relative;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--card-bg);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease;
        gap: 0;
    }

    .nav-links.active {
        max-height: 400px;
        padding: 20px 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .nav-links li:last-child {
        margin-bottom: 0;
    }

    .btn-pill {
        display: inline-block;
        width: auto;
    }

    /* New sections responsive */
    .section-heading {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .highlights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .performance-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .plans-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

    .cta-heading {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .perf-value {
        font-size: 2.2rem;
    }

    .plan-min-capital {
        font-size: 2.8rem;
    }

    .steps-timeline::before {
        left: 30px;
    }

    .disclaimer-box {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .btn-telegram,
    .btn-start-now {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════
   REVIEWS CAROUSEL & STAR RATING
   ═══════════════════════════════════════════════════════ */

.reviews-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.reviews-carousel {
    display: flex;
    gap: 24px;
    flex: 1;
    overflow: hidden;
    transition: all 0.5s ease;
}

.review-slide {
    flex: 0 0 calc(50% - 12px);
    animation: slideIn 0.5s ease forwards;
}

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

.carousel-arrow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--green-positive);
    border-color: var(--green-positive);
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.4);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--green-positive);
    width: 24px;
    border-radius: 4px;
}

.verified-badge {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--green-positive);
    background: rgba(0, 200, 83, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    gap: 5px;
    font-size: 1.5rem;
    margin: 10px 0;
}

.star-rating-input i {
    cursor: pointer;
    color: #ffc107;
    transition: transform 0.2s ease;
}

.star-rating-input i:hover {
    transform: scale(1.2);
}

.reviews-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-view-all-reviews {
    color: #888;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.btn-view-all-reviews:hover {
    color: #fff;
}

.plan-card-mini:hover {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(255,255,255,0.2) !important;
}

.plan-card-mini.active {
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.2);
}

@media (max-width: 992px) {
    .review-slide {
        flex: 0 0 100%;
    }
}

/* Flash Animations for Live Realtime Updates */
@keyframes flashGreen {
    0% { background-color: rgba(0, 200, 83, 0.4); color: #fff; }
    100% { background-color: transparent; }
}

@keyframes flashRed {
    0% { background-color: rgba(255, 82, 82, 0.4); color: #fff; }
    100% { background-color: transparent; }
}

.flash-green {
    animation: flashGreen 0.5s ease-out;
}

.flash-red {
    animation: flashRed 0.5s ease-out;
}