:root {
    --bg-color: #050507;
    --bg-secondary: #0f1014;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);

    --text-color: #ffffff;
    --text-secondary: #a0a0b0;

    --accent-primary: #00f3ff;
    /* Cyber Blue */
    --accent-secondary: #bd00ff;
    /* Neon Purple */
    --accent-green: #00ff9d;
    /* Neon Green */

    --font-family: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);

    --neon-shadow: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);
    --neon-shadow-purple: 0 0 10px rgba(189, 0, 255, 0.5), 0 0 20px rgba(189, 0, 255, 0.3);
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(189, 0, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 40%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* Titles with Neon Glow */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-primary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-primary);
    z-index: -1;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: right;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover {
    color: #000;
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.btn-white {
    background: #fff;
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.btn-white:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

/* Header */
.header {
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.05) 0%, transparent 70%);
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.3));
    animation: glowText 3s infinite alternate;
}

@keyframes glowText {
    from {
        filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.2));
    }

    to {
        filter: drop-shadow(0 0 25px rgba(0, 243, 255, 0.5));
    }
}

.hero-title span {
    display: block;
    font-size: 0.5em;
    color: var(--accent-green);
    -webkit-text-fill-color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-note {
    font-size: 14px;
    color: var(--accent-green);
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.4);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* Advantages */
.advantages {
    background: #08080a;
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Special Offer */
.special-offer {
    padding: 80px 0;
}

.offer-banner {
    background: linear-gradient(135deg, rgba(189, 0, 255, 0.1) 0%, rgba(5, 5, 7, 0.9) 100%);
    border: 1px solid var(--accent-secondary);
    box-shadow: 0 0 50px rgba(189, 0, 255, 0.15);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    text-align: center;
    /* Center text */
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.offer-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
}

.offer-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.1) 0%, transparent 60%);
    animation: slowRotate 10s linear infinite;
    z-index: -1;
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }

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

.offer-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.offer-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.offer-price .price-val {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-secondary);
    text-shadow: 0 0 20px rgba(189, 0, 255, 0.6);
}

.offer-price .price-period {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-left: 10px;
}

/* Instructions */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    margin-bottom: -20px;
    line-height: 1;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    position: relative;
}

.step-card p {
    color: var(--text-secondary);
}

.center-btn {
    text-align: center;
}

/* Platforms */
.platforms {
    background: #08080a;
}

.platforms-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.platform-icon {
    font-size: 48px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
    transition: var(--transition);
}

.platform-card:hover {
    color: #fff;
    transform: translateY(-5px);
}

.platform-card:hover .platform-icon {
    filter: drop-shadow(0 0 15px var(--accent-primary));
    transform: scale(1.1);
}

.platforms-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Featured Card */
.pricing-card.featured {
    border: 2px solid var(--accent-secondary);
    box-shadow: 0 0 30px rgba(189, 0, 255, 0.15);
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(189, 0, 255, 0.05) 0%, rgba(5, 5, 7, 0.8) 100%);
    position: relative;
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.08);
    box-shadow: 0 0 50px rgba(189, 0, 255, 0.25);
}

.badge {
    background: var(--accent-secondary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(189, 0, 255, 0.5);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
}

.price-total {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
}

.discount-label {
    display: inline-block;
    background: rgba(0, 243, 255, 0.1);
    color: var(--accent-primary);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-features {
    text-align: left;
    margin: 30px 0;
    color: var(--text-secondary);
}

.pricing-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    text-shadow: 0 0 10px var(--accent-green);
    font-weight: bold;
}

/* SEO Content */
.seo-content {
    background: transparent;
    padding: 80px 0;
}

.seo-content.bg-grey {
    background: rgba(255, 255, 255, 0.02);
}

.text-block {
    max-width: 900px;
    margin: 0 auto;
}

.text-block h2 {
    color: #fff;
    margin-top: 50px;
    margin-bottom: 30px;
}

.text-block h3 {
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.text-block p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.text-block ul {
    color: var(--text-secondary);
    margin-bottom: 25px;
    padding-left: 20px;
}

.text-block li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Table */
.table-responsive {
    overflow-x: auto;
    margin: 40px 0;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--card-border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th {
    color: var(--accent-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
    text-align: left;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table td {
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    font-size: 16px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}

/* Use Cases */
.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.use-case {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--accent-secondary);
    /* Clean left accent instead of box */
    padding: 30px 40px;
    border-radius: 0 20px 20px 0;
    transition: var(--transition);
}

.use-case:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(10px);
}

.use-case h3 {
    margin-top: 0;
    color: var(--accent-primary);
}

/* FAQ */
.faq {
    background: #050507;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    background: transparent;
    color: #fff;
    width: 100%;
    padding: 24px 0;
    font-size: 18px;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--accent-primary);
}

.accordion-body p {
    color: var(--text-secondary);
    padding-bottom: 24px;
}

/* Footer */
.footer {
    background: #020203;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 60px 0;
}

.footer-logo {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

/* Status Bar */
.status-bar {
    display: inline-flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-secondary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #555;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.status-dot.online {
    background-color: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 5px var(--accent-green);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 15px var(--accent-green);
    }

    100% {
        opacity: 0.5;
        box-shadow: 0 0 5px var(--accent-green);
    }
}

.status-icon {
    font-size: 16px;
}

.accent-text {
    color: #fff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .status-bar {
        flex-direction: column;
        gap: 5px;
        border-radius: 20px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 30px;
    }
}

/* Reviews Carousel */
.reviews {
    background: #08080a;
    padding: 80px 0;
}

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

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
}

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

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

.review-name {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.review-stars {
    color: #ffd700;
    /* Gold for stars */
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    /* Hero Mobile */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero {
        min-height: auto;
        padding-top: 140px;
        /* Space for fixed header */
        padding-bottom: 60px;
        height: auto;
    }

    /* Smaller Section Titles */
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* Features Grid Compact */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
        border-radius: 16px;
    }

    .feature-icon {
        font-size: 32px;
        /* Smaller icons */
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    /* Instructions Compact */
    .step-number {
        font-size: 3rem;
    }

    .steps-grid {
        gap: 20px;
    }

    /* Offer Compact */
    .offer-banner {
        padding: 30px 20px;
    }

    .offer-content h2 {
        font-size: 1.8rem;
    }

    .offer-price .price-val {
        font-size: 2.5rem;
    }

    /* Platforms Compact */
    .platforms-grid {
        gap: 25px;
    }

    .platform-icon {
        font-size: 36px;
    }

    /* Pricing Compact */
    .pricing-card {
        padding: 30px 20px;
    }

    .price {
        font-size: 36px;
    }

    /* Reviews Compact */
    .reviews-carousel {
        grid-template-columns: 1fr;
    }

    .status-bar {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Performance Optimizations */
.btn-primary::before,
.feature-card::before,
.feature-card,
.pricing-card,
.platform-card,
.offer-banner::after {
    will-change: transform;
    /* Hardware acceleration hint */
    transform: translateZ(0);
}