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

:root {
    --bg-1: #09070f;
    --bg-2: #140d1f;
    --bg-3: #1d1230;
    --panel: rgba(10, 12, 24, 0.94);
    --panel-soft: rgba(18, 18, 38, 0.92);
    --line: rgba(0, 245, 255, 0.2);
    --line-strong: rgba(255, 45, 117, 0.26);
    --text: #edf7ff;
    --muted: #aab4d6;
    --accent: #00f5ff;
    --accent-2: #ff2d75;
    --blue: #7c8dff;
    --green: #00f5ff;
    --green-2: #7c4dff;
    --shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
    --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.2);
    --glow-cyan: 0 0 24px rgba(0, 245, 255, 0.18);
    --glow-pink: 0 0 28px rgba(255, 45, 117, 0.16);
    --radius: 22px;
    --radius-sm: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 16% 18%, rgba(0, 245, 255, 0.12) 0%, transparent 28%),
        radial-gradient(circle at 84% 16%, rgba(255, 45, 117, 0.1) 0%, transparent 22%),
        radial-gradient(circle at 80% 78%, rgba(124, 77, 255, 0.12) 0%, transparent 28%),
        linear-gradient(145deg, var(--bg-1) 0%, var(--bg-2) 42%, var(--bg-3) 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 18%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 120px);
    z-index: 0;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 18%, rgba(0, 245, 255, 0.035) 40%, transparent 56%),
        linear-gradient(300deg, transparent 22%, rgba(255, 45, 117, 0.03) 46%, transparent 64%);
    mix-blend-mode: screen;
    z-index: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 245, 255, 0.16);
    background: rgba(8, 10, 20, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.logo-circle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.18), rgba(255, 45, 117, 0.38));
    border: 1px solid rgba(0, 245, 255, 0.32);
    box-shadow: var(--glow-cyan);
}

.logo-circle img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #dffeff;
    text-shadow: 0 0 12px rgba(0, 245, 255, 0.22);
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-links-extended {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.nav-links-extended a {
    padding: 8px 12px;
    border-radius: 999px;
    color: #dde5ff;
    font-size: 0.9rem;
    transition: 0.22s ease;
}

.nav-links-extended a:hover,
.nav-links-extended a.current {
    color: #fff;
    background: rgba(0, 245, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(0, 245, 255, 0.28), 0 0 18px rgba(0, 245, 255, 0.08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn,
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover,
.btn-hero:hover {
    transform: translateY(-2px);
}

.btn {
    min-height: 44px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

.btn-primary-top,
.btn-primary {
    color: #06111a;
    background: linear-gradient(135deg, #00f5ff, #77fff7);
    box-shadow: 0 10px 24px rgba(0, 245, 255, 0.24);
    position: relative;
    overflow: hidden;
}

.btn-green,
.btn-warning {
    color: #fff;
    background: linear-gradient(135deg, #4a1f57, #ff2d75);
    box-shadow: 0 10px 24px rgba(255, 45, 117, 0.22);
    border: 1px solid rgba(255, 45, 117, 0.18);
    position: relative;
    overflow: hidden;
}

.btn-secondary {
    color: #fff;
    background: rgba(124, 77, 255, 0.16);
    border: 1px solid rgba(124, 77, 255, 0.24);
    position: relative;
    overflow: hidden;
}

.btn-primary-top::after,
.btn-primary::after,
.btn-green::after,
.btn-warning::after,
.btn-secondary::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 36%, transparent 70%, rgba(255, 255, 255, 0.08));
    pointer-events: none;
}

.main {
    margin-top: 108px;
    position: relative;
    z-index: 1;
}

.hero,
.section,
.cta-section,
.footer {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero {
    padding: 72px 0 42px;
    text-align: center;
}

.hero h1 {
    max-width: 980px;
    margin: 0 auto 22px;
    font-size: clamp(2.35rem, 5vw, 3.35rem);
    line-height: 1.12;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #aafcff 28%, #ff69a4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 24px rgba(0, 245, 255, 0.08);
}

.hero-description,
.welcome-box,
.panel-card,
.figure-card,
.text-card,
.steps-card,
.faq-item,
.cta-card,
.advantage-card,
.distribution-card,
.user-review-card,
.review-topic-card,
.featured-review-card,
.kpi-card,
.stat-box,
.comparison-table,
.rtp-table {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(20, 20, 40, 0.92), rgba(10, 12, 24, 0.96));
    border: 1px solid rgba(0, 245, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-description::before,
.welcome-box::before,
.panel-card::before,
.figure-card::before,
.text-card::before,
.steps-card::before,
.cta-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 245, 255, 0.34), rgba(255, 45, 117, 0));
}

.hero-description::after,
.welcome-box::after,
.panel-card::after,
.figure-card::after,
.text-card::after,
.steps-card::after,
.cta-card::after,
.faq-item::after,
.advantage-card::after,
.distribution-card::after,
.user-review-card::after,
.review-topic-card::after,
.featured-review-card::after,
.kpi-card::after,
.stat-box::after,
.comparison-table::after,
.rtp-table::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 45, 117, 0.34));
    pointer-events: none;
}

.hero-description {
    max-width: 1080px;
    margin: 0 auto 24px;
    padding: 26px 28px;
    text-align: left;
    box-shadow: var(--shadow), inset 0 0 0 1px rgba(124, 77, 255, 0.08);
}

.hero-description p,
.hero-description li,
.section-lead,
.panel-card p,
.text-card p,
.steps-card p,
.faq-item p,
.advantage-card p,
.footer p,
.footer a,
.footer-badge,
.stat-label,
.kpi-label,
.featured-review-meta,
.user-review-meta {
    color: var(--muted);
}

.panel-card p,
.text-card p,
.steps-card p,
.faq-item p,
.advantage-card p {
    margin: 0 0 14px;
}

.hero-buttons,
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-buttons {
    margin-bottom: 26px;
}

.btn-hero {
    min-width: 220px;
    padding: 15px 24px;
    border-radius: 16px;
    font-size: 0.95rem;
    box-shadow: var(--shadow-soft);
}

.hero-banner {
    max-width: 1080px;
    margin: 0 auto 32px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(26, 20, 46, 0.9), rgba(8, 11, 20, 0.97));
    border: 1px solid rgba(124, 77, 255, 0.22);
    box-shadow: var(--shadow), var(--glow-pink);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(112deg, transparent 0%, rgba(0, 245, 255, 0.08) 34%, transparent 56%),
        linear-gradient(296deg, transparent 16%, rgba(255, 45, 117, 0.08) 46%, transparent 68%);
    pointer-events: none;
}

.banner-image,
.section-media {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.banner-image {
    max-height: 520px;
}

.section-media {
    min-height: 240px;
    max-height: 380px;
}

.kpi-grid,
.card-grid,
.stats-grid,
.review-distribution-grid,
.user-reviews-grid,
.review-topic-grid,
.featured-reviews-list,
.advantage-grid {
    display: grid;
    gap: 18px;
}

.hero-stats {
    max-width: 1080px;
    margin: 0 auto 28px;
}

.kpi-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    align-items: stretch;
}

.card-grid,
.advantage-grid,
.review-topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-distribution-grid,
.featured-reviews-list {
    grid-template-columns: 1fr;
}

.user-reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section {
    padding: 30px 0 56px;
}

.section-title {
    margin-bottom: 14px;
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    line-height: 1.22;
    text-align: center;
    font-weight: 900;
    color: #fff;
}

.section-lead {
    max-width: 960px;
    margin: 0 auto 34px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
}

.welcome-box,
.panel-card,
.figure-card,
.text-card,
.steps-card,
.cta-card,
.faq-item,
.stat-box,
.distribution-card,
.user-review-card,
.review-topic-card,
.featured-review-card,
.kpi-card,
.advantage-card {
    padding: 22px;
}

.section-stack,
.content-stack {
    display: grid;
    gap: 18px;
}

.section-subgrid {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.figure-card img {
    width: 100%;
    min-height: 260px;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
}

.panel-card h3,
.text-card h3,
.steps-card h3,
.faq-item h3,
.advantage-card h3,
.review-topic-card h3,
.featured-review-card h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.35;
    display: block;
}

.inline-list,
.advantage-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.card-grid > .card-grid {
    grid-template-columns: inherit;
    gap: inherit;
}

.inline-list li,
.advantage-list li {
    display: block;
    list-style: none;
    padding: 12px 14px 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.035);
    color: #f0def1;
    line-height: 1.7;
    position: relative;
}

.inline-list li::before,
.advantage-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #00f5ff, #ff2d75);
}

.pill-list,
.review-tags,
.footer-badge-row,
.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-list span,
.review-tags span,
.footer-badge,
.page-badge,
.footer-badge-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(255, 45, 117, 0.18);
}

.badge-row {
    justify-content: center;
    margin-bottom: 12px;
}

.page-badge {
    color: #ffd6e5;
    background: rgba(255, 45, 117, 0.1);
    border-color: rgba(0, 245, 255, 0.2);
}

.icon-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 1080px;
    margin: 0 auto 24px;
}

.icon-points--compact {
    max-width: 980px;
}

.icon-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.035);
    color: #f0def1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.icon-point__svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    color: #00f5ff;
}

.icon-point__svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.stat-box,
.kpi-card,
.distribution-card {
    background:
        radial-gradient(circle at top right, rgba(255, 45, 117, 0.08), transparent 38%),
        linear-gradient(180deg, rgba(33, 20, 41, 0.9), rgba(16, 16, 24, 0.96));
}

.stat-value,
.kpi-value,
.review-topic-score {
    display: block;
    color: var(--accent);
    font-weight: 900;
}

.kpi-card strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
    font-weight: 900;
    text-align: center;
}

.kpi-card span {
    display: block;
    color: var(--muted);
    line-height: 1.6;
    text-align: center;
    max-width: 18ch;
    margin: 0 auto;
}

.stat-value {
    margin-bottom: 6px;
    font-size: 1.8rem;
}

.kpi-value {
    font-size: 1.55rem;
}

.kpi-label,
.stat-label {
    line-height: 1.6;
}

.distribution-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.distribution-bar {
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.distribution-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #00f5ff, #ff2d75);
}

.comparison-table,
.rtp-table {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow), inset 0 0 0 1px rgba(124, 77, 255, 0.05);
}

.comparison-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.comparison-row + .comparison-row {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.comparison-row.header {
    background: linear-gradient(90deg, rgba(0, 245, 255, 0.16), rgba(255, 45, 117, 0.1));
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.comparison-cell {
    padding: 16px 18px;
    color: #f0def1;
    line-height: 1.65;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 245, 255, 0.24);
    box-shadow: var(--shadow), 0 0 18px rgba(0, 245, 255, 0.08);
}

.steps-list {
    display: grid;
    gap: 14px;
    margin-top: 14px;
    padding-left: 18px;
}

.steps-list li {
    color: #f0def1;
    line-height: 1.75;
    padding-left: 4px;
}

.steps-list strong {
    color: #fff;
}

.user-review-top,
.user-review-head,
.featured-review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-review-top {
    margin-bottom: 14px;
    align-items: flex-start;
}

.user-review-head {
    flex: 1;
    min-width: 0;
}

.user-review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.user-review-name {
    font-weight: 800;
    color: #fff;
}

.user-review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.88rem;
}

.user-review-rating {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 45, 117, 0.12);
    color: #ffb6d0;
    font-weight: 800;
    white-space: nowrap;
}

.review-topic-score {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.featured-review-meta {
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-tags {
    justify-content: center;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(0, 245, 255, 0.1);
    color: #9cffff;
    font-size: 1.4rem;
}

.panel-note {
    margin-top: 16px;
}

.card-grid-spaced {
    margin-top: 18px;
}

.cta-section {
    padding: 10px 0 60px;
}

.cta-card {
    padding: 28px 30px;
    text-align: center;
    box-shadow: var(--shadow), var(--glow-pink);
}

.cta-card::before {
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 245, 255, 0.5), rgba(255, 45, 117, 0.24));
}

.cta-card h2 {
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(1.65rem, 4vw, 2.2rem);
    line-height: 1.22;
}

.cta-card p {
    max-width: 880px;
    margin: 0 auto 24px;
}

.footer {
    padding: 28px 0 56px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    margin-bottom: 18px;
    padding: 26px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(22, 18, 34, 0.92), rgba(10, 11, 20, 0.96));
    border: 1px solid rgba(124, 77, 255, 0.16);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.footer-top::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 245, 255, 0.28), rgba(255, 45, 117, 0));
}

.footer-brand h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.35rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}

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

.footer-badge-row {
    margin-bottom: 18px;
}

.footer-copy {
    display: grid;
    gap: 8px;
    padding: 18px 6px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

@media (max-width: 1080px) {
    .nav {
        flex-wrap: wrap;
    }

    .nav-links-extended {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }

    .card-grid,
    .advantage-grid,
    .review-topic-grid,
    .user-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid,
    .kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .icon-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100%, calc(100% - 28px));
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .nav {
        gap: 12px;
    }

    .nav-links-extended {
        display: none;
        width: 100%;
        padding-top: 6px;
    }

    .nav-links-extended.is-open {
        display: flex;
    }

    .nav-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .split-grid,
    .footer-top,
    .footer-links,
    .card-grid,
    .advantage-grid,
    .review-topic-grid,
    .user-reviews-grid,
    .stats-grid,
    .kpi-grid,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 38px 0 28px;
    }

    .section {
        padding: 24px 0 42px;
    }

    .hero-description,
    .welcome-box,
    .panel-card,
    .figure-card,
    .text-card,
    .steps-card,
    .cta-card,
    .faq-item,
    .stat-box,
    .distribution-card,
    .user-review-card,
    .review-topic-card,
    .featured-review-card,
    .kpi-card,
    .advantage-card,
    .footer-top {
        padding: 18px;
    }

    .btn,
    .btn-hero {
        width: 100%;
    }

    .banner-image,
    .figure-card img,
    .section-media {
        min-height: 200px;
    }
}
