/* =========================================================
   VAU-PODAROK №1 — HOME LIQUID GLASS
   Static Apple-inspired glass interface
   No JS / WebGL / parallax / reveal / infinite animations
   ========================================================= */

.home3d-body {
    --lg-red: #ff2d3d;
    --lg-red-dark: #8d0010;
    --lg-text: #f7f7f9;
    --lg-muted: #aaaab2;
    --lg-muted-2: #777780;

    --lg-glass: rgba(255,255,255,.055);
    --lg-glass-strong: rgba(255,255,255,.085);
    --lg-border: rgba(255,255,255,.11);
    --lg-border-light: rgba(255,255,255,.17);

    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;

    color: var(--lg-text);

    background:
        radial-gradient(
            circle at 16% 4%,
            rgba(255,35,55,.15),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 26%,
            rgba(160,0,18,.11),
            transparent 27%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(255,35,55,.055),
            transparent 34%
        ),
        #050506;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Display",
        "SF Pro Text",
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
}

.home3d-body * {
    box-sizing: border-box;
}

.home3d-shell {
    position: relative;
    min-height: 100vh;
}

.home3d-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.014) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.014) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.65),
            transparent 88%
        );
}

.home3d-glow {
    display: none !important;
}

.home3d-container {
    width: min(calc(100% - 40px), 1180px);
    margin: 0 auto;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.home3d-topbar {
    position: sticky;
    top: 0;
    z-index: 50;

    padding: 13px 0;

    background: rgba(8,8,10,.68);

    border-bottom: 1px solid rgba(255,255,255,.07);

    backdrop-filter:
        blur(28px)
        saturate(150%);

    -webkit-backdrop-filter:
        blur(28px)
        saturate(150%);
}

.home3d-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

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

.home3d-logo {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;

    padding: 2px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 14px;

    background: rgba(255,255,255,.07);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 8px 24px rgba(0,0,0,.28);
}

.home3d-logo img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 11px;
}

.home3d-brand-name {
    color: #fff;

    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.025em;
}

.home3d-brand-subtitle {
    margin-top: 2px;

    color: var(--lg-muted-2);

    font-size: 11px;
}

.home3d-nav {
    display: flex;
    align-items: center;
    gap: 7px;
}

.home3d-nav a {
    padding: 9px 13px;

    border: 1px solid transparent;
    border-radius: 13px;

    color: #c6c6cc;

    font-size: 13px;
    font-weight: 650;

    transition:
        background .18s ease,
        border-color .18s ease,
        color .18s ease;
}

.home3d-nav a:hover {
    color: #fff;

    border-color: rgba(255,255,255,.10);

    background: rgba(255,255,255,.055);
}

.home3d-nav .home3d-nav-accent {
    color: #fff;

    border-color: rgba(255,255,255,.13);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.11),
            rgba(255,255,255,.045)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.14),
        0 8px 24px rgba(0,0,0,.22);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}


/* =========================================================
   HERO
   ========================================================= */

.home3d-hero {
    padding: 92px 0 70px;
}

.home3d-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.home3d-hero-copy {
    width: min(100%, 850px);
}

.home3d-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 12px;

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 999px;

    background: rgba(255,255,255,.055);

    color: #d9d9de;

    font-size: 12px;
    font-weight: 750;
    letter-spacing: .03em;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home3d-pill-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--lg-red);

    box-shadow: 0 0 12px rgba(255,45,61,.55);
}

.home3d-title {
    margin: 22px 0 20px;

    max-width: 850px;

    color: #fff;

    font-size: clamp(46px, 7.2vw, 82px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.058em;
}

.home3d-title span {
    display: block;

    background:
        linear-gradient(
            105deg,
            #fff 3%,
            #ffb5ba 45%,
            #ff3544 82%
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.home3d-lead {
    max-width: 700px;

    margin: 0;

    color: #b4b4bb;

    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.62;
}

.home3d-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 31px;
}

.home3d-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;

    padding: 0 20px;

    border: 1px solid var(--lg-border-light);
    border-radius: 17px;

    color: #fff;

    font-size: 14px;
    font-weight: 750;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.115),
            rgba(255,255,255,.045)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.20),
        inset 0 -1px 0 rgba(0,0,0,.12),
        0 12px 34px rgba(0,0,0,.26);

    backdrop-filter:
        blur(22px)
        saturate(145%);

    -webkit-backdrop-filter:
        blur(22px)
        saturate(145%);

    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease;
}

.home3d-btn:hover {
    transform: translateY(-2px);

    border-color: rgba(255,255,255,.25);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.15),
            rgba(255,255,255,.06)
        );
}

.home3d-btn-primary {
    border-color: rgba(255,95,108,.32);

    background:
        linear-gradient(
            145deg,
            rgba(255,55,72,.82),
            rgba(148,0,17,.72)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.28),
        0 12px 36px rgba(160,0,20,.23);
}

.home3d-btn-primary:hover {
    border-color: rgba(255,120,130,.45);

    background:
        linear-gradient(
            145deg,
            rgba(255,65,82,.9),
            rgba(160,0,19,.78)
        );
}

.home3d-mini-features {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: 28px;
}

.home3d-mini-features span {
    padding: 8px 11px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;

    background: rgba(255,255,255,.035);

    color: #919198;

    font-size: 12px;
}


/* Old animated 3D hero is intentionally removed */

.home3d-stage {
    display: none !important;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.home3d-section {
    padding: 62px 0;
}

.home3d-section-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.home3d-kicker {
    margin-bottom: 10px;

    color: #ff747e;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.home3d-section-title,
.home3d-cta h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(31px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.045em;
}

.home3d-section-text,
.home3d-cta p {
    max-width: 680px;

    margin: 15px 0 0;

    color: var(--lg-muted);

    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   LIQUID GLASS CARDS
   ========================================================= */

.home3d-formats,
.home3d-capabilities,
.home3d-steps {
    display: grid;
    gap: 16px;
}

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

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

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

.home3d-card {
    position: relative;

    display: block;

    min-width: 0;

    padding: 25px;

    overflow: hidden;

    border: 1px solid var(--lg-border);
    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.085),
            rgba(255,255,255,.035)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.14),
        inset 0 -1px 0 rgba(0,0,0,.15),
        0 18px 50px rgba(0,0,0,.24);

    backdrop-filter:
        blur(26px)
        saturate(145%);

    -webkit-backdrop-filter:
        blur(26px)
        saturate(145%);

    transform: none !important;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

a.home3d-card:hover {
    border-color: rgba(255,255,255,.19);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.105),
            rgba(255,255,255,.045)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        0 20px 55px rgba(0,0,0,.28);
}

.home3d-card::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            125deg,
            rgba(255,255,255,.075),
            transparent 24%,
            transparent 75%,
            rgba(255,255,255,.018)
        );
}

.home3d-featured {
    border-color: rgba(255,67,82,.25);

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(255,38,57,.10),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,.09),
            rgba(255,255,255,.035)
        );
}

.home3d-card-badge {
    display: inline-flex;

    margin-bottom: 18px;

    padding: 6px 9px;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;

    background: rgba(255,255,255,.055);

    color: #d4d4d9;

    font-size: 11px;
    font-weight: 750;
}

.home3d-card-icon {
    display: grid;
    place-items: center;

    width: 46px;
    height: 46px;

    margin-bottom: 19px;

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.105),
            rgba(255,255,255,.04)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15);

    font-size: 21px;
}

.home3d-card h3 {
    position: relative;

    margin: 0;

    color: #fff;

    font-size: 20px;
    font-weight: 760;
    letter-spacing: -.025em;
}

.home3d-card p {
    position: relative;

    margin: 11px 0 0;

    color: #9f9fa7;

    font-size: 14px;
    line-height: 1.62;
}

.home3d-card-link {
    position: relative;

    margin-top: 22px;

    color: #f1f1f3;

    font-size: 13px;
    font-weight: 720;
}

.home3d-step-number {
    margin-bottom: 22px;

    color: #ff6974;

    font-size: 13px;
    font-weight: 850;
    letter-spacing: .08em;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.home3d-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 34px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 29px;

    background:
        radial-gradient(
            circle at 95% 0,
            rgba(255,42,60,.10),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,.085),
            rgba(255,255,255,.032)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 22px 60px rgba(0,0,0,.27);

    backdrop-filter:
        blur(28px)
        saturate(145%);

    -webkit-backdrop-filter:
        blur(28px)
        saturate(145%);
}

.home3d-cta h2 {
    max-width: 650px;

    font-size: clamp(29px, 4vw, 46px);
}


/* =========================================================
   FOOTER
   ========================================================= */

.home3d-footer {
    margin-top: 40px;
    padding: 30px 0;

    border-top: 1px solid rgba(255,255,255,.07);

    color: #777780;

    font-size: 12px;
}

.home3d-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.home3d-footer strong {
    color: #bdbdc3;
}

.home3d-footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home3d-footer-socials-label {
    color: #777780;
}

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

.home3d-social-link {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 13px;

    background: rgba(255,255,255,.05);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.11);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        background .18s ease,
        border-color .18s ease;
}

.home3d-social-link:hover {
    border-color: rgba(255,255,255,.19);
    background: rgba(255,255,255,.085);
}

.home3d-social-link svg {
    width: 18px;
    height: 18px;

    fill: #d7d7dc;
}


/* =========================================================
   REMOVE ALL OLD MOTION / REVEAL STATES
   ========================================================= */

.home3d-reveal,
.home3d-ready .home3d-reveal,
[data-home3d-tilt] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
}

.home3d-body *,
.home3d-body *::before,
.home3d-body *::after {
    animation: none !important;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
    .home3d-capabilities {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .home3d-hero {
        padding-top: 74px;
    }
}

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

    .home3d-topbar {
        padding: 11px 0;
    }

    .home3d-brand-subtitle {
        display: none;
    }

    .home3d-nav a:not(.home3d-nav-accent) {
        display: none;
    }

    .home3d-logo {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    .home3d-logo img {
        border-radius: 10px;
    }

    .home3d-hero {
        padding: 62px 0 42px;
    }

    .home3d-title {
        font-size: clamp(42px, 13vw, 64px);
    }

    .home3d-section {
        padding: 45px 0;
    }

    .home3d-formats,
    .home3d-capabilities,
    .home3d-steps {
        grid-template-columns: 1fr;
    }

    .home3d-card {
        padding: 22px;
        border-radius: 22px;
    }

    .home3d-cta {
        display: block;

        padding: 26px;

        border-radius: 24px;
    }

    .home3d-cta .home3d-btn {
        margin-top: 24px;
    }

    .home3d-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 430px) {
    .home3d-brand-name {
        font-size: 13px;
    }

    .home3d-nav .home3d-nav-accent {
        padding: 8px 10px;
        font-size: 12px;
    }

    .home3d-title {
        letter-spacing: -.05em;
    }

    .home3d-actions {
        display: grid;
    }

    .home3d-btn {
        width: 100%;
    }

    .home3d-mini-features {
        gap: 7px;
    }
}


/* =========================================================
   LIQUID GLASS V2
   New homepage sections — 2026-09-16
   ========================================================= */


/* ---------- LIQUID MATERIAL ---------- */

.home3d-hero-panel,
.home3d-story-panel,
.home3d-tech-panel,
.home3d-trust-stat,
.home3d-extra-card,
.home3d-flow-line {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.085) 0%,
            rgba(255,255,255,.035) 42%,
            rgba(255,255,255,.018) 100%
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        inset 0 -1px 0 rgba(255,255,255,.025),
        0 28px 80px rgba(0,0,0,.30);
    backdrop-filter: blur(28px) saturate(155%);
    -webkit-backdrop-filter: blur(28px) saturate(155%);
}


/* subtle reflected light on the upper glass edge */

.home3d-hero-panel::before,
.home3d-story-panel::before,
.home3d-tech-panel::before,
.home3d-trust-stat::before,
.home3d-extra-card::before {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
    top: 0;
    left: 7%;
    width: 62%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.52),
        rgba(255,255,255,.12),
        transparent
    );
}


/* ruby refraction below glass */

.home3d-hero-panel::after,
.home3d-tech-panel::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    right: -210px;
    top: -230px;
    background:
        radial-gradient(
            circle,
            rgba(255,38,59,.18) 0%,
            rgba(190,0,24,.075) 35%,
            transparent 70%
        );
    filter: blur(12px);
}

.home3d-hero-panel > *,
.home3d-story-panel > *,
.home3d-tech-panel > * {
    position: relative;
    z-index: 1;
}


/* ---------- HERO V2 ---------- */

.home3d-hero-v2 {
    padding-top: 70px;
    padding-bottom: 54px;
}

.home3d-hero-v2 .home3d-container {
    width: min(calc(100% - 40px), 1180px);
}

.home3d-hero-panel {
    max-width: 1080px;
    margin: 0 auto;
    padding: clamp(38px, 6vw, 76px);
    border-radius: 38px;
    text-align: center;
    isolation: isolate;
}

.home3d-hero-panel::before {
    left: 15%;
    width: 70%;
}

.home3d-hero-panel .home3d-pill {
    margin-left: auto;
    margin-right: auto;
}

.home3d-hero-panel .home3d-title {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(48px, 7.5vw, 92px);
    line-height: .96;
    letter-spacing: -.065em;
}

.home3d-hero-panel .home3d-title span {
    display: block;
    margin-top: 10px;
    background:
        linear-gradient(
            115deg,
            #ffffff 0%,
            #ffffff 30%,
            #ff8d97 58%,
            #ff3346 82%,
            #ffffff 110%
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home3d-lead-v2 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
}

.home3d-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 760px;
    margin: 32px auto 0;
}

.home3d-hero-stats > div {
    padding: 17px 14px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.025)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home3d-hero-stats strong {
    display: block;
    color: #fff;
    font-size: clamp(18px, 2.4vw, 25px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.home3d-hero-stats span {
    display: block;
    margin-top: 6px;
    color: var(--lg-muted);
    font-size: 12px;
}

.home3d-free-offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    max-width: 660px;
    margin: 22px auto 0;
    padding: 15px 22px;
    border: 1px solid rgba(255,64,81,.22);
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            rgba(255,45,61,.115),
            rgba(255,255,255,.035)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 18px 50px rgba(112,0,15,.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.home3d-free-offer strong {
    color: #fff;
    font-size: 16px;
}

.home3d-free-offer span {
    color: #b8b8c0;
    font-size: 13px;
}

.home3d-hero-panel .home3d-actions {
    justify-content: center;
    margin-top: 26px;
}

.home3d-hero-note {
    margin: 17px auto 0;
    color: #85858e;
    font-size: 12px;
    line-height: 1.55;
}


/* ---------- MORE LIQUID BUTTONS ---------- */

.home3d-body .home3d-btn {
    position: relative;
    overflow: hidden;
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.22),
        0 16px 38px rgba(0,0,0,.24);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.home3d-body .home3d-btn::before {
    content: "";
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.58),
            transparent
        );
}

.home3d-body .home3d-btn-primary {
    background:
        linear-gradient(
            145deg,
            rgba(255,64,80,.94),
            rgba(181,0,23,.88)
        );
    border-color: rgba(255,116,127,.34);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.34),
        inset 0 -8px 24px rgba(88,0,11,.18),
        0 18px 46px rgba(189,0,24,.22);
}

.home3d-body .home3d-btn-secondary {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.095),
            rgba(255,255,255,.035)
        );
}


/* ---------- STORY ---------- */

.home3d-story-panel {
    max-width: 940px;
    margin: 0 auto;
    padding: clamp(34px, 5vw, 62px);
    border-radius: 32px;
}

.home3d-story-panel .home3d-section-title {
    max-width: 800px;
}

.home3d-story-panel p {
    max-width: 800px;
    color: #a9a9b1;
    font-size: 16px;
    line-height: 1.78;
}

.home3d-story-panel p + p {
    margin-top: 18px;
}

.home3d-story-panel p strong {
    color: #f3f3f5;
}

.home3d-story-big {
    color: #f1f1f4 !important;
    font-size: clamp(19px, 2.3vw, 25px) !important;
    line-height: 1.5 !important;
    letter-spacing: -.02em;
}


/* ---------- FLOW ---------- */

.home3d-flow-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 24px;
    padding: 18px 24px;
    border-radius: 22px;
    color: #aaaab2;
    font-size: 13px;
}

.home3d-flow-line b {
    color: rgba(255,80,96,.68);
}

.home3d-flow-line strong {
    color: #fff;
}


/* ---------- FORMATS V2 ---------- */

.home3d-formats-v2 {
    align-items: stretch;
}

.home3d-formats-v2 .home3d-format-card {
    display: flex;
    flex-direction: column;
}

.home3d-formats-v2 .home3d-card-link {
    margin-top: auto;
    padding-top: 25px;
}

.home3d-price {
    margin-top: 15px;
    color: #fff;
    font-size: clamp(31px, 4vw, 43px);
    font-weight: 900;
    letter-spacing: -.055em;
}

.home3d-format-intro {
    margin-top: 16px !important;
    color: #eeeef1 !important;
}

.home3d-check-list {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.home3d-check-list li {
    position: relative;
    padding-left: 25px;
    color: #aaaab2;
    font-size: 13px;
    line-height: 1.5;
}

.home3d-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff5968;
    font-weight: 900;
}


/* ---------- TRUST ---------- */

.home3d-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.home3d-trust-stat {
    padding: 34px 24px;
    border-radius: 28px;
    text-align: center;
}

.home3d-trust-stat strong,
.home3d-trust-stat span {
    position: relative;
    z-index: 1;
}

.home3d-trust-stat strong {
    display: block;
    color: #fff;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.055em;
}

.home3d-trust-stat span {
    display: block;
    margin-top: 10px;
    color: #92929b;
    font-size: 13px;
}

.home3d-trust-copy {
    max-width: 820px;
    margin: 30px auto 0;
    text-align: center;
}

.home3d-trust-copy p {
    color: #9e9ea7;
    font-size: 16px;
    line-height: 1.75;
}

.home3d-trust-copy p + p {
    margin-top: 16px;
}

.home3d-trust-copy strong {
    color: #ededf0;
}


/* ---------- 4 STEPS ---------- */

.home3d-steps-v2 {
    grid-template-columns: repeat(4, 1fr);
}

.home3d-steps-v2 .home3d-step {
    min-height: 100%;
}


/* ---------- EXTRAS ---------- */

.home3d-extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.home3d-extra-card {
    min-height: 250px;
    padding: 27px;
    border-radius: 27px;
}

.home3d-extra-card > * {
    position: relative;
    z-index: 1;
}

.home3d-extra-card h3 {
    margin-top: 18px;
}

.home3d-extra-price {
    display: block;
    margin-top: 8px;
    color: #ff6674;
    font-size: 20px;
    font-weight: 900;
}

.home3d-extra-card p {
    margin-top: 15px;
    color: #94949d;
    font-size: 13px;
    line-height: 1.65;
}


/* ---------- TECHNOLOGY ---------- */

.home3d-tech-panel {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(36px, 6vw, 68px);
    border-radius: 34px;
}

.home3d-tech-panel > p {
    max-width: 760px;
    color: #a4a4ad;
    font-size: 16px;
    line-height: 1.75;
}

.home3d-tech-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
}

.home3d-tech-chips span {
    padding: 11px 15px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    color: #e7e7ea;
    font-size: 12px;
    font-weight: 750;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home3d-tech-emotion {
    margin-top: 30px;
}

.home3d-tech-emotion strong {
    color: #f0f0f3;
}

.home3d-quote {
    margin: 28px 0 0;
    padding: 22px 24px;
    border: 1px solid rgba(255,74,91,.18);
    border-radius: 22px;
    color: #fff;
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 750;
    line-height: 1.55;
    background:
        linear-gradient(
            135deg,
            rgba(255,45,61,.10),
            rgba(255,255,255,.035)
        );
}


/* ---------- FINAL CTA V2 ---------- */

.home3d-cta-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: clamp(38px, 6vw, 68px);
    border-radius: 36px;
    text-align: center;
}

.home3d-cta-v2 > div:first-child {
    max-width: 790px;
    margin: 0 auto;
}

.home3d-cta-v2 h2 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(38px, 5vw, 64px);
    letter-spacing: -.055em;
}

.home3d-cta-v2 p {
    max-width: 690px;
    margin-left: auto;
    margin-right: auto;
}

.home3d-final-promise {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 620px;
    margin: 22px auto 0;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 19px;
    background: rgba(255,255,255,.04);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

.home3d-final-promise strong {
    color: #fff;
}

.home3d-final-promise span {
    color: #8f8f98;
    font-size: 12px;
}

.home3d-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.home3d-final-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.home3d-final-meta span {
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 999px;
    color: #a5a5ad;
    font-size: 11px;
    background: rgba(255,255,255,.035);
}

.home3d-final-words {
    margin-top: 4px !important;
    color: #9d9da6 !important;
    line-height: 1.7 !important;
}

.home3d-final-words strong {
    color: #fff;
}


/* ---------- EXISTING CARDS: STRONGER GLASS ---------- */

.home3d-body .home3d-card {
    border-color: rgba(255,255,255,.105);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.072),
            rgba(255,255,255,.026) 48%,
            rgba(255,255,255,.016)
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.13),
        0 24px 64px rgba(0,0,0,.25);
    backdrop-filter: blur(26px) saturate(145%);
    -webkit-backdrop-filter: blur(26px) saturate(145%);
}

.home3d-body .home3d-featured {
    border-color: rgba(255,71,88,.22);
    background:
        radial-gradient(
            circle at 80% 5%,
            rgba(255,37,56,.13),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.025)
        );
}


/* ---------- SECTION SPACING ---------- */

.home3d-body .home3d-section {
    padding-top: 74px;
    padding-bottom: 74px;
}

.home3d-body .home3d-section-head {
    margin-bottom: 30px;
}


/* ---------- TABLET ---------- */

@media (max-width: 980px) {

    .home3d-steps-v2,
    .home3d-extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home3d-trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* ---------- MOBILE ---------- */

@media (max-width: 760px) {

    .home3d-hero-v2 {
        padding-top: 28px;
        padding-bottom: 30px;
    }

    .home3d-hero-v2 .home3d-container,
    .home3d-body .home3d-container {
        width: min(calc(100% - 24px), 1180px);
    }

    .home3d-hero-panel {
        padding: 31px 18px 27px;
        border-radius: 28px;
    }

    .home3d-hero-panel .home3d-title {
        font-size: clamp(42px, 13vw, 62px);
        line-height: .98;
        letter-spacing: -.06em;
    }

    .home3d-lead-v2 {
        font-size: 16px;
        line-height: 1.58;
    }

    .home3d-hero-stats {
        grid-template-columns: 1fr;
        gap: 7px;
        margin-top: 25px;
    }

    .home3d-hero-stats > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 13px 15px;
        border-radius: 16px;
        text-align: left;
    }

    .home3d-hero-stats strong {
        font-size: 18px;
    }

    .home3d-hero-stats span {
        margin-top: 0;
        text-align: right;
    }

    .home3d-free-offer {
        padding: 14px 13px;
        border-radius: 17px;
    }

    .home3d-hero-panel .home3d-actions,
    .home3d-final-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .home3d-hero-panel .home3d-btn,
    .home3d-final-actions .home3d-btn {
        width: 100%;
        justify-content: center;
    }

    .home3d-story-panel,
    .home3d-tech-panel {
        padding: 28px 21px;
        border-radius: 27px;
    }

    .home3d-flow-line {
        gap: 7px;
        padding: 15px;
        border-radius: 18px;
    }

    .home3d-flow-line b {
        display: none;
    }

    .home3d-flow-line span,
    .home3d-flow-line strong {
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255,255,255,.045);
    }

    .home3d-trust-grid,
    .home3d-steps-v2,
    .home3d-extras-grid {
        grid-template-columns: 1fr;
    }

    .home3d-trust-stat {
        padding: 25px 20px;
        border-radius: 22px;
    }

    .home3d-extra-card {
        min-height: 0;
        padding: 23px;
        border-radius: 23px;
    }

    .home3d-tech-chips {
        gap: 7px;
    }

    .home3d-tech-chips span {
        padding: 9px 12px;
    }

    .home3d-cta-v2 {
        padding: 31px 18px;
        border-radius: 28px;
    }

    .home3d-cta-v2 h2 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .home3d-final-meta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home3d-body .home3d-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

}


/* ---------- SMALL MOBILE ---------- */

@media (max-width: 430px) {

    .home3d-hero-panel .home3d-title {
        font-size: 42px;
    }

    .home3d-hero-panel {
        padding-left: 15px;
        padding-right: 15px;
    }

    .home3d-story-panel,
    .home3d-tech-panel {
        padding-left: 18px;
        padding-right: 18px;
    }

}

/* =========================================================
   SALE PRICES — 2026-09
   ========================================================= */

.home3d-body .sale-current {
    display: inline-block;
}

.home3d-body .sale-main-row,
.home3d-body .sale-extra-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.home3d-body .sale-old {
    display: inline-block;

    color: #ff4352;

    font-size: .58em;
    font-weight: 700;
    line-height: 1;

    text-decoration-line: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #ff4352;

    opacity: .9;
}

.home3d-body .sale-old-extra {
    font-size: 14px;
}

.home3d-body .sale-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    margin-top: 8px;
    padding: 6px 10px;

    border: 1px solid rgba(255,67,82,.30);
    border-radius: 999px;

    background:
        linear-gradient(
            145deg,
            rgba(255,67,82,.16),
            rgba(255,67,82,.07)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 8px 24px rgba(255,20,45,.08);

    color: #ff5b68;

    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .02em;

    white-space: nowrap;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home3d-body .home3d-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.home3d-body .home3d-price .sale-badge {
    flex-basis: auto;
}

.home3d-body .sale-final-price {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
}

@media (max-width: 430px) {
    .home3d-body .sale-badge {
        font-size: 10px;
        padding: 5px 8px;
    }

    .home3d-body .sale-old-extra {
        font-size: 13px;
    }
}


/* =========================================================
   SITE PROFILE DROPDOWN — HOME V3
   ========================================================= */

.home3d-nav .site-profile-menu {
    position: relative;
    flex: 0 0 auto;
}

.home3d-nav .site-profile-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    cursor: pointer;
    font: inherit;
}

.site-profile-chevron {
    display: inline-block;
    font-size: 14px;
    line-height: 1;

    transition: transform .2s ease;
}

.site-profile-menu.is-open
.site-profile-chevron {
    transform: rotate(180deg);
}

.home3d-nav .site-profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;

    width: max-content;
    min-width: 190px;

    padding: 7px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-6px);

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(30,30,32,.88),
            rgba(8,8,10,.82)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 20px 60px rgba(0,0,0,.45);

    backdrop-filter: blur(26px) saturate(145%);
    -webkit-backdrop-filter:
        blur(26px) saturate(145%);

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;

    z-index: 300;
}

.home3d-nav
.site-profile-menu.is-open
.site-profile-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.home3d-nav .site-profile-dropdown a {
    display: flex;
    align-items: center;

    min-height: 42px;
    padding: 10px 12px;

    border-radius: 12px;

    color: rgba(255,255,255,.94);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;

    transition:
        background .18s ease,
        transform .18s ease;
}

.home3d-nav .site-profile-dropdown a:hover {
    background: rgba(255,255,255,.09);
    transform: none;
}

@media (max-width: 760px) {
    .home3d-nav .site-profile-trigger {
        padding-left: 11px;
        padding-right: 11px;
    }

    .home3d-nav .site-profile-dropdown {
        right: 0;
        min-width: 180px;
    }
}

/* =========================================================
   INSTRUCTIONS STICKY HEADER FIX V1
   page-shell overflow was blocking position: sticky
   ========================================================= */

body:not(.home3d-body) > .page-shell {
    overflow: visible;
}

body:not(.home3d-body) > .page-shell > .home3d-topbar {
    position: sticky;
    top: 0;
    z-index: 200;
}

/* =========================================================
   UNIFIED MOBILE HEADER LAYOUT V1
   Keep brand + profile inside the common site field
   ========================================================= */

@media (max-width: 760px) {

    .home3d-topbar .home3d-container {
        width: calc(100% - 24px);
        max-width: 1180px;
    }

    .home3d-topbar-inner {
        gap: 10px;
    }

    .home3d-brand {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
    }

    .home3d-brand-name {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .home3d-nav {
        flex: 0 0 auto;
        min-width: 0;
    }

    .home3d-nav .site-profile-menu {
        flex: 0 0 auto;
    }

    .home3d-nav .site-profile-trigger {
        white-space: nowrap;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 430px) {

    .home3d-topbar-inner {
        gap: 8px;
    }

    .home3d-brand {
        gap: 8px;
    }

    .home3d-logo {
        width: 38px;
        height: 38px;
    }

    .home3d-brand-name {
        font-size: 12px;
    }

    .home3d-nav .site-profile-trigger {
        gap: 5px;
        padding: 8px 9px;
        font-size: 12px;
    }
}

/* =========================================================
   HEADER TITLE TWO LINES V1
   ========================================================= */

.home3d-topbar .home3d-brand-name {
    white-space: normal;
    line-height: 1.18;
}

/* =========================================================
   UNIFIED HEADER POLISH V1
   Full brand image + premium rounded profile button
   ========================================================= */

/* Brand image: show the complete original image without cropping */
.home3d-topbar .home3d-logo {
    padding: 3px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.035)
        );

    border: 1px solid rgba(255,255,255,.14);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.15),
        0 8px 24px rgba(0,0,0,.24);
}

.home3d-topbar .home3d-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    background: #08080a;
}

/* Profile: premium Liquid Glass capsule */
.home3d-nav .site-profile-trigger {
    min-height: 38px;
    padding: 9px 15px;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;

    color: #fff;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.13),
            rgba(255,255,255,.045)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        inset 0 -1px 0 rgba(255,255,255,.035),
        0 8px 26px rgba(0,0,0,.26);

    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);

    transition:
        background .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.home3d-nav .site-profile-trigger:hover {
    border-color: rgba(255,255,255,.24);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.18),
            rgba(255,255,255,.065)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.22),
        0 10px 30px rgba(0,0,0,.30);
}

.home3d-nav .site-profile-trigger:active {
    transform: scale(.98);
}

.home3d-nav .site-profile-menu.is-open .site-profile-trigger {
    border-color: rgba(255,255,255,.25);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.18),
            rgba(255,255,255,.07)
        );
}

@media (max-width: 760px) {
    .home3d-nav .site-profile-trigger {
        min-height: 36px;
        padding: 8px 12px;
        border-radius: 999px;
    }
}

@media (max-width: 430px) {
    .home3d-nav .site-profile-trigger {
        min-height: 34px;
        padding: 7px 10px;
        font-size: 12px;
    }
}

/* =========================================================
   HOME AI ORDER MODAL V1
   ========================================================= */

.ai-order-lock {
    overflow: hidden;
}

.ai-order-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    background: rgba(3,3,6,.72);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        opacity .22s ease,
        visibility .22s ease;
}

.ai-order-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ai-order-dialog {
    position: relative;

    width: min(100%, 520px);

    padding: 32px;

    border: 1px solid rgba(255,255,255,.14);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(30,30,36,.94),
            rgba(10,10,14,.96)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 30px 80px rgba(0,0,0,.55);

    transform: translateY(14px) scale(.98);

    transition: transform .22s ease;
}

.ai-order-modal.is-open .ai-order-dialog {
    transform: translateY(0) scale(1);
}

.ai-order-close {
    position: absolute;
    top: 14px;
    right: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    padding: 0;

    cursor: pointer;

    color: rgba(255,255,255,.82);
    font-size: 25px;
    line-height: 1;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;

    background: rgba(255,255,255,.07);
}

.ai-order-kicker {
    margin-bottom: 10px;

    color: rgba(255,255,255,.65);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ai-order-dialog h2 {
    max-width: 420px;
    margin: 0;

    color: #fff;

    font-size: clamp(25px, 5vw, 34px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.ai-order-dialog > p {
    margin: 14px 0 22px;

    color: rgba(255,255,255,.66);

    font-size: 15px;
    line-height: 1.55;
}

.ai-order-platforms {
    display: grid;
    gap: 9px;
}

.ai-order-platform {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    min-height: 58px;

    padding: 14px 16px;

    color: #fff;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.09),
            rgba(255,255,255,.035)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.09);

    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease;
}

.ai-order-platform-vk {
    border-color: rgba(255,255,255,.17);
}

.ai-order-platform-vk:hover {
    transform: translateY(-1px);

    border-color: rgba(255,255,255,.25);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.14),
            rgba(255,255,255,.055)
        );
}

.ai-order-platform-soon {
    opacity: .46;
    cursor: default;
}

.ai-order-status {
    flex: 0 0 auto;

    color: rgba(255,255,255,.58);

    font-size: 13px;
    font-weight: 700;
}

.ai-order-platform-vk .ai-order-status {
    color: #fff;
}

.ai-order-card {
    width: 100%;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

@media (max-width: 600px) {

    .ai-order-modal {
        padding: 14px;
    }

    .ai-order-dialog {
        padding: 27px 18px 20px;
        border-radius: 25px;
    }

    .ai-order-close {
        top: 11px;
        right: 11px;
        width: 35px;
        height: 35px;
    }

    .ai-order-platform {
        min-height: 54px;
        padding: 13px 14px;
        border-radius: 16px;
    }
}
