:root {
    color-scheme: dark;
    --bg: #0a0a0d;
    --surface: rgba(21, 21, 27, 0.86);
    --surface-solid: #15151b;
    --surface-2: #1c1c24;
    --border: #2a241f;
    --border-soft: rgba(255, 122, 26, 0.18);
    --text: #f5f5f7;
    --text-2: #c8c8d0;
    --hint: #8e8e96;
    --accent: #ff7a1a;
    --accent-hover: #ff9347;
    --accent-deep: #e85f00;
    --accent-soft: rgba(255, 122, 26, 0.16);
    --accent-strong: rgba(255, 122, 26, 0.28);
    --accent-glow: rgba(255, 110, 30, 0.45);
    --amber: #ffb627;
    --amber-soft: rgba(255, 182, 39, 0.16);
    --green: #30d158;
    --green-soft: rgba(48, 209, 88, 0.14);
    --danger: #ff453a;
    --pink: #ff5c93;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Unbounded", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% -12%, rgba(255, 122, 26, 0.20), rgba(255, 122, 26, 0.08) 18rem, transparent 36rem),
        radial-gradient(circle at 102% 12%, rgba(255, 147, 71, 0.16), rgba(255, 122, 26, 0.06) 16rem, transparent 34rem),
        linear-gradient(180deg, #0f0b09 0%, #0a0a0d 34rem),
        var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.shop-choice-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

.page-shell {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
}

.page-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(10, 10, 13, 0) 0%, rgba(10, 10, 13, 0.54) 58%, rgba(10, 10, 13, 0.96) 100%),
        repeating-linear-gradient(90deg, rgba(255, 122, 26, 0.025) 0 1px, transparent 1px 92px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 15px 0;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 8px -10px;
    z-index: -1;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(10, 10, 13, 0.84);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(20px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 900;
    letter-spacing: 0;
}

.brand-mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 122, 26, 0.42);
    border-radius: 14px;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 182, 39, 0.85), transparent 32%),
        linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 0 30px rgba(255, 122, 26, 0.42);
}

.brand-mark img {
    display: block;
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.brand-text {
    font-family: "Unbounded", sans-serif;
    font-size: 15px;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.site-nav a,
.header-action,
.secondary-action {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 0 16px;
    color: var(--text-2);
    font-size: 14px;
    font-weight: 800;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.header-action:hover,
.secondary-action:hover {
    color: var(--text);
    border-color: var(--border-soft);
    background: var(--accent-soft);
    transform: translateY(-1px);
}

.header-action {
    border: 1px solid var(--border);
    background: var(--surface-solid);
    color: var(--text);
}

.hero {
    width: min(1180px, calc(100% - 32px));
    min-height: calc(100vh - 76px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.84fr);
    align-items: center;
    gap: 58px;
    padding: 50px 0 86px;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: "Unbounded", sans-serif;
    letter-spacing: 0;
}

h1 {
    max-width: 850px;
    margin-bottom: 22px;
    font-size: clamp(54px, 8.6vw, 124px);
    line-height: 0.9;
    text-transform: uppercase;
    text-shadow: 0 0 42px rgba(255, 122, 26, 0.22);
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1;
}

h3 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 660px;
    margin-bottom: 30px;
    color: var(--text-2);
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.58;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.primary-action {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid rgba(255, 182, 39, 0.28);
    border-radius: 14px;
    padding: 0 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%),
        linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 18px 48px rgba(255, 110, 30, 0.38);
    color: #fff;
    font-weight: 950;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.primary-action:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow: 0 24px 70px rgba(255, 110, 30, 0.50);
}

.action-arrow {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
}

.secondary-action {
    border: 1px solid var(--border);
    background: var(--surface);
}

.shop-choice {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
}

.shop-choice[hidden] {
    display: none;
}

.shop-choice-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 122, 26, 0.18), transparent 34rem),
        rgba(4, 4, 6, 0.72);
    backdrop-filter: blur(18px);
    cursor: pointer;
}

.shop-choice-dialog {
    position: relative;
    width: min(560px, 100%);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 22px;
    background:
        linear-gradient(145deg, rgba(255, 122, 26, 0.12), transparent 34%),
        rgba(15, 15, 20, 0.94);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.62), 0 0 48px rgba(255, 110, 30, 0.18);
    animation: shopChoiceIn 180ms ease-out;
}

.shop-choice-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.shop-choice-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.shop-choice-head h2 {
    margin: 0;
    font-size: clamp(26px, 5vw, 38px);
}

.shop-choice-close {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--surface-solid);
    color: var(--text);
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease;
}

.shop-choice-close:hover {
    background: var(--accent-soft);
    transform: translateY(-1px);
}

.shop-choice-close svg {
    width: 20px;
    height: 20px;
}

.shop-choice-grid {
    display: grid;
    gap: 10px;
}

.shop-choice-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 82px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(21, 21, 27, 0.84);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.shop-choice-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-soft);
    background: rgba(28, 28, 36, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.shop-choice-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 15px;
    color: #fff;
}

.shop-choice-icon svg {
    width: 24px;
    height: 24px;
}

.shop-choice-tg .shop-choice-icon {
    background: linear-gradient(135deg, #29b6f6, #1687d9);
}

.shop-choice-vk .shop-choice-icon {
    background: linear-gradient(135deg, #2688eb, #1464b8);
}

.shop-choice-web .shop-choice-icon {
    background: linear-gradient(135deg, #ff7a1a, #ef4f08);
    box-shadow: 0 10px 28px rgba(255, 105, 18, 0.24);
}

.shop-choice-card strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text);
    font-size: 15px;
    font-weight: 900;
}

.shop-choice-card small {
    display: block;
    color: var(--hint);
    font-size: 12px;
    line-height: 1.35;
}

@keyframes shopChoiceIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-card p,
.plan-card p,
.flow-grid p,
.calculator-copy p {
    color: var(--hint);
    line-height: 1.55;
}

.hero-panel {
    justify-self: end;
    width: min(100%, 390px);
}

.hero-phone-shot {
    position: relative;
    width: min(100%, 390px);
    margin: 0 auto;
    filter: none;
    transform: none;
    animation: none;
}

.hero-phone-shot::before {
    content: "";
    position: absolute;
    inset: 7% 9%;
    z-index: -1;
    border-radius: 42px;
    background: radial-gradient(circle at 72% 18%, rgba(255, 122, 26, 0.32), transparent 52%);
    filter: blur(28px);
}

.hero-phone-shot img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: min(72vh, 720px);
    margin: 0 auto;
    height: auto;
    image-rendering: auto;
}

.hero-device {
    position: relative;
    width: min(100%, 382px);
    margin: 0 auto;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 44px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.03) 18%, transparent 36%),
        linear-gradient(180deg, #0d0d10, #050506);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58), 0 0 54px rgba(255, 122, 26, 0.16);
}

.hero-device::before {
    content: "";
    position: absolute;
    inset: 7% 4%;
    z-index: -1;
    border-radius: 42px;
    background: radial-gradient(circle at 58% 20%, rgba(255, 122, 26, 0.28), transparent 58%);
    filter: blur(34px);
    pointer-events: none;
}

.device-screen {
    position: relative;
    min-height: 724px;
    overflow: hidden;
    border-radius: 36px;
    padding: 20px 18px 18px;
    background:
        radial-gradient(circle at 80% 24%, rgba(255, 122, 26, 0.18), transparent 35%),
        radial-gradient(circle at 18% 72%, rgba(255, 122, 26, 0.08), transparent 32%),
        #08080a;
}

.device-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 100%);
    background-size: 58px 58px;
    opacity: 0.42;
    pointer-events: none;
}

.device-status,
.device-brand,
.device-promo,
.device-actions,
.device-social-title,
.device-socials,
.device-nav {
    position: relative;
    z-index: 1;
}

.device-status {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 28px;
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
}

.device-island {
    width: 92px;
    height: 28px;
    border-radius: 999px;
    background: #030304;
    box-shadow: inset 18px 0 32px rgba(255, 255, 255, 0.03), inset -16px 0 24px rgba(33, 139, 255, 0.08);
}

.device-bars {
    justify-self: end;
    width: 58px;
    height: 16px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, #fff 0 5px, transparent 5px 10px, #fff 10px 15px, transparent 15px 20px, #fff 20px 25px, transparent 25px 34px, #fff 34px 58px);
    opacity: 0.9;
}

.device-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.device-brand strong {
    font-family: "Unbounded", sans-serif;
    font-size: 16px;
    letter-spacing: 1.6px;
}

.device-brand span {
    color: var(--accent);
}

.device-brand i {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background:
        linear-gradient(var(--accent), var(--accent)) 8px 8px / 14px 2px no-repeat,
        linear-gradient(var(--accent), var(--accent)) 8px 14px / 14px 2px no-repeat,
        linear-gradient(var(--accent), var(--accent)) 8px 20px / 14px 2px no-repeat,
        rgba(255, 122, 26, 0.08);
}

.device-promo {
    padding: 20px;
    border: 1px solid rgba(255, 122, 26, 0.34);
    border-radius: 24px;
    background:
        radial-gradient(circle at 76% 18%, rgba(255, 122, 26, 0.28), transparent 46%),
        rgba(35, 22, 14, 0.76);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 18px 50px rgba(0, 0, 0, 0.28);
}

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

.device-promo-top > span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 2px;
}

.device-promo-top div {
    display: flex;
    gap: 8px;
}

.online-pill,
.cart-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    color: var(--text);
    font-size: 11px;
    font-style: normal;
}

.online-pill i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px var(--green-soft);
    animation: onlinePulse 1.8s ease-in-out infinite;
}

.cart-pill::before {
    content: "";
    width: 13px;
    height: 13px;
    border: 2px solid var(--accent);
    border-top: 0;
    border-radius: 2px 2px 4px 4px;
}

.device-promo h3 {
    max-width: 270px;
    margin-bottom: 10px;
    font-size: 29px;
    line-height: 1.08;
}

.device-promo p {
    max-width: 280px;
    margin-bottom: 18px;
    color: var(--text-2);
    line-height: 1.42;
}

.device-cta {
    min-height: 52px;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 19px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff;
    font-weight: 950;
    box-shadow: 0 12px 32px rgba(255, 110, 30, 0.35);
    animation: ctaBreath 2.8s ease-in-out infinite;
}

.device-cta i,
.device-cta i::before {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.device-cta i::before {
    content: "";
    transform: rotate(90deg);
}

.device-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.device-action {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    min-height: 70px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(26, 26, 33, 0.76);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.device-action:nth-child(2) {
    animation: actionGlow 3.2s ease-in-out infinite;
}

.device-action-icon {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: var(--accent-soft);
}

.device-action-icon::before,
.device-action-icon::after {
    content: "";
    position: absolute;
}

.device-action-icon.list::before {
    left: 13px;
    top: 11px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 8px 0 var(--accent), 0 16px 0 var(--accent);
}

.device-action-icon.list::after {
    right: 10px;
    top: 12px;
    width: 13px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 8px 0 var(--accent), 0 16px 0 var(--accent);
}

.device-action-icon.user::before {
    top: 9px;
    left: 14px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.device-action-icon.user::after {
    left: 10px;
    bottom: 9px;
    width: 20px;
    height: 12px;
    border: 2px solid var(--accent);
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
}

.device-action-icon.shield::before {
    inset: 9px 12px;
    border: 2px solid var(--accent);
    border-radius: 5px 5px 10px 10px;
}

.device-action strong {
    display: block;
    font-size: 15px;
}

.device-action small {
    display: block;
    margin-top: 3px;
    color: var(--hint);
    font-size: 12px;
}

.device-action > i {
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--hint);
    border-right: 2px solid var(--hint);
    transform: rotate(45deg);
}

.device-social-title {
    margin: 20px 4px 10px;
    color: var(--hint);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.device-socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.device-social {
    min-height: 102px;
    padding: 14px;
    border-radius: 18px;
    background: radial-gradient(circle at 100% 0%, rgba(42, 171, 238, 0.15), transparent 58%), rgba(21, 25, 32, 0.82);
}

.device-social.vk {
    background: radial-gradient(circle at 100% 0%, rgba(0, 119, 255, 0.15), transparent 58%), rgba(21, 25, 32, 0.82);
}

.device-social span {
    display: block;
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    border-radius: 11px;
    background: linear-gradient(135deg, #4cc8f9, #2aabee);
}

.device-social.vk span {
    background: linear-gradient(135deg, #2787f5, #0077ff);
}

.device-social strong,
.device-social small {
    display: block;
}

.device-social strong {
    font-size: 13px;
}

.device-social small {
    margin-top: 4px;
    color: var(--hint);
    font-size: 11px;
}

.device-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    min-height: 62px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 10px 8px 8px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 26px;
    background: rgba(21, 21, 27, 0.88);
    backdrop-filter: blur(18px);
}

.device-nav span {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 4px;
    color: var(--hint);
    font-size: 10px;
    font-weight: 800;
}

.device-nav i {
    width: 19px;
    height: 19px;
    border: 2px solid currentColor;
    border-radius: 7px;
}

.device-nav .active {
    color: var(--accent);
}

.device-nav .active::after {
    content: "";
    width: 20px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 14px var(--accent-glow);
}

.device-nav em {
    position: absolute;
    top: -6px;
    right: 15px;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--danger);
    color: #fff;
    font-size: 10px;
    font-style: normal;
    animation: badgePop 2.1s ease-in-out infinite;
}

@keyframes onlinePulse {
    0%, 100% { box-shadow: 0 0 0 5px var(--green-soft), 0 0 0 rgba(48, 209, 88, 0); }
    50% { box-shadow: 0 0 0 8px rgba(48, 209, 88, 0.08), 0 0 24px rgba(48, 209, 88, 0.45); }
}

@keyframes ctaBreath {
    0%, 100% { transform: translateY(0); box-shadow: 0 12px 32px rgba(255, 110, 30, 0.35); }
    50% { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(255, 110, 30, 0.46); }
}

@keyframes actionGlow {
    0%, 100% { background: rgba(26, 26, 33, 0.76); }
    50% { background: rgba(34, 24, 18, 0.86); }
}

@keyframes badgePop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

.order-preview {
    position: relative;
    min-height: 430px;
    padding: 24px;
    border: 1px solid rgba(255, 122, 26, 0.26);
    border-radius: 24px;
    background:
        radial-gradient(circle at 86% 0%, rgba(255, 122, 26, 0.26), transparent 34%),
        linear-gradient(180deg, rgba(28, 28, 36, 0.94), rgba(12, 12, 16, 0.92));
    box-shadow: var(--shadow), 0 0 0 1px rgba(255, 122, 26, 0.06);
    backdrop-filter: blur(24px);
    transform: rotateX(4deg) rotateY(-7deg);
    transform-style: preserve-3d;
    animation: floatPanel 5.6s ease-in-out infinite;
}

.order-preview::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    pointer-events: none;
}

.preview-top {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 32px;
    color: var(--text-2);
    font-size: 14px;
    font-weight: 800;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 8px var(--green-soft);
}

.track-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 34px;
}
}

.track-row p {
    margin-bottom: 4px;
    color: var(--hint);
}

.track-row strong {
    font-size: 22px;
}

.cover-art {
    position: relative;
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    overflow: hidden;
    border: 1px solid rgba(255, 122, 26, 0.22);
    border-radius: 22px;
    background: #131015;
    box-shadow: 0 16px 38px rgba(255, 110, 30, 0.18);
}

.cover-art span {
    position: absolute;
    border-radius: 999px;
}

.cover-art span:nth-child(1) {
    inset: 12px 34px 12px 12px;
    background: var(--accent);
}

.cover-art span:nth-child(2) {
    inset: 34px 12px 12px 32px;
    background: var(--pink);
}

.cover-art span:nth-child(3) {
    inset: 14px 12px 46px 44px;
    background: var(--amber);
}

.progress-wrap {
    margin-bottom: 30px;
}

.progress-label,
.preview-grid {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--hint);
    font-size: 14px;
}

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

.progress-bar span {
    display: block;
    width: 68%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-deep), var(--accent), var(--amber));
    box-shadow: 0 0 28px rgba(255, 122, 26, 0.42);
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.preview-grid strong {
    color: var(--text);
}

.section-divider {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    height: 82px;
    margin: -28px auto -16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.section-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 26, 0.12), rgba(255, 122, 26, 0.42), rgba(255, 182, 39, 0.18), transparent);
}

.section-divider::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border: 1px solid rgba(255, 182, 39, 0.42);
    border-radius: 3px;
    background: var(--bg);
    box-shadow: 0 0 26px rgba(255, 122, 26, 0.42);
    transform: rotate(45deg);
}

.section-divider span {
    position: relative;
    width: 92px;
    height: 32px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, transparent 0 18px, rgba(255, 122, 26, 0.42) 18px 20px, transparent 20px 36px, rgba(255, 182, 39, 0.56) 36px 38px, transparent 38px 54px, rgba(255, 122, 26, 0.42) 54px 56px, transparent 56px 100%),
        rgba(10, 10, 13, 0.92);
    border: 1px solid rgba(255, 122, 26, 0.12);
    box-shadow: 0 0 32px rgba(255, 122, 26, 0.18);
}

.section-divider-short {
    height: 58px;
    margin-top: -14px;
}

.signal-strip {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.signal-item {
    position: relative;
    min-height: 92px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-content: center;
    column-gap: 12px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        radial-gradient(circle at 96% 0%, rgba(255, 122, 26, 0.12), transparent 54%),
        rgba(21, 21, 27, 0.72);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.signal-item::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.42;
}

.signal-dot {
    grid-row: span 2;
    width: 12px;
    height: 12px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 8px var(--accent-soft), 0 0 30px var(--accent-glow);
}

.signal-item strong {
    font-size: 15px;
    line-height: 1.2;
}

.signal-item small {
    margin-top: 4px;
    color: var(--hint);
    font-size: 12px;
    line-height: 1.35;
}

.section-band {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 86px 0;
}

.section-heading {
    position: relative;
    max-width: 760px;
    margin-bottom: 38px;
    padding-bottom: 20px;
}

.section-heading::after,
.calculator-copy::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(260px, 64vw);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(255, 182, 39, 0.42), transparent);
    box-shadow: 0 0 22px rgba(255, 122, 26, 0.24);
}

.section-band::before {
    content: "";
    position: absolute;
    inset: 40px -24px auto auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 26, 0.10), transparent 68%);
    pointer-events: none;
}

.service-grid,
.plan-grid,
.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-card,
.plan-card,
.flow-grid article,
.calc-panel {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.service-card,
.plan-card,
.flow-grid article {
    position: relative;
    min-height: 244px;
    padding: 24px;
    overflow: hidden;
}

.service-card::before,
.plan-card::before,
.flow-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--accent-soft), transparent 64%);
    opacity: 0;
    transition: opacity 220ms ease;
    pointer-events: none;
}

.service-card:hover::before,
.plan-card:hover::before,
.flow-grid article:hover::before {
    opacity: 1;
}

.service-card:hover,
.plan-card:hover,
.flow-grid article:hover {
    border-color: var(--border-soft);
}

.service-icon {
    display: block;
    width: 48px;
    height: 48px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 122, 26, 0.22);
    border-radius: 15px;
    background: var(--accent-soft);
    position: relative;
}

.service-icon::before,
.service-icon::after {
    content: "";
    position: absolute;
    background: var(--accent);
}

.icon-streams::before {
    left: 14px;
    bottom: 12px;
    width: 6px;
    height: 22px;
    border-radius: 999px;
    box-shadow: 10px -8px 0 var(--amber), 20px 4px 0 var(--green);
}

.icon-listeners::before {
    inset: 12px;
    border: 3px solid var(--amber);
    border-radius: 50%;
    background: transparent;
}

.icon-listeners::after {
    right: 9px;
    bottom: 9px;
    width: 13px;
    height: 4px;
    border-radius: 999px;
    transform: rotate(45deg);
}

.icon-album::before {
    inset: 12px;
    border-radius: 50%;
    background: conic-gradient(from 120deg, var(--accent), var(--pink), var(--amber), var(--accent));
}

.icon-album::after {
    inset: 21px;
    border-radius: 50%;
    background: #131015;
}

.icon-artist::before {
    top: 10px;
    left: 16px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.icon-artist::after {
    left: 10px;
    bottom: 10px;
    width: 28px;
    height: 14px;
    border-radius: 16px 16px 8px 8px;
    background: var(--pink);
}

.plans {
    padding-top: 70px;
}

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

.plan-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    border-color: rgba(255, 122, 26, 0.38);
    background:
        linear-gradient(180deg, rgba(255, 122, 26, 0.20), rgba(28, 28, 36, 0.90)),
        var(--surface-solid);
    box-shadow: 0 20px 70px rgba(255, 110, 30, 0.18);
}

.plan-tag {
    width: fit-content;
    margin-bottom: 28px;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--amber-soft);
    color: var(--amber);
    font-size: 12px;
    font-weight: 900;
}

.plan-card strong {
    margin-top: auto;
    font-family: "Unbounded", sans-serif;
    font-size: 30px;
    line-height: 1;
}

.pricing-categories {
    display: grid;
    gap: 18px;
}

.pricing-tabs {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 122, 26, 0.12), transparent 46%),
        rgba(15, 15, 20, 0.78);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
}

.pricing-tab {
    min-width: 0;
    min-height: 66px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 15px;
    background: transparent;
    color: var(--text-2);
    cursor: pointer;
    text-align: left;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.pricing-tab:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.pricing-tab.is-active {
    color: var(--text);
    border-color: rgba(255, 122, 26, 0.28);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
        var(--accent-soft);
    box-shadow: 0 12px 34px rgba(255, 110, 30, 0.16);
}

.pricing-tab.is-active .pricing-icon {
    background: rgba(255, 122, 26, 0.24);
    box-shadow: inset 0 0 0 1px rgba(255, 122, 26, 0.28), 0 0 24px rgba(255, 122, 26, 0.20);
}

.pricing-tab strong {
    min-width: 0;
    font-size: 13px;
    line-height: 1.2;
}

.pricing-category {
    border: 0;
}

.pricing-category:not(.is-active) {
    display: none;
}

.pricing-category.is-active {
    display: block;
    animation: pricingPanelIn 320ms ease both;
}

.pricing-category summary {
    min-height: 72px;
    display: none;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 122, 26, 0.12), transparent 48%),
        var(--surface);
    color: var(--text);
    cursor: pointer;
    list-style: none;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    transition: border-color 160ms ease, background 160ms ease;
}

.pricing-category summary::-webkit-details-marker {
    display: none;
}

.pricing-category summary:hover {
    border-color: var(--border-soft);
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 122, 26, 0.18), transparent 48%),
        var(--surface-2);
}

.pricing-icon {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--accent-soft);
    color: var(--accent);
    box-shadow: inset 0 0 0 1px rgba(255, 122, 26, 0.14);
}

.pricing-icon::before,
.pricing-icon::after {
    content: "";
    position: absolute;
}

.pricing-icon-streams::before {
    left: 13px;
    bottom: 10px;
    width: 5px;
    height: 18px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 8px -5px 0 var(--amber), 16px 3px 0 var(--green);
}

.pricing-icon-listeners::before {
    inset: 12px 9px 10px;
    border: 2px solid var(--accent);
    border-bottom-color: transparent;
    border-radius: 18px 18px 8px 8px;
}

.pricing-icon-listeners::after {
    left: 11px;
    right: 11px;
    bottom: 9px;
    height: 8px;
    border-left: 3px solid var(--accent);
    border-right: 3px solid var(--amber);
    border-radius: 4px;
}

.pricing-icon-album::before {
    inset: 11px;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.pricing-icon-album::after {
    left: 18px;
    top: 13px;
    width: 8px;
    height: 16px;
    border-radius: 8px 8px 4px 4px;
    background: var(--accent);
    transform: rotate(36deg);
}

.pricing-icon-artist::before {
    top: 10px;
    left: 13px;
    width: 11px;
    height: 11px;
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.pricing-icon-artist::after {
    right: 10px;
    bottom: 11px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--amber);
    border-radius: 50%;
}

.pricing-category summary strong {
    min-width: 0;
    font-size: 16px;
    line-height: 1.25;
}

.pricing-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--hint);
    border-bottom: 2px solid var(--hint);
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.pricing-category[open] .pricing-chevron {
    transform: rotate(225deg);
}

.pricing-description {
    margin: 18px 4px 16px;
    color: var(--hint);
    line-height: 1.55;
}

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

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

.pricing-card {
    position: relative;
    min-height: 206px;
    display: flex;
    flex-direction: column;
    padding: 20px 18px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        radial-gradient(circle at 92% 0%, rgba(255, 122, 26, 0.08), transparent 48%),
        var(--surface);
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.pricing-card::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 118px;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.pricing-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-soft);
    background:
        radial-gradient(circle at 92% 0%, rgba(255, 122, 26, 0.14), transparent 48%),
        var(--surface-2);
}

.pricing-card span {
    color: var(--hint);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.pricing-card strong {
    margin-top: 8px;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 0.98;
}

.pricing-card small {
    margin-top: 7px;
    color: var(--hint);
    font-size: 13px;
}

.pricing-card b {
    margin-top: auto;
    padding-top: 28px;
    color: var(--text);
    font-size: 24px;
    line-height: 1;
}

.pricing-card em {
    margin-top: 8px;
    color: var(--hint);
    font-size: 12px;
    font-style: normal;
}

@keyframes pricingPanelIn {
    from {
        opacity: 0;
        transform: translateY(14px);
        filter: blur(3px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.calculator {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
    gap: 38px;
    align-items: center;
}

.calculator-copy {
    position: relative;
    max-width: 620px;
    padding-bottom: 22px;
}

.calc-panel {
    padding: 26px;
}

.calc-panel label {
    display: block;
    margin-bottom: 18px;
    color: var(--hint);
    font-weight: 800;
}

.calc-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.calc-value strong {
    font-family: "Unbounded", sans-serif;
    font-size: 50px;
    line-height: 1;
}

.calc-value span {
    color: var(--hint);
}

input[type="range"] {
    width: 100%;
    accent-color: var(--accent);
}

.calc-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 122, 26, 0.07);
}

.calc-total span {
    color: var(--hint);
}

.calc-total strong {
    color: var(--accent-hover);
}

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

.flow-grid article span {
    display: block;
    margin-bottom: 42px;
    color: var(--accent-hover);
    font-size: 13px;
    font-weight: 950;
}

.reviews-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 28px;
}

.reviews-head .section-heading {
    margin-bottom: 0;
}

.reviews-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 122, 26, 0.24);
    border-radius: 50%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(17, 16, 22, 0.84);
    color: var(--text);
    font-size: 19px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42), 0 0 0 6px rgba(255, 122, 26, 0.04);
    backdrop-filter: blur(18px);
    transform: translateY(-50%);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.reviews-arrow-left {
    left: 10px;
}

.reviews-arrow-right {
    right: 10px;
}

.reviews-arrow:hover {
    transform: translateY(-50%) scale(1.08);
    border-color: rgba(255, 122, 26, 0.42);
    background:
        linear-gradient(180deg, rgba(255, 122, 26, 0.28), rgba(255, 122, 26, 0.10)),
        rgba(17, 16, 22, 0.9);
    box-shadow: 0 18px 50px rgba(255, 110, 30, 0.20), 0 0 0 8px rgba(255, 122, 26, 0.07);
}

.reviews-arrow:active {
    transform: translateY(-50%) scale(0.96);
}

.kwork-link {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(255, 122, 26, 0.24);
    border-radius: 14px;
    background: rgba(255, 122, 26, 0.08);
    color: var(--text);
    font-size: 13px;
    font-weight: 850;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.kwork-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 122, 26, 0.42);
    background: rgba(255, 122, 26, 0.14);
}

.reviews-trust,
.kwork-review-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 122, 26, 0.14), transparent 52%),
        var(--surface);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.reviews-trust {
    min-height: 116px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin-bottom: 16px;
    padding: 18px;
}

.reviews-rating-pill {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 238px;
}

.reviews-rating-pill strong {
    font-size: clamp(44px, 6vw, 68px);
    line-height: 0.9;
}

.reviews-rating-pill span {
    display: block;
    margin-bottom: 8px;
    color: var(--hint);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.kwork-stars {
    display: flex;
    gap: 4px;
}

.kwork-stars span {
    width: 15px;
    height: 15px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background: linear-gradient(135deg, var(--amber), var(--accent));
    box-shadow: 0 0 18px rgba(255, 122, 26, 0.26);
}

.reviews-trust p {
    margin: 0;
    color: var(--text-2);
    font-size: 13px;
    line-height: 1.55;
}

.reviews-mini-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.reviews-mini-metrics span {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    min-height: 38px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 122, 26, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--hint);
    font-size: 12px;
}

.reviews-mini-metrics strong {
    color: var(--text);
    font-size: 16px;
}

.kwork-review-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.kwork-review-grid::-webkit-scrollbar {
    display: none;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 36px;
}

.reviews-carousel::before,
.reviews-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 12px;
    z-index: 2;
    width: 90px;
    pointer-events: none;
}

.reviews-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
}

.reviews-carousel::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg), transparent);
}

.kwork-review-card {
    flex: 0 0 min(310px, calc(100vw - 96px));
    min-height: 276px;
    max-height: 276px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.review-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.review-buyer,
.review-badge {
    font-size: 11px;
    font-weight: 900;
}

.review-buyer {
    color: var(--text);
}

.review-badge {
    min-width: 42px;
    padding: 6px 8px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-hover);
    text-align: center;
}

.review-card-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: -6px 0 10px;
    color: var(--amber);
    font-size: 13px;
    letter-spacing: 0;
}

.review-card-stars span {
    margin-left: 4px;
    color: var(--hint);
    font-size: 11px;
}

.kwork-review-card p {
    margin: 0;
    color: var(--text-2);
    font-size: 12px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-meta {
    display: grid;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
    color: var(--hint);
    font-size: 10px;
    line-height: 1.5;
}

.review-meta a {
    color: var(--accent-hover);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kwork-review-card.is-loading {
    min-height: 180px;
    justify-content: center;
}

.seo-section {
    padding-top: 76px;
}

.seo-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 18px;
    align-items: start;
}

.seo-copy,
.seo-keywords article,
.seo-faq article {
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 122, 26, 0.10), transparent 46%),
        var(--surface);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
}

.seo-copy {
    padding: 26px;
}

.seo-copy p {
    margin: 0;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.8;
}

.seo-copy p + p {
    margin-top: 18px;
}

.seo-keywords {
    display: grid;
    gap: 12px;
}

.seo-keywords article,
.seo-faq article {
    padding: 20px;
}

.seo-keywords h3,
.seo-faq h3 {
    margin-bottom: 10px;
    color: var(--text);
    font-size: 17px;
}

.seo-keywords p,
.seo-faq p {
    margin: 0;
    color: var(--hint);
    font-size: 13px;
    line-height: 1.65;
}

.seo-faq {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.final-cta {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 36px;
    padding: 76px 0 92px;
    text-align: center;
}

.final-cta div {
    max-width: 780px;
    margin: 0 auto;
}

.final-cta .primary-action {
    margin-top: 18px;
}

.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 26px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
        radial-gradient(circle at 86% 0%, rgba(255, 122, 26, 0.16), transparent 34rem),
        rgba(15, 15, 20, 0.88);
    box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.35fr);
    gap: 24px;
    padding: 26px;
}

.footer-brand p {
    max-width: 420px;
    margin: 16px 0 0;
    color: var(--hint);
    line-height: 1.55;
}

.footer-socials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.footer-social {
    position: relative;
    min-height: 118px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 14px 14px;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    background: var(--surface);
    color: var(--text);
    overflow: hidden;
    transition: transform 120ms ease, border-color 160ms ease, background 160ms ease;
}

.footer-social::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--footer-social-glow, transparent), transparent 62%);
    opacity: 0.78;
    pointer-events: none;
}

.footer-social:hover {
    border-color: var(--border);
    background: var(--surface-2);
    transform: translateY(-2px);
}

.footer-social-icon {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    border-radius: 12px;
    color: #fff;
}

.footer-social-icon svg {
    width: 21px;
    height: 21px;
}

.footer-social span:last-child {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.footer-social strong,
.footer-social small {
    display: block;
}

.footer-social strong {
    margin: 1px 0 6px;
    font-size: 14px;
    line-height: 1.1;
}

.footer-social small {
    color: var(--hint);
    font-size: 12px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.footer-social-tg {
    --footer-social-glow: rgba(42, 171, 238, 0.15);
}

.footer-social-tg .footer-social-icon {
    background: linear-gradient(135deg, #4cc8f9 0%, #2aabee 100%);
    box-shadow: 0 4px 14px -4px rgba(42, 171, 238, 0.55);
}

.footer-social-vk {
    --footer-social-glow: rgba(0, 119, 255, 0.15);
}

.footer-social-vk .footer-social-icon {
    background: linear-gradient(135deg, #2787f5 0%, #0077ff 100%);
    box-shadow: 0 4px 14px -4px rgba(0, 119, 255, 0.55);
}

.footer-social-mail {
    --footer-social-glow: rgba(255, 122, 26, 0.16);
}

.footer-social-mail .footer-social-icon {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-deep));
    box-shadow: 0 4px 14px -4px var(--accent-glow);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 26px;
    border-top: 1px solid var(--border);
    color: var(--hint);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--accent-hover);
    font-weight: 900;
}

[data-fade] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms ease, transform 620ms ease;
}

[data-fade].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatPanel {
    0%, 100% {
        transform: rotateX(4deg) rotateY(-7deg) translateY(0);
    }
    50% {
        transform: rotateX(2deg) rotateY(-4deg) translateY(-12px);
    }
}

@media (max-width: 920px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .site-nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 72px;
    }

    .hero-panel {
        justify-self: stretch;
        width: 100%;
    }

    .hero-phone-shot {
        width: min(100%, 360px);
        margin: 0 auto;
        transform: none;
    }

    .order-preview {
        min-height: 360px;
        transform: none;
    }

    .service-grid,
    .plan-grid,
    .flow-grid,
    .calculator,
    .seo-layout,
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .signal-strip {
        grid-template-columns: 1fr;
    }

    .calculator-copy {
        grid-column: 1 / -1;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .seo-copy,
    .seo-keywords {
        grid-column: 1 / -1;
    }

    .seo-faq {
        grid-template-columns: 1fr;
    }

    .reviews-trust {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-socials {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

@media (max-width: 640px) {
    .site-header {
        width: min(100% - 20px, 1180px);
        gap: 10px;
    }

    .site-header::before {
        inset: 8px -4px;
        border-radius: 18px;
    }

    .brand-text {
        display: none;
    }

    .header-action {
        min-height: 38px;
        padding: 0 12px;
        font-size: 13px;
    }

    .hero,
    .section-band,
    .section-divider,
    .signal-strip,
    .final-cta,
    .site-footer {
        width: min(100% - 22px, 1180px);
    }

    .hero {
        gap: 28px;
        padding-bottom: 52px;
    }

    h1 {
        font-size: clamp(42px, 14vw, 72px);
    }

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

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

    .primary-action,
    .secondary-action {
        width: 100%;
    }

    .service-grid,
    .plan-grid,
    .flow-grid,
    .calculator,
    .seo-layout,
    .footer-main,
    .footer-socials {
        grid-template-columns: 1fr;
    }

    .reviews-head {
        display: grid;
        align-items: start;
    }

    .kwork-link {
        width: 100%;
        justify-content: center;
    }

    .kwork-review-card {
        min-height: auto;
    }

    .reviews-trust {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .reviews-rating-pill {
        min-width: 0;
    }

    .reviews-carousel {
        padding: 0 18px;
    }

    .reviews-arrow {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .reviews-arrow-left {
        left: 0;
    }

    .reviews-arrow-right {
        right: 0;
    }

    .kwork-review-card {
        flex-basis: min(286px, calc(100vw - 58px));
        min-height: 268px;
        max-height: 268px;
        padding: 16px;
    }

    .footer-main {
        padding: 20px;
    }

    .footer-social {
        min-height: 92px;
    }

    .footer-bottom {
        display: grid;
        padding: 15px 20px 18px;
    }

    .service-card,
    .plan-card,
    .flow-grid article {
        min-height: 210px;
        padding: 22px;
    }

    .pricing-categories {
        gap: 18px;
    }

    .pricing-tabs {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 8px;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }

    .pricing-tabs::-webkit-scrollbar {
        display: none;
    }

    .pricing-tab {
        min-width: 178px;
        min-height: 62px;
        scroll-snap-align: start;
    }

    .pricing-category summary {
        min-height: 64px;
        padding: 12px;
        border-radius: 16px;
    }

    .pricing-icon {
        width: 38px;
        height: 38px;
    }

    .pricing-category summary strong {
        font-size: 14px;
    }

    .pricing-grid,
    .pricing-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .pricing-card {
        min-height: 176px;
        padding: 16px 14px 14px;
    }

    .pricing-card::before {
        left: 14px;
        right: 14px;
        top: 102px;
    }

    .pricing-card strong {
        font-size: clamp(26px, 8vw, 34px);
    }

    .pricing-card b {
        padding-top: 24px;
        font-size: 20px;
    }

    .section-band {
        padding: 58px 0;
    }

    .seo-section {
        padding-top: 52px;
    }

    .seo-copy,
    .seo-keywords article,
    .seo-faq article {
        padding: 18px;
    }

    .seo-copy p {
        font-size: 13px;
        line-height: 1.75;
    }

    .section-divider {
        height: 58px;
        margin: -12px auto -8px;
    }

    .section-divider span {
        width: 72px;
        height: 26px;
    }

    .signal-item {
        min-height: 82px;
        padding: 16px;
    }

    .calc-value strong {
        font-size: 40px;
    }

    .calc-total {
        display: grid;
    }
}

@media (max-width: 380px) {
    .pricing-grid,
    .pricing-grid-compact {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
