:root {
    --bg: #07111f;
    --bg2: #0c1b31;
    --card: rgba(255, 255, 255, 0.06);
    --line: rgba(255, 255, 255, 0.12);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.72);
    --soft: rgba(255, 255, 255, 0.5);
    --accent: #24d3ee;
    --accent2: #a855f7;
    --green: #2dd4bf;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 10%, rgba(36, 211, 238, .15), transparent 25%),
        radial-gradient(circle at 90% 20%, rgba(168, 85, 247, .16), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(59, 130, 246, .14), transparent 30%),
        linear-gradient(180deg, var(--bg), var(--bg2));
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    background: rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 24px;
}

.brand-badge {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    box-shadow: var(--shadow);
    font-size: 22px;
}

.nav {
    display: flex;
    gap: 24px;
    color: var(--soft);
    font-size: 14px;
}

.btn,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 18px;
    font-weight: 700;
    transition: .25s ease;
    cursor: pointer;
    border: 0;
}

.btn {
    background: linear-gradient(135deg, #ffffff, #dffcff);
    color: #081120;
    box-shadow: 0 18px 36px rgba(36, 211, 238, .22);
}

.btn:hover,
.btn-secondary:hover,
.btn-ghost:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent), #4fd1ff);
    color: #04111c;
    box-shadow: 0 18px 36px rgba(36, 211, 238, .25);
}

.btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero {
    padding: 44px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 34px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(36, 211, 238, .25);
    background: rgba(36, 211, 238, .08);
    border-radius: 999px;
    color: #a9f5ff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

h1 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: .98;
    margin: 0 0 18px;
    letter-spacing: -2px;
}

.hero p {
    font-size: 20px;
    color: var(--muted);
    max-width: 760px;
    margin: 0 0 24px;
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.micro-proof {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--soft);
    font-size: 14px;
    margin-bottom: 28px;
}

.micro-proof span::before {
    content: "✔";
    color: var(--green);
    margin-right: 8px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.stat {
    padding: 18px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    backdrop-filter: blur(10px);
}

.stat strong {
    display: block;
    font-size: 28px;
    margin-bottom: 6px;
}

.stat span {
    color: var(--soft);
    font-size: 14px;
}

.hero-visual {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 34px;
    padding: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 590px;
    background: #0a1321;
}

.hero-main-image img {
    width: 100%;
    height: 590px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: auto 18px 18px 18px;
    background: linear-gradient(180deg, rgba(6, 12, 22, .1), rgba(6, 12, 22, .88));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.hero-overlay small {
    display: inline-block;
    margin-bottom: 8px;
    color: #a9f5ff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-overlay h3 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.05;
}

.hero-overlay p {
    margin: 0;
    font-size: 15px;
    color: var(--muted);
}

.mini-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.mini-gallery img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

section.block {
    padding: 82px 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-head .tag {
    color: #9fefff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 800;
}

.section-head h2 {
    margin: 12px 0 14px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -1.5px;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 19px;
}

.grid-3,
.reviews,
.faq-grid,
.trust-row,
.gallery-grid {
    display: grid;
    gap: 18px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-grid {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card .icon {
    font-size: 34px;
    margin-bottom: 12px;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.gallery-card {
    padding: 0;
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-caption {
    padding: 18px;
}

.gallery-caption h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.gallery-caption p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.trust-row {
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 22px;
    padding: 18px;
    text-align: center;
    color: var(--muted);
    font-weight: 700;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.steps .step {
    display: flex;
    gap: 16px;
    padding: 20px;
    margin-bottom: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.step-num {
    min-width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #05101b;
    font-weight: 900;
    font-size: 22px;
}

.step h4 {
    margin: 2px 0 6px;
    font-size: 22px;
}

.step p {
    margin: 0;
    color: var(--muted);
}

.offer-box {
    background: linear-gradient(180deg, rgba(36, 211, 238, .09), rgba(168, 85, 247, .07));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.price-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 18px;
    flex-wrap: wrap;
}

.old-price {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: line-through;
    font-size: 20px;
}

.new-price {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
}

.badge-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 107, 107, .12);
    color: #ffd3d3;
    border: 1px solid rgba(255, 107, 107, .26);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}

.timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 18px 0 20px;
}

.timer-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 14px 10px;
    text-align: center;
}

.timer-box strong {
    font-size: 28px;
    display: block;
    margin-bottom: 4px;
}

.timer-box span {
    color: var(--soft);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checks {
    display: grid;
    gap: 10px;
    margin: 18px 0 24px;
}

.checks div {
    color: var(--muted);
}

.checks div::before {
    content: "✔";
    color: var(--green);
    margin-right: 10px;
    font-weight: 900;
}

.platforms {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.platforms span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #daf8ff;
    font-size: 14px;
    font-weight: 700;
}

.reviews {
    grid-template-columns: repeat(3, 1fr);
}

.review-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    align-items: center;
}

.review-id {
    display: flex;
    gap: 12px;
    align-items: center;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.stars {
    color: #ffd76b;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-name {
    font-weight: 800;
}

.review-meta {
    color: var(--soft);
    font-size: 14px;
}

.review p {
    margin: 0;
    color: var(--muted);
}

.faq-grid {
    grid-template-columns: 1fr 1fr;
}

.faq-item h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.faq-item p {
    margin: 0;
    color: var(--muted);
}

.download-bar {
    position: sticky;
    bottom: 0;
    z-index: 60;
    background: rgba(5, 11, 20, 0.88);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.download-inner {
    width: min(var(--max), calc(100% - 24px));
    margin: 0 auto;
    padding: 12px 0;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
}

.download-note {
    font-size: 14px;
    color: var(--muted);
}

footer {
    padding: 38px 0 120px;
    color: var(--soft);
    text-align: center;
    font-size: 14px;
}

.geo {
    color: #9fefff;
    font-weight: 800;
}

@media (max-width: 1100px) {

    .hero-grid,
    .two-col,
    .grid-3,
    .reviews,
    .faq-grid,
    .trust-row,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .nav {
        display: none;
    }

    .hero-grid,
    .two-col,
    .grid-3,
    .reviews,
    .faq-grid,
    .trust-row,
    .stats,
    .gallery-grid,
    .timer,
    .mini-gallery {
        grid-template-columns: 1fr;
    }

    .topbar-inner {
        padding: 14px 0;
    }

    .hero {
        padding-top: 24px;
    }

    h1 {
        letter-spacing: -1px;
    }

    .hero p,
    .section-head p {
        font-size: 17px;
    }

    .download-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .btn-secondary,
    .btn-ghost {
        width: 100%;
    }

    .hero-main-image img {
        height: 420px;
    }

    .gallery-card img {
        height: 220px;
    }
}