:root {
    --bg: #fbfaff;
    --bg-soft: #f4f0ff;
    --panel: rgba(255, 255, 255, 0.88);
    --panel-2: rgba(249, 247, 255, 0.94);
    --panel-strong: #ffffff;
    --text: #171326;
    --muted: #6d6685;
    --line: rgba(109, 59, 255, 0.15);
    --line-soft: rgba(109, 59, 255, 0.08);
    --yellow: #6d3bff;
    --yellow-soft: #3b1e8a;
    --font-body: "Manrope", sans-serif;
    --font-display: "Onest", "Manrope", sans-serif;
    --radius: 24px;
    --radius-sm: 14px;
    --shadow: 0 28px 80px rgba(59, 30, 138, 0.12);
    --container: 1280px;
    --header-h: 78px;
    --violet: #6d3bff;
    --violet-deep: #3b1e8a;
    --violet-soft: #bca7ff;
    --lavender: #f4f0ff;
    --sky: #eef7ff;
    --ink: #171326;
    --muted-violet: #6d6685;
    --green: #25c26e;
}

body {
    color: var(--ink);
    background:
        radial-gradient(58rem 30rem at 82% -8%, rgba(188, 167, 255, 0.34), transparent 64%),
        radial-gradient(42rem 26rem at 4% 8%, rgba(238, 247, 255, 0.94), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #fbfaff 44%, #f7f3ff 100%);
}

body::before {
    background:
        linear-gradient(rgba(109, 59, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109, 59, 255, 0.045) 1px, transparent 1px);
    background-size: 128px 128px;
    mask-image: radial-gradient(circle at center, black 28%, transparent 78%);
    opacity: 0.52;
}

body::after {
    background:
        radial-gradient(18rem 18rem at 84% 16%, rgba(109, 59, 255, 0.12), transparent 68%),
        radial-gradient(22rem 16rem at 14% 76%, rgba(188, 167, 255, 0.2), transparent 66%);
}

a {
    color: inherit;
}

.site-header {
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(109, 59, 255, 0.13);
    box-shadow: 0 18px 48px rgba(59, 30, 138, 0.06);
    backdrop-filter: blur(22px);
}

.site-header.is-open {
    background: rgba(255, 255, 255, 0.96);
}

.logo {
    position: relative;
    color: var(--ink);
}

.logo img {
    display: none;
}

.home-page .site-header .logo img,
.home-page .site-footer .logo img,
.site-header .logo img,
.site-footer .logo img {
    display: none;
}

.logo::before {
    content: "";
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 38%),
        linear-gradient(135deg, #865fff, #5a2be8);
    box-shadow: 0 16px 34px rgba(109, 59, 255, 0.26);
}

.logo::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 12px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    clip-path: polygon(0 48%, 100% 0, 62% 100%, 46% 58%);
    transform: rotate(10deg);
    pointer-events: none;
}

.logo-text small {
    color: var(--muted-violet);
}

.desktop-nav {
    color: #5d5578;
}

.desktop-nav a:hover {
    color: var(--violet);
}

.burger {
    background: #ffffff;
    border-color: rgba(109, 59, 255, 0.18);
    box-shadow: 0 14px 30px rgba(59, 30, 138, 0.08);
}

.burger span {
    background: var(--violet-deep);
}

.mobile-menu {
    background: rgba(251, 250, 255, 0.98);
}

.mobile-menu nav a {
    color: var(--ink);
    background: #ffffff;
    border-color: rgba(109, 59, 255, 0.14);
    box-shadow: 0 12px 34px rgba(59, 30, 138, 0.08);
}

.btn,
.price-btn-v2,
button {
    letter-spacing: 0;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #7d52ff, #5b2df2);
    border-color: rgba(109, 59, 255, 0.9);
    box-shadow: 0 18px 38px rgba(109, 59, 255, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.btn-primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #855eff, #4620c6);
    border-color: rgba(70, 32, 198, 0.95);
    box-shadow: 0 22px 48px rgba(109, 59, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.btn-ghost {
    color: var(--violet-deep);
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(109, 59, 255, 0.18);
    box-shadow: 0 16px 34px rgba(59, 30, 138, 0.08);
}

.btn-ghost:hover {
    color: var(--violet);
    background: #ffffff;
    border-color: rgba(109, 59, 255, 0.34);
}

.card,
.section-panel .container,
.checkout-modal-dialog,
.subscription-terms-dialog,
.account-card,
.order-card,
.admin-card {
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 255, 0.92));
    border-color: rgba(109, 59, 255, 0.14);
    box-shadow: 0 22px 60px rgba(59, 30, 138, 0.1);
}

.section-kicker,
.eyebrow {
    color: var(--violet);
}

input,
textarea,
select {
    color: var(--ink);
    background: #ffffff;
    border-color: rgba(109, 59, 255, 0.18);
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(109, 59, 255, 0.76);
    box-shadow: 0 0 0 4px rgba(109, 59, 255, 0.12);
    outline: none;
}

.home-page {
    --home-bg: #fbfaff;
    --home-bg-2: #f4f0ff;
    --home-card: rgba(255, 255, 255, 0.86);
    --home-elev: #ffffff;
    --home-soft: #f2edff;
    --home-ink: #171326;
    --home-ink-2: #665f7f;
    --home-ink-3: #8a83a2;
    --home-line: rgba(109, 59, 255, 0.14);
    --home-accent: #6d3bff;
    --home-accent-2: #9d7cff;
    --home-gold-1: #a58bff;
    --home-gold-2: #6d3bff;
    --home-gold-3: #3b1e8a;
    --home-gold-4: #d8ccff;
    --home-green: #25c26e;
    --home-green-soft: rgba(37, 194, 110, 0.12);
    background:
        radial-gradient(54rem 30rem at 76% 0%, rgba(188, 167, 255, 0.44), transparent 64%),
        radial-gradient(44rem 24rem at 4% 14%, rgba(238, 247, 255, 0.94), transparent 64%),
        linear-gradient(180deg, #ffffff 0%, #fbfaff 42%, #f4f0ff 100%);
    color: var(--home-ink);
}

.home-page::before {
    background:
        linear-gradient(rgba(109, 59, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109, 59, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 18% 8%, rgba(109, 59, 255, 0.12), transparent 32rem),
        radial-gradient(circle at 88% 78%, rgba(188, 167, 255, 0.2), transparent 30rem);
    background-size: 120px 120px, 120px 120px, auto, auto;
    mask-image: linear-gradient(180deg, black, transparent 92%);
    -webkit-mask-image: linear-gradient(180deg, black, transparent 92%);
    opacity: 0.72;
}

.home-page::after {
    background:
        radial-gradient(ellipse at 70% 8%, rgba(255, 255, 255, 0.88), transparent 22rem),
        radial-gradient(ellipse at 20% 40%, rgba(255, 255, 255, 0.62), transparent 18rem);
    opacity: 0.72;
}

.home-page main {
    position: relative;
    overflow: hidden;
}

.home-page main::before {
    content: "";
    position: absolute;
    inset: 220px -12vw auto -10vw;
    height: 2300px;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 12% 8%, transparent 0 58px, rgba(109, 59, 255, 0.12) 59px 61px, transparent 62px),
        radial-gradient(ellipse at 18% 7%, transparent 0 78px, rgba(109, 59, 255, 0.1) 79px 81px, transparent 82px),
        radial-gradient(ellipse at 24% 9%, transparent 0 54px, rgba(109, 59, 255, 0.1) 55px 57px, transparent 58px),
        radial-gradient(ellipse at 82% 23%, transparent 0 64px, rgba(109, 59, 255, 0.1) 65px 67px, transparent 68px),
        radial-gradient(ellipse at 88% 22%, transparent 0 88px, rgba(109, 59, 255, 0.08) 89px 91px, transparent 92px),
        radial-gradient(ellipse at 76% 24%, transparent 0 50px, rgba(109, 59, 255, 0.09) 51px 53px, transparent 54px),
        radial-gradient(ellipse at 10% 62%, transparent 0 68px, rgba(109, 59, 255, 0.08) 69px 71px, transparent 72px),
        radial-gradient(ellipse at 18% 61%, transparent 0 98px, rgba(109, 59, 255, 0.07) 99px 101px, transparent 102px),
        radial-gradient(ellipse at 92% 78%, transparent 0 74px, rgba(109, 59, 255, 0.08) 75px 77px, transparent 78px);
    opacity: 0.55;
}

.home-page main > section {
    position: relative;
    z-index: 1;
}

.home-page .site-header {
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(109, 59, 255, 0.13);
}

.home-page .logo,
.home-page .desktop-nav a,
.home-page .desktop-nav a:hover {
    color: var(--home-ink);
}

.home-page .desktop-nav a {
    color: #625a7a;
}

.home-page .btn {
    border-radius: 16px;
}

.home-page .btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #7d52ff, #5a2be8);
    border-color: transparent;
    box-shadow: 0 22px 48px rgba(109, 59, 255, 0.26);
}

.home-page .btn-primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #8b66ff, #4620c6);
    box-shadow: 0 28px 60px rgba(109, 59, 255, 0.34);
}

.home-page .btn-ghost {
    color: var(--home-accent);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(109, 59, 255, 0.18);
}

.hero-v2 {
    padding: 74px 0 112px;
    overflow: hidden;
}

.hero-v2::before,
.hero-v2::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-v2::before {
    right: -14vw;
    top: 28px;
    width: 72vw;
    height: 44vw;
    max-height: 580px;
    border: 2px solid rgba(109, 59, 255, 0.11);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(-12deg);
}

.hero-v2::after {
    right: 8vw;
    top: 128px;
    width: 170px;
    height: 170px;
    background:
        linear-gradient(135deg, transparent 44%, rgba(109, 59, 255, 0.52) 45% 55%, transparent 56%),
        linear-gradient(45deg, transparent 40%, rgba(109, 59, 255, 0.22) 41% 48%, transparent 49%);
    clip-path: polygon(3% 48%, 100% 0, 63% 100%, 48% 58%);
    opacity: 0.22;
    transform: rotate(14deg);
}

.hero-grid-v2 {
    position: relative;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.9fr);
    gap: 58px;
}

.hero-grid-v2::before {
    content: "";
    position: absolute;
    left: 42%;
    top: 38px;
    width: 44%;
    height: 220px;
    border-top: 2px dashed rgba(109, 59, 255, 0.2);
    border-radius: 50%;
    transform: rotate(-10deg);
    pointer-events: none;
}

.live-badge {
    color: #1f9c5c;
    background: rgba(37, 194, 110, 0.12);
    border-color: rgba(37, 194, 110, 0.2);
}

.hero-copy-v2 h1 {
    max-width: 760px;
    color: var(--home-ink);
    font-size: clamp(42px, 5.6vw, 74px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-copy-v2 h1 em {
    background: linear-gradient(115deg, #6d3bff 0%, #3b1e8a 48%, #9b7cff 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-copy-v2 .lead {
    max-width: 620px;
    color: var(--home-ink-2);
    font-size: 19px;
}

.hero-stats-v2 {
    gap: 14px;
    padding-top: 0;
    border-top: 0;
}

.hero-stats-v2 div {
    padding: 16px;
    border: 1px solid rgba(109, 59, 255, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 42px rgba(59, 30, 138, 0.08);
}

.hero-stats-v2 strong {
    color: var(--home-accent);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.hero-stats-v2 span {
    color: var(--home-ink-2);
}

.hero-visual-v2 {
    position: relative;
    max-width: 560px;
}

.hero-visual-v2::before {
    content: "";
    position: absolute;
    inset: 4% -2% -4%;
    z-index: -1;
    border-radius: 42px;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.88), transparent 38%),
        linear-gradient(145deg, rgba(244, 240, 255, 0.94), rgba(255, 255, 255, 0.58));
    border: 1px solid rgba(109, 59, 255, 0.12);
    box-shadow: 0 34px 92px rgba(59, 30, 138, 0.16);
    transform: rotate(2deg);
}

.hero-visual-v2::after {
    content: "";
    position: absolute;
    inset: 12%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 59, 255, 0.2), transparent 68%);
    filter: blur(18px);
}

.hero-visual-v2--photo img {
    width: min(100%, 570px);
    filter: drop-shadow(0 36px 52px rgba(59, 30, 138, 0.24));
    animation: flightFloat 7s ease-in-out infinite;
}

.home-eyebrow {
    color: var(--home-accent);
    font-family: "JetBrains Mono", monospace;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-title {
    color: var(--home-ink);
    font-size: clamp(31px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: 0;
}

.home-lead {
    color: var(--home-ink-2);
}

.pricing-section-v2 {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(36rem 18rem at 86% -14%, rgba(109, 59, 255, 0.16), transparent 64%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 240, 255, 0.72));
    border: 1px solid rgba(109, 59, 255, 0.14);
    box-shadow: 0 32px 90px rgba(59, 30, 138, 0.11);
}

.pricing-section-v2::before {
    content: "";
    position: absolute;
    right: 30px;
    top: 34px;
    width: 280px;
    height: 120px;
    border-top: 2px dashed rgba(109, 59, 255, 0.18);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.pricing-section-v2 > * {
    position: relative;
}

.pricing-grid-v2 {
    align-items: stretch;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card-v2,
.review-card-v2,
.feature-card-v2,
.device-card-v2,
.flag-card-v2 {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 249, 255, 0.88));
    border-color: rgba(109, 59, 255, 0.14);
    box-shadow: 0 20px 52px rgba(59, 30, 138, 0.09);
}

.price-card-v2 {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.price-card-v2::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, rgba(109, 59, 255, 0), rgba(109, 59, 255, 0.68), rgba(188, 167, 255, 0));
    opacity: 0.8;
}

.price-card-v2.featured {
    background:
        radial-gradient(22rem 14rem at 50% -14%, rgba(255, 255, 255, 0.22), transparent 62%),
        linear-gradient(155deg, #6d3bff, #3b1e8a);
    border-color: transparent;
    box-shadow: 0 34px 76px rgba(109, 59, 255, 0.3);
    transform: translateY(-8px);
}

.price-card-v2.featured h3,
.price-card-v2.featured .price-amount-v2,
.price-card-v2.featured .price-features-v2 li {
    color: #ffffff;
}

.price-card-v2.featured .price-desc-v2,
.price-card-v2.featured .price-amount-v2 span {
    color: rgba(255, 255, 255, 0.74);
}

.price-tag-v2 {
    color: var(--home-accent);
}

.price-card-v2.featured .price-tag-v2 {
    color: #dcd3ff;
}

.price-discount-v2 {
    color: var(--violet-deep);
    background: #ffffff;
}

.price-old-v2 {
    color: #9088a6;
    text-decoration-color: rgba(109, 59, 255, 0.45);
}

.price-amount-v2,
.price-card-v2 h3,
.price-features-v2 li {
    color: var(--home-ink);
}

.price-desc-v2 {
    color: var(--home-ink-2);
}

.price-btn-v2 {
    color: var(--home-accent);
    background: rgba(109, 59, 255, 0.08);
    border-color: rgba(109, 59, 255, 0.15);
}

.price-btn-v2:hover,
.price-card-v2.featured .price-btn-v2 {
    color: #ffffff;
    background: linear-gradient(135deg, #7d52ff, #5a2be8);
    border-color: transparent;
}

.price-card-v2.featured .price-btn-v2 {
    background: #ffffff;
    color: var(--violet-deep);
}

.features-grid-v2 {
    gap: 18px;
}

.feature-card-v2 {
    border-radius: 28px;
}

.feature-card-v2::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(109, 59, 255, 0.12);
    border-radius: 50%;
}

.feature-card-v2::after {
    content: "";
    position: absolute;
    right: 28px;
    top: 28px;
    width: 54px;
    height: 54px;
    border-top: 2px solid rgba(109, 59, 255, 0.28);
    border-right: 2px solid rgba(109, 59, 255, 0.28);
    border-radius: 0 22px 0 0;
    transform: rotate(28deg);
}

.feature-card-v2:hover {
    border-color: rgba(109, 59, 255, 0.28);
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(59, 30, 138, 0.13);
}

.feature-card-v2--glow {
    background:
        radial-gradient(28rem 18rem at 14% -12%, rgba(109, 59, 255, 0.14), transparent 64%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 243, 255, 0.9));
    border-color: rgba(109, 59, 255, 0.18);
}

.feature-card-v2--accent {
    background:
        radial-gradient(24rem 16rem at 100% -10%, rgba(188, 167, 255, 0.26), transparent 60%),
        linear-gradient(180deg, #ffffff, #f7f3ff);
    border-color: rgba(109, 59, 255, 0.2);
}

.feature-card-v2 h3 {
    position: relative;
    z-index: 1;
    max-width: calc(100% - 92px);
    color: var(--home-ink);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.feature-card-v2 p {
    position: relative;
    z-index: 1;
    color: var(--home-ink-2);
}

.feature-media-v2,
.device-stack--image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    padding: 0;
    overflow: hidden;
    border-color: rgba(109, 59, 255, 0.16);
    background: #ffffff;
    box-shadow: 0 22px 48px rgba(59, 30, 138, 0.14);
}

.feature-media-v2 picture,
.device-stack--image picture {
    width: 100%;
    height: 100%;
    display: block;
}

.feature-media-v2 img,
.device-stack--image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: saturate(1.04) contrast(1.02);
}

.telegram-section-v2 {
    padding-top: 18px;
    padding-bottom: 42px;
}

.telegram-card-v2 {
    min-height: 220px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: clamp(28px, 4vw, 48px);
    color: #ffffff;
    border-radius: 34px;
    background:
        radial-gradient(34rem 18rem at 16% 8%, rgba(255, 255, 255, 0.22), transparent 62%),
        linear-gradient(135deg, #7d52ff 0%, #5a2be8 48%, #3b1e8a 100%);
    box-shadow: 0 34px 90px rgba(109, 59, 255, 0.3);
}

.telegram-card-v2::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -100px;
    width: 360px;
    height: 260px;
    border: 2px dashed rgba(255, 255, 255, 0.22);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(-14deg);
}

.telegram-card-v2::after {
    content: "";
    position: absolute;
    inset: auto -120px -160px auto;
    width: 420px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 62%);
}

.telegram-card-v2 > * {
    position: relative;
    z-index: 1;
}

.telegram-icon-v2 {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    flex: 0 0 82px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 20px 44px rgba(23, 19, 38, 0.18);
}

.telegram-icon-v2::before {
    content: "";
    width: 44px;
    height: 44px;
    background: #ffffff;
    clip-path: polygon(0 48%, 100% 0, 62% 100%, 46% 58%);
    transform: rotate(10deg);
}

.telegram-copy-v2 {
    display: grid;
    gap: 8px;
}

.telegram-card-v2 .home-eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.telegram-copy-v2 strong {
    max-width: 800px;
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0;
}

.telegram-copy-v2 small {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.55;
}

.telegram-action-v2 {
    justify-self: end;
    padding: 16px 22px;
    white-space: nowrap;
    color: var(--violet-deep);
    font-weight: 800;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 16px 36px rgba(23, 19, 38, 0.18);
}

.devices-grid-v2 {
    gap: 16px;
}

.device-card-v2 {
    border-radius: 20px;
}

.device-card-v2:hover {
    border-color: rgba(109, 59, 255, 0.34);
    box-shadow: 0 24px 56px rgba(59, 30, 138, 0.12);
}

.device-card-v2 strong {
    color: var(--home-ink);
}

.device-card-v2 span {
    color: var(--home-ink-3);
}

.locations-section-v2 {
    background:
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.48) 30%, transparent);
}

.flag-card-v2 b {
    color: var(--home-ink-2);
}

.flag-card-v2 small {
    color: #1f9c5c;
    background: rgba(37, 194, 110, 0.12);
}

.review-stars-v2 {
    color: var(--home-accent);
}

.review-card-v2 {
    gap: 0;
}

.review-avatar-v2 {
    width: 84px;
    height: 84px;
    margin: 0 0 18px;
    border-radius: 26px;
    border: 1px solid rgba(109, 59, 255, 0.16);
    box-shadow: 0 18px 40px rgba(59, 30, 138, 0.12);
}

.review-card-v2 p,
.review-author-v2 strong {
    color: var(--home-ink);
}

.review-author-v2 {
    border-top-color: rgba(109, 59, 255, 0.12);
}

.review-author-v2 > span {
    background: linear-gradient(135deg, var(--home-accent), var(--home-accent-2));
}

.faq-item-v2 {
    border-bottom-color: rgba(109, 59, 255, 0.14);
}

.faq-item-v2 summary {
    color: var(--home-ink);
}

.faq-item-v2 summary span {
    color: var(--home-accent);
    background: #ffffff;
    border-color: rgba(109, 59, 255, 0.16);
}

.faq-item-v2[open] summary span {
    color: #ffffff;
    background: var(--home-accent);
    border-color: var(--home-accent);
}

.faq-item-v2 div {
    color: var(--home-ink-2);
}

.cta-banner-v2,
.support-card-v2 {
    border-color: rgba(109, 59, 255, 0.14);
    background:
        radial-gradient(40rem 22rem at 84% 12%, rgba(188, 167, 255, 0.38), transparent 60%),
        linear-gradient(135deg, #ffffff, #f4f0ff 58%, #ffffff);
    box-shadow: 0 30px 82px rgba(59, 30, 138, 0.12);
}

.cta-banner-v2::before {
    background:
        radial-gradient(circle at 18% 22%, rgba(109, 59, 255, 0.12), transparent 42%),
        radial-gradient(circle at 82% 70%, rgba(188, 167, 255, 0.32), transparent 44%);
}

.cta-banner-v2 h2 {
    color: var(--home-ink);
}

.cta-banner-v2 p {
    color: var(--home-ink-2);
}

.support-card-v2::after {
    content: "";
    position: absolute;
    right: 30px;
    top: 22px;
    width: 220px;
    height: 120px;
    border-top: 2px dashed rgba(109, 59, 255, 0.18);
    border-radius: 50%;
    transform: rotate(-12deg);
}

.home-page .site-footer {
    color: var(--home-ink);
    background:
        radial-gradient(34rem 18rem at 78% 0%, rgba(188, 167, 255, 0.2), transparent 62%),
        linear-gradient(180deg, #ffffff, #f4f0ff);
    border-top: 1px solid rgba(109, 59, 255, 0.12);
}

.home-page .footer-title,
.home-page .footer-copy,
.home-page .footer-disclaimer {
    color: var(--home-ink-3);
}

.home-page .footer-nav a,
.home-page .footer-lead,
.home-page .footer-badges span {
    color: var(--home-ink-2);
}

.home-page .footer-nav a:hover {
    color: var(--home-accent);
}

.home-page .checkout-modal-dialog {
    background: #ffffff;
    border-color: rgba(109, 59, 255, 0.16);
}

.home-page .checkout-modal-plan,
.home-page .checkout-modal-benefits span,
.home-page .account-form input {
    color: var(--home-ink);
    background: #fbfaff;
    border-color: rgba(109, 59, 255, 0.16);
}

.checkout-modal-dialog .section-kicker {
    color: var(--violet);
}

.checkout-modal-dialog .account-note,
.checkout-legal-note,
.checkout-subscription-consent small,
.checkout-subscription-consent span {
    color: #6d6685;
}

.checkout-modal-dialog a,
.subscription-terms-link {
    color: var(--violet);
}

.checkout-modal-plan strong,
.checkout-modal-plan span {
    color: var(--ink);
}

.checkout-payment-method {
    color: #5f557a;
    background: #f4f0ff;
    border: 1px solid rgba(109, 59, 255, 0.14);
}

.checkout-payment-method--ru {
    color: #ffffff;
    background: var(--violet-deep);
    border-color: var(--violet-deep);
}

.account-alert-error,
.checkout-modal-dialog .account-alert-error {
    color: #5f1c2b;
    background: #fff0f3;
    border: 1px solid rgba(209, 55, 89, 0.32);
    box-shadow: none;
}

.btn:disabled,
button:disabled,
.btn-primary:disabled,
.checkout-modal-dialog button:disabled {
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #8c6dff, #6d3bff);
    border-color: transparent;
    opacity: 0.72;
    box-shadow: none;
}

.checkout-modal-backdrop,
.subscription-terms-backdrop {
    background: rgba(23, 19, 38, 0.38);
    backdrop-filter: blur(10px);
}

.sticky-cta {
    background: linear-gradient(135deg, #7d52ff, #5a2be8);
    box-shadow: 0 20px 50px rgba(109, 59, 255, 0.34);
}

.order-page {
    position: relative;
    overflow: hidden;
    padding-top: 42px;
    background:
        radial-gradient(38rem 24rem at 88% 4%, rgba(188, 167, 255, 0.22), transparent 68%),
        radial-gradient(30rem 20rem at 8% 26%, rgba(238, 247, 255, 0.8), transparent 64%);
}

.order-page::before,
.order-page::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border: 2px solid rgba(109, 59, 255, 0.08);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 999px;
}

.order-page::before {
    width: 360px;
    height: 140px;
    top: 86px;
    right: -92px;
    transform: rotate(-8deg);
}

.order-page::after {
    width: 300px;
    height: 110px;
    left: -110px;
    bottom: 15%;
    transform: rotate(10deg);
}

.order-shell {
    position: relative;
    z-index: 1;
}

.order-main.card {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.order-hero-v2 {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 28px;
    align-items: stretch;
    padding: clamp(28px, 4vw, 46px);
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(135deg, #835bff 0%, #6d3bff 46%, #3b1e8a 100%);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 34px;
    box-shadow: 0 34px 96px rgba(59, 30, 138, 0.28);
}

.order-hero-v2::before {
    content: "";
    position: absolute;
    right: -110px;
    top: -88px;
    width: 360px;
    height: 360px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.24), transparent 58%),
        conic-gradient(from 215deg, transparent 0 24%, rgba(255, 255, 255, 0.2) 24% 28%, transparent 28% 100%);
    border-radius: 50%;
    opacity: 0.72;
}

.order-hero-v2::after {
    content: "";
    position: absolute;
    right: clamp(24px, 6vw, 90px);
    bottom: 34px;
    width: 104px;
    height: 104px;
    background: rgba(255, 255, 255, 0.95);
    clip-path: polygon(0 48%, 100% 0, 62% 100%, 45% 59%);
    transform: rotate(9deg);
    filter: drop-shadow(0 28px 36px rgba(23, 19, 38, 0.24));
    opacity: 0.2;
}

.order-hero-v2 > * {
    position: relative;
    z-index: 1;
}

.order-hero-copy {
    max-width: 760px;
}

.order-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 9px 13px;
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    backdrop-filter: blur(18px);
}

.order-status span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.order-status strong {
    font-size: 14px;
}

.order-status--success::before,
.order-status--pending::before,
.order-status--warning::before,
.order-status--error::before,
.order-status--muted::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6ef0a6;
    box-shadow: 0 0 0 7px rgba(110, 240, 166, 0.15);
}

.order-status--pending::before,
.order-status--warning::before {
    background: #ffd36d;
    box-shadow: 0 0 0 7px rgba(255, 211, 109, 0.17);
}

.order-status--error::before {
    background: #ff8aa5;
    box-shadow: 0 0 0 7px rgba(255, 138, 165, 0.17);
}

.order-status--muted::before {
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.12);
}

.order-main .order-hero-copy h1 {
    max-width: 720px;
    margin: 20px 0 14px;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(38px, 5.2vw, 68px);
    line-height: 0.98;
    letter-spacing: 0;
}

.order-hero-copy > p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.56;
}

.order-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.order-hero-badges span {
    padding: 9px 12px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.order-hero-actions {
    display: flex;
    align-items: end;
    justify-content: end;
}

.order-hero-actions .btn {
    min-height: 58px;
    color: var(--violet-deep);
    background: #ffffff;
    border-color: transparent;
    box-shadow: 0 22px 50px rgba(23, 19, 38, 0.24);
}

.order-hero-actions .btn:hover {
    color: var(--violet-deep);
    background: #f8f5ff;
}

.order-hero-followup {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(280px, 1fr);
    gap: 18px;
    margin-top: 4px;
}

.order-hero-steps,
.order-hero-notes {
    margin: 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(18px);
}

.order-hero-steps {
    display: grid;
    gap: 12px;
    list-style: none;
    counter-reset: order-step;
}

.order-hero-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
}

.order-hero-steps li::before {
    counter-increment: order-step;
    content: counter(order-step);
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    color: var(--violet-deep);
    background: #ffffff;
    border-radius: 10px;
}

.order-hero-email-note,
.order-account-bridge p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.order-account-bridge {
    display: grid;
    gap: 8px;
}

.order-account-bridge strong {
    color: #ffffff;
}

.order-account-bridge-link {
    width: fit-content;
    margin-top: 6px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.22);
}

.order-pending-box,
.order-device-section,
.order-status-details,
.order-result-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 255, 0.88));
    border: 1px solid rgba(109, 59, 255, 0.14);
    box-shadow: 0 24px 70px rgba(59, 30, 138, 0.1);
}

.order-pending-box {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 20px;
}

.order-pending-box p {
    margin: 0;
    color: var(--muted-violet);
}

.order-device-section {
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 30px;
}

.order-device-section::after {
    content: "";
    position: absolute;
    right: -42px;
    top: 28px;
    width: 170px;
    height: 72px;
    border: 2px dashed rgba(109, 59, 255, 0.1);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 999px;
    transform: rotate(-8deg);
    pointer-events: none;
}

.order-section-head {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    max-width: 720px;
    margin-bottom: 22px;
}

.order-section-head h2,
.order-result-card h2 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: 0;
}

.order-section-head p:not(.section-kicker),
.order-result-card .section-subtitle,
.order-result-card .account-note {
    color: var(--muted-violet);
}

.order-device-panel {
    display: grid;
    gap: 18px;
    padding: clamp(18px, 3vw, 28px);
    background:
        linear-gradient(135deg, rgba(109, 59, 255, 0.08), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(109, 59, 255, 0.12);
    border-radius: 24px;
}

.order-device-headline {
    display: flex;
    align-items: center;
    gap: 14px;
}

.order-device-icon-wrap {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    background: #ffffff;
    border: 1px solid rgba(109, 59, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(59, 30, 138, 0.08);
}

.order-device-icon-wrap img {
    width: 30px;
    height: 30px;
}

.order-device-copy {
    display: grid;
    gap: 4px;
}

.order-device-eyebrow {
    color: var(--violet);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.order-device-copy strong {
    color: var(--ink);
    font-size: clamp(21px, 2.4vw, 30px);
    line-height: 1.1;
}

.order-device-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: device-step;
}

.order-device-steps li {
    position: relative;
    min-height: 96px;
    padding: 44px 14px 14px;
    color: var(--ink);
    font-weight: 800;
    background: #ffffff;
    border: 1px solid rgba(109, 59, 255, 0.12);
    border-radius: 18px;
}

.order-device-steps li::before {
    counter-increment: device-step;
    content: counter(device-step);
    position: absolute;
    left: 14px;
    top: 12px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, #8b63ff, #5a2be8);
    border-radius: 8px;
    font-size: 12px;
}

.order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.order-actions .btn,
.order-inline-form .btn,
.order-device-tab {
    border-radius: 14px;
}

.order-other-device-picker {
    margin-top: 16px;
    padding: 14px;
    background: rgba(244, 240, 255, 0.62);
    border: 1px solid rgba(109, 59, 255, 0.12);
    border-radius: 20px;
}

.order-other-device-picker summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 900;
}

.order-device-tabs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.order-device-tab {
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 88px;
    padding: 12px 8px;
    color: var(--muted-violet);
    background: #ffffff;
    border: 1px solid rgba(109, 59, 255, 0.12);
}

.order-device-tab img {
    width: 24px;
    height: 24px;
}

.order-device-tab.is-active,
.order-device-tab:hover {
    color: var(--violet-deep);
    border-color: rgba(109, 59, 255, 0.32);
    box-shadow: 0 14px 30px rgba(59, 30, 138, 0.08);
}

.order-result-grid--secondary {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1fr) minmax(260px, 0.86fr);
    gap: 18px;
    margin-top: 24px;
}

.order-result-card {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: clamp(20px, 2.5vw, 28px);
    border-radius: 26px;
}

.order-qr-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 138px;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: rgba(244, 240, 255, 0.72);
    border: 1px solid rgba(109, 59, 255, 0.1);
    border-radius: 20px;
}

.order-qr-copy strong {
    color: var(--ink);
}

.order-qr-copy p {
    margin: 5px 0 0;
    color: var(--muted-violet);
}

.order-qr-box {
    display: grid;
    place-items: center;
    width: 138px;
    min-height: 138px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid rgba(109, 59, 255, 0.14);
    border-radius: 20px;
    box-shadow: inset 0 0 0 4px rgba(244, 240, 255, 0.8);
}

.order-qr-box canvas,
.order-qr-box img {
    max-width: 112px;
    max-height: 112px;
}

.order-manual-access {
    padding: 14px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(109, 59, 255, 0.1);
    border-radius: 18px;
}

.order-manual-access summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 900;
}

.payment-key-box {
    overflow: auto;
    padding: 12px;
    color: var(--violet-deep);
    background: rgba(244, 240, 255, 0.8);
    border: 1px solid rgba(109, 59, 255, 0.12);
    border-radius: 14px;
}

.order-summary {
    display: grid;
    gap: 10px;
}

.order-summary .checkout-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(109, 59, 255, 0.1);
}

.order-summary .checkout-summary-row span {
    color: var(--muted-violet);
}

.order-summary .checkout-summary-row strong {
    color: var(--ink);
    text-align: right;
}

.order-support-box {
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 36%),
        linear-gradient(135deg, #7f55ff, #3b1e8a);
    border-color: transparent;
}

.order-support-box .section-kicker,
.order-support-box h2,
.order-support-box .section-subtitle {
    color: #ffffff;
}

.order-support-box .section-subtitle {
    opacity: 0.78;
}

.order-support-box .btn-primary {
    color: var(--violet-deep);
    background: #ffffff;
    border-color: transparent;
}

.order-status-details {
    margin-top: 24px;
    padding: 16px;
    border-radius: 24px;
}

.order-status-details summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 900;
}

.order-status-details .order-lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.order-lifecycle-step {
    position: relative;
    display: grid;
    gap: 7px;
    min-height: 128px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid rgba(109, 59, 255, 0.1);
    border-radius: 18px;
}

.order-lifecycle-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(109, 59, 255, 0.24);
    box-shadow: 0 0 0 7px rgba(109, 59, 255, 0.08);
}

.order-lifecycle-step strong {
    color: var(--ink);
}

.order-lifecycle-step p {
    margin: 0;
    color: var(--muted-violet);
    font-size: 14px;
    line-height: 1.45;
}

.order-lifecycle-step--done .order-lifecycle-dot {
    background: var(--green);
    box-shadow: 0 0 0 7px rgba(37, 194, 110, 0.12);
}

.order-lifecycle-step--pending .order-lifecycle-dot {
    background: #f2b544;
    box-shadow: 0 0 0 7px rgba(242, 181, 68, 0.14);
}

.order-lifecycle-step--error .order-lifecycle-dot {
    background: #e64b70;
    box-shadow: 0 0 0 7px rgba(230, 75, 112, 0.12);
}

.order-lifecycle-step--muted {
    opacity: 0.78;
}

.order-inline-form {
    margin-top: 2px;
}

.order-mobile-sticky-cta {
    background: rgba(255, 255, 255, 0.86);
    border-top: 1px solid rgba(109, 59, 255, 0.14);
    box-shadow: 0 -18px 42px rgba(59, 30, 138, 0.12);
    backdrop-filter: blur(18px);
}

.order-mobile-sticky-cta .btn {
    border-radius: 14px;
}

@keyframes flightFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(0, -12px, 0) rotate(-1deg);
    }
}

@media (max-width: 1180px) and (min-width: 921px) {
    .pricing-grid-v2 {
        grid-template-columns: repeat(4, minmax(210px, 1fr));
    }
}

@media (max-width: 920px) {
    :root {
        --header-h: 72px;
    }

    .hero-v2 {
        padding: 46px 0 76px;
    }

    .hero-grid-v2 {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-grid-v2::before,
    .hero-v2::after {
        display: none;
    }

    .hero-copy-v2 h1 {
        font-size: clamp(38px, 12vw, 58px);
        line-height: 1.02;
    }

    .hero-copy-v2 .lead {
        font-size: 17px;
    }

    .hero-stats-v2 {
        grid-template-columns: 1fr;
    }

    .hero-visual-v2 {
        max-width: 390px;
    }

    .hero-visual-v2::before {
        border-radius: 30px;
    }

    .pricing-section-v2 {
        padding: 34px 18px;
        border-radius: 26px;
    }

    .price-card-v2.featured {
        transform: none;
    }

    .pricing-grid-v2 {
        grid-template-columns: 1fr;
    }

    .feature-card-v2 {
        border-radius: 24px;
        padding: 24px;
    }

    .feature-card-v2 h3 {
        max-width: 100%;
    }

    .feature-card-v2::after {
        opacity: 0.5;
    }

    .support-card-v2::after {
        display: none;
    }

    .telegram-card-v2 {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: 0;
        border-radius: 28px;
    }

    .telegram-icon-v2 {
        width: 66px;
        height: 66px;
        border-radius: 22px;
    }

    .telegram-icon-v2::before {
        width: 34px;
        height: 34px;
    }

    .telegram-action-v2 {
        justify-self: start;
        white-space: normal;
        text-align: center;
    }

    .order-page {
        padding-top: 28px;
    }

    .order-hero-v2 {
        grid-template-columns: 1fr;
        min-height: auto;
        align-content: stretch;
        border-radius: 28px;
    }

    .order-hero-v2::after {
        right: 24px;
        bottom: 24px;
        width: 72px;
        height: 72px;
    }

    .order-hero-actions {
        justify-content: start;
    }

    .order-hero-actions .btn {
        width: 100%;
    }

    .order-hero-followup {
        grid-template-columns: 1fr;
    }

    .order-device-steps,
    .order-result-grid--secondary,
    .order-status-details .order-lifecycle-grid {
        grid-template-columns: 1fr;
    }

    .order-device-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .home-page .container,
    .container {
        width: min(100% - 28px, 1240px);
    }

    .home-page .btn-lg,
    .hero-cta-v2 .btn {
        width: 100%;
    }

    .hero-copy-v2 h1 {
        letter-spacing: 0;
    }

    .hero-stats-v2 div {
        padding: 14px;
    }

    .home-title {
        font-size: clamp(28px, 9vw, 38px);
    }

    .feature-media-v2,
    .feature-media-v2--large,
    .device-stack--image {
        min-height: 150px;
    }

    .feature-media-v2,
    .feature-media-v2--large,
    .device-stack--image {
        aspect-ratio: 16 / 9;
    }

    .telegram-copy-v2 strong {
        font-size: clamp(27px, 8vw, 36px);
    }

    .telegram-copy-v2 small {
        font-size: 15.5px;
    }

    .cta-banner-v2 {
        padding: 38px 22px;
        border-radius: 26px;
    }

    .order-page::before,
    .order-page::after,
    .order-device-section::after {
        display: none;
    }

    .order-hero-v2 {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .order-main .order-hero-copy h1 {
        font-size: clamp(34px, 11vw, 44px);
    }

    .order-hero-badges span,
    .order-status {
        width: 100%;
        justify-content: center;
    }

    .order-device-section,
    .order-result-card,
    .order-status-details {
        border-radius: 22px;
    }

    .order-device-panel {
        padding: 18px;
        border-radius: 20px;
    }

    .order-device-headline {
        align-items: flex-start;
    }

    .order-actions .btn {
        width: 100%;
    }

    .order-device-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .order-device-tab {
        min-height: 82px;
    }

    .order-qr-card {
        grid-template-columns: 1fr;
    }

    .order-qr-box {
        width: 100%;
        min-height: 156px;
    }

    .order-summary .checkout-summary-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .order-summary .checkout-summary-row strong {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .order-page .order-hero-v2 {
        min-height: auto;
        align-content: stretch;
        gap: 22px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
            linear-gradient(135deg, #835bff 0%, #6d3bff 46%, #3b1e8a 100%);
    }
}
