:root {
    color-scheme: dark;
    --bg: #050816;
    --bg-2: #070b17;
    --panel: #0c1020;
    --panel-2: #101526;
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --pink: #ff3d85;
    --purple: #a855f7;
    --blue: #3b82f6;
    --cyan: #22d3ee;
    --radius: 8px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --gradient: linear-gradient(100deg, var(--pink) 0%, var(--purple) 55%, var(--blue) 100%);
    --gradient-wide: linear-gradient(105deg, #ff3d6e 0%, #a855f7 54%, #22d3ee 100%);
    --max: 1320px;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 15% 8%, rgba(255, 61, 133, 0.14), transparent 24%),
        radial-gradient(circle at 86% 12%, rgba(34, 211, 238, 0.12), transparent 24%),
        linear-gradient(180deg, #02050f 0%, #070b17 45%, #080d1b 100%);
    color: var(--text);
    font-size: 16px;
    line-height: 1.5;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.page-shell {
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(4, 7, 18, 0.86);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    min-height: 72px;
    display: grid;
    grid-template-columns: 270px 1fr 300px;
    gap: 22px;
    align-items: center;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
}

.brand-logo {
    display: block;
    width: 210px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-logo-footer {
    width: 230px;
}

.brand-mark {
    color: #fff;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.brand-mark span {
    color: var(--pink);
}

.brand-subtitle {
    margin-top: 5px;
    color: var(--soft);
    font-size: 12px;
    font-weight: 600;
}

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

.nav-link {
    position: relative;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.88;
    transition: color 160ms ease, opacity 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #f0abfc;
    opacity: 1;
}

.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
    height: 2px;
    border-radius: 99px;
    background: var(--gradient);
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 0 22px;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--gradient);
    box-shadow: 0 14px 34px rgba(168, 85, 247, 0.28);
}

.btn-secondary,
.btn-ghost {
    background: rgba(255, 255, 255, 0.035);
    border-color: var(--line-strong);
}

.btn-outline-pink {
    min-height: 38px;
    width: 100%;
    border-color: rgba(255, 61, 133, 0.75);
    color: #ff7ab3;
    background: rgba(255, 61, 133, 0.04);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
}

.menu-toggle .icon-x {
    display: none;
}

.site-header[data-open="true"] .menu-toggle .icon-menu {
    display: none;
}

.site-header[data-open="true"] .menu-toggle .icon-x {
    display: block;
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 86%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(520px, 0.98fr);
    gap: 54px;
    align-items: center;
    min-height: 496px;
    padding: 54px 0 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 26px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    font-size: 12px;
    font-weight: 900;
}

.badge .icon {
    width: 15px;
    height: 15px;
    color: #ff7ab3;
}

.hero h1 {
    margin: 14px 0 10px;
    color: #fff;
    font-size: clamp(52px, 6.2vw, 82px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: 0;
}

.gradient-text {
    background: linear-gradient(105deg, #ff3d6e 0%, #c056f7 48%, #23d6ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 650px;
    margin: 0;
    color: #dbeafe;
    font-size: 16px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.hero-actions .btn {
    min-width: 190px;
    min-height: 44px;
}

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 28px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.035);
    font-size: 12px;
    font-weight: 800;
}

.trust-chip .icon {
    width: 15px;
    height: 15px;
}

.mobile-price-panel {
    display: none;
}

.offer-stage {
    position: relative;
    min-height: 372px;
}

.offer-card {
    position: relative;
    z-index: 2;
    width: min(100%, 580px);
    min-height: 0;
    padding: 28px 34px 30px;
    border: 1px solid rgba(34, 211, 238, 0.38);
    border-radius: 14px;
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 61, 133, 0.18), transparent 32%),
        radial-gradient(circle at 78% 18%, rgba(34, 211, 238, 0.12), transparent 36%),
        linear-gradient(145deg, rgba(16, 21, 38, 0.96), rgba(7, 11, 25, 0.96));
    box-shadow: var(--shadow);
}

.offer-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 61, 133, 0.38), transparent 44%, rgba(34, 211, 238, 0.28));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    padding: 1px;
}

.offer-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 10px 24px rgba(168, 85, 247, 0.36);
    font-size: 12px;
    font-weight: 900;
}

.deal-badge {
    display: inline-grid;
    gap: 1px;
    min-width: 112px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    color: #fff;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 56%),
        linear-gradient(135deg, #ff2e55, #ff3d85 54%, #c026d3);
    box-shadow:
        0 16px 34px rgba(255, 46, 85, 0.3),
        0 0 30px rgba(255, 61, 133, 0.16);
    font-size: 11px;
    line-height: 1.08;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.deal-badge strong {
    font-size: 13px;
    font-weight: 900;
}

.deal-badge span {
    font-weight: 800;
}

.offer-card h2 {
    position: relative;
    z-index: 2;
    margin: 18px 0 8px;
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
}

.price-compare {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.old-price {
    color: rgba(203, 213, 225, 0.68);
    font-size: 15px;
    font-weight: 800;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 61, 133, 0.65);
}

.saving-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border: 1px solid rgba(22, 199, 106, 0.34);
    border-radius: 999px;
    color: #bbf7d0;
    background: rgba(22, 199, 106, 0.13);
    box-shadow: 0 8px 20px rgba(22, 199, 106, 0.1);
    font-size: 12px;
    font-weight: 900;
}

.price-main-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 154px;
    gap: 18px;
    align-items: end;
}

.offer-price {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0;
}

.offer-price strong {
    font-size: clamp(64px, 5.4vw, 78px);
    font-weight: 900;
    line-height: 0.95;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.offer-price span {
    background: linear-gradient(100deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 29px;
    font-weight: 800;
}

.price-facts {
    display: grid;
    gap: 8px;
    padding-bottom: 5px;
}

.price-fact {
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background:
        radial-gradient(circle at 88% 18%, rgba(168, 85, 247, 0.16), transparent 42%),
        rgba(255, 255, 255, 0.045);
}

.price-fact span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.1;
    font-weight: 800;
}

.price-fact strong {
    display: block;
    margin-top: 3px;
    color: #fff;
    font-size: 14px;
    line-height: 1.08;
    font-weight: 900;
}

.calculator-panel {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 178px;
    gap: 16px;
    align-items: stretch;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line-strong);
}

.calculator-main {
    min-width: 0;
}

.calculator-label,
.order-fallback label {
    display: block;
    margin-bottom: 8px;
    color: var(--soft);
    font-size: 13px;
    font-weight: 700;
}

.coin-input-wrap {
    position: relative;
}

.coin-input {
    width: 100%;
    height: 48px;
    padding: 0 54px 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.coin-input::placeholder {
    color: rgba(203, 213, 225, 0.54);
}

.coin-input:focus {
    border-color: rgba(168, 85, 247, 0.7);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.16);
}

.coin-input[aria-invalid="true"] {
    border-color: rgba(255, 46, 85, 0.78);
    box-shadow: 0 0 0 4px rgba(255, 46, 85, 0.12);
}

.input-suffix {
    position: absolute;
    top: 50%;
    right: 15px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    transform: translateY(-50%);
    pointer-events: none;
}

.calculator-error {
    min-height: 19px;
    margin: 6px 0 0;
    color: #ff86a6;
    font-size: 12px;
    font-weight: 800;
    opacity: 0;
}

.calculator-error.is-visible {
    opacity: 1;
}

.quick-select {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.quick-option {
    min-height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quick-option:hover,
.quick-option:focus-visible {
    border-color: rgba(168, 85, 247, 0.7);
    background: rgba(168, 85, 247, 0.16);
    outline: none;
    transform: translateY(-1px);
}

.quick-option.is-active {
    border-color: rgba(255, 61, 133, 0.9);
    background: linear-gradient(100deg, rgba(255, 61, 133, 0.28), rgba(79, 124, 255, 0.22));
    box-shadow: 0 10px 24px rgba(168, 85, 247, 0.18);
}

.total-card {
    display: grid;
    align-content: center;
    gap: 5px;
    min-height: 132px;
    min-width: 0;
    padding: 16px 14px;
    border: 1px solid rgba(168, 85, 247, 0.26);
    border-radius: 12px;
    background:
        radial-gradient(circle at 82% 16%, rgba(255, 61, 133, 0.18), transparent 36%),
        rgba(255, 255, 255, 0.045);
}

.total-card span,
.total-card small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.total-card strong {
    display: block;
    max-width: 100%;
    color: #fff;
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
}

.total-card strong.is-long-total {
    font-size: clamp(18px, 1.8vw, 23px);
}

.total-card strong.is-very-long-total {
    font-size: clamp(17px, 1.6vw, 20px);
}

.calculator-submit {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 18px;
}

.calculator-submit:disabled {
    cursor: not-allowed;
    opacity: 0.52;
    filter: grayscale(0.22);
    transform: none;
}

.calculator-footnote {
    position: relative;
    z-index: 2;
    margin: 11px 0 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.order-fallback {
    position: relative;
    z-index: 2;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.055);
}

.order-fallback[hidden] {
    display: none;
}

.order-fallback textarea {
    width: 100%;
    resize: vertical;
    min-height: 112px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: #fff;
    background: rgba(0, 0, 0, 0.22);
    font: inherit;
    font-size: 13px;
}

.order-fallback p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.content-grid,
.bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 32px;
    padding: 28px 0 0;
}

.section-kicker {
    margin: 0 0 4px;
    color: #f0abfc;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.section-title {
    margin: 0 0 14px;
    color: #fff;
    font-size: 31px;
    line-height: 1.1;
    font-weight: 900;
}

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

.service-card,
.why-card,
.step-card,
.faq-card,
.final-cta,
.announcement,
.price-summary,
.price-table-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 61, 133, 0.09), transparent 40%),
        linear-gradient(180deg, rgba(16, 21, 38, 0.94), rgba(9, 13, 28, 0.94));
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.service-card,
.why-card {
    position: relative;
    min-height: 206px;
    padding: 28px 20px 18px;
    overflow: hidden;
}

.service-card:hover,
.why-card:hover,
.step-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 61, 133, 0.38);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.popular-ribbon {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 84px;
    padding: 8px 12px;
    color: #fff;
    background: var(--gradient);
    font-size: 11px;
    font-weight: 900;
}

.card-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border: 2px solid rgba(255, 61, 133, 0.56);
    border-radius: 50%;
    color: #e879f9;
    background: rgba(255, 61, 133, 0.08);
}

.card-icon .icon {
    width: 29px;
    height: 29px;
}

.service-card h3,
.why-card h3,
.step-card h3 {
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 900;
}

.service-card p,
.why-card p,
.step-card p {
    margin: 8px 0 14px;
    color: var(--soft);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.bullet-list {
    display: grid;
    gap: 5px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.bullet-list li {
    position: relative;
    padding-left: 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pink);
}

.announcement {
    display: grid;
    grid-template-columns: 94px 1fr 240px;
    gap: 24px;
    align-items: center;
    margin-top: 22px;
    padding: 26px;
    border-color: rgba(255, 61, 133, 0.28);
}

.announcement-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: radial-gradient(circle at 35% 30%, #ff95c8, #a855f7);
    box-shadow: 0 0 42px rgba(255, 61, 133, 0.4);
}

.announcement-icon .icon {
    width: 34px;
    height: 34px;
}

.announcement h2 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
}

.announcement h2 span {
    display: inline-block;
    color: #d946ef;
    font-size: 30px;
}

.announcement p {
    margin: 0;
    color: var(--soft);
    font-size: 14px;
    font-weight: 500;
}

.announcement-actions {
    display: grid;
    gap: 12px;
}

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(190px, 0.38fr) minmax(0, 0.62fr);
    align-items: stretch;
}

.price-summary {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 236px;
    padding: 24px 18px;
    border-color: rgba(255, 61, 133, 0.48);
    border-radius: 8px 0 0 8px;
}

.price-summary-title {
    margin: 0;
    color: #f0abfc;
    font-size: 14px;
    font-weight: 900;
}

.price-per-coin {
    display: grid;
    justify-items: center;
    margin: 8px 0 14px;
}

.price-per-coin strong {
    font-size: clamp(56px, 5vw, 76px);
    line-height: 0.95;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-per-coin span {
    color: #fff;
    font-weight: 900;
}

.price-summary hr {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--line);
}

.min-note {
    color: #fff;
    font-weight: 800;
}

.price-table-card {
    overflow: hidden;
    border-radius: 0 8px 8px 0;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.price-table th {
    height: 42px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.price-table td {
    height: 42px;
    border-top: 1px solid var(--line);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.table-note {
    margin: 10px 14px 14px;
    color: var(--muted);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
}

.why {
    margin-top: 20px;
}

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

.why-card {
    min-height: 156px;
    padding: 18px 13px;
}

.why-card .card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    border: 0;
    background: transparent;
}

.why-card .card-icon .icon {
    width: 28px;
    height: 28px;
}

.why-number {
    display: block;
    color: #fff;
    text-align: center;
    font-weight: 900;
}

.why-card h3 {
    margin-top: 3px;
    font-size: 15px;
}

.why-card p {
    margin-bottom: 0;
    font-size: 12.5px;
}

.bottom-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    padding-bottom: 32px;
}

.process-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.process-steps::before {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    top: 54px;
    border-top: 1px dashed rgba(255, 255, 255, 0.28);
}

.step-card {
    position: relative;
    min-height: 204px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
    align-content: start;
    padding: 24px 18px;
}

.step-number {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: radial-gradient(circle at 32% 30%, #ff9add, #a855f7);
    box-shadow: 0 0 0 8px rgba(168, 85, 247, 0.13), 0 16px 32px rgba(168, 85, 247, 0.28);
}

.step-number small {
    position: absolute;
    margin-top: -36px;
    font-size: 10px;
    font-weight: 900;
}

.step-number .icon {
    width: 29px;
    height: 29px;
}

.step-card p {
    margin-bottom: 0;
    font-size: 13.5px;
}

.faq-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.52fr) minmax(300px, 0.48fr);
    gap: 28px;
    align-items: start;
}

.faq-card {
    overflow: hidden;
    margin-bottom: 8px;
}

.faq-card h3 {
    margin: 0;
}

.faq-question {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 0;
    padding: 0 16px;
    color: #fff;
    background: transparent;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.faq-question .icon {
    width: 15px;
    height: 15px;
    transition: transform 160ms ease;
}

.faq-card.is-open .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 180ms ease;
}

.faq-card.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    margin: 0;
    padding: 0 16px 16px;
    color: var(--soft);
    font-size: 14px;
    font-weight: 500;
}

.final-cta {
    position: relative;
    overflow: hidden;
    min-height: 384px;
    padding: 34px 32px;
    text-align: center;
    border-color: rgba(255, 61, 133, 0.42);
    background:
        linear-gradient(122deg, rgba(255, 61, 133, 0.2), rgba(168, 85, 247, 0.2) 55%, rgba(34, 211, 238, 0.08)),
        linear-gradient(180deg, rgba(35, 10, 40, 0.96), rgba(18, 11, 28, 0.96));
}

.final-cta::after {
    content: "";
    position: absolute;
    right: 30px;
    top: -20px;
    width: 54px;
    height: 170px;
    background: var(--gradient);
    transform: rotate(28deg);
    opacity: 0.86;
}

.final-cta h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: 30px;
    line-height: 1.22;
    font-weight: 900;
}

.final-cta p {
    position: relative;
    z-index: 1;
    max-width: 280px;
    margin: 12px auto 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.cta-price {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 9px;
}

.cta-price strong {
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-price span,
.cta-min {
    color: #fff;
    font-size: 19px;
    font-weight: 900;
}

.cta-min {
    position: relative;
    z-index: 1;
    margin: 6px 0 20px;
}

.final-cta-actions {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(13, 18, 34, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.65fr 0.8fr 0.95fr;
    gap: 40px;
    padding: 26px 0 34px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-link {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #c7d2fe;
    background: rgba(255, 255, 255, 0.05);
}

.footer-title {
    margin: 0 0 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 8px;
    align-content: start;
}

.footer-links a,
.footer-links span,
.footer-copy {
    color: var(--soft);
    font-size: 13px;
    font-weight: 600;
}

.footer-copy {
    margin: 0;
    max-width: 260px;
}

.floating-chat {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 60;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 18px 38px rgba(255, 61, 133, 0.38);
}

.floating-chat .icon {
    width: 27px;
    height: 27px;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 80;
    width: min(calc(100% - 32px), 460px);
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    color: #fff;
    background: rgba(9, 13, 28, 0.94);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38), 0 0 28px rgba(168, 85, 247, 0.18);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, 14px, 0);
    transition: opacity 220ms ease, transform 220ms ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
}

/* Motion polish: subtle premium movement without changing the visual system. */
:root {
    --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --motion-fast: 220ms;
    --motion-mid: 620ms;
    --hero-parallax-x: 0px;
    --hero-parallax-y: 0px;
}

@keyframes fadeUpSoft {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0) scale(0.992);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes headerIn {
    from {
        opacity: 0;
        transform: translate3d(0, -10px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes heroGlowDrift {
    0%,
    100% {
        opacity: 0.58;
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        opacity: 0.74;
        transform: translate3d(8px, -6px, 0) scale(1.03);
    }
}

@keyframes gradientDrift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes priceGlowIn {
    0% {
        opacity: 0;
        filter: drop-shadow(0 0 0 rgba(168, 85, 247, 0));
        transform: scale(0.96);
    }

    58% {
        opacity: 1;
        filter: drop-shadow(0 0 22px rgba(168, 85, 247, 0.34));
        transform: scale(1.012);
    }

    100% {
        opacity: 1;
        filter: drop-shadow(0 0 0 rgba(168, 85, 247, 0));
        transform: scale(1);
    }
}

@keyframes highlightSweep {
    from {
        transform: translateX(-140%) skewX(-18deg);
    }

    to {
        transform: translateX(140%) skewX(-18deg);
    }
}

@keyframes dealGlow {
    0%,
    100% {
        box-shadow: 0 16px 34px rgba(255, 46, 85, 0.28), 0 0 24px rgba(255, 61, 133, 0.12);
    }

    50% {
        box-shadow: 0 18px 38px rgba(255, 46, 85, 0.36), 0 0 34px rgba(255, 61, 133, 0.2);
    }
}

@keyframes ambientGradient {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulseRing {
    from {
        opacity: 0.36;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(1.35);
    }
}

@keyframes ribbonSweep {
    from {
        transform: translateX(-120%) skewX(-18deg);
    }

    to {
        transform: translateX(130%) skewX(-18deg);
    }
}

.motion-ready .site-header {
    animation: headerIn 560ms var(--motion-ease) both;
}

.site-header {
    transition: background 300ms var(--motion-ease), border-color 300ms var(--motion-ease), box-shadow 300ms var(--motion-ease), backdrop-filter 300ms var(--motion-ease);
}

.site-header.navbar-scrolled {
    border-bottom-color: rgba(255, 255, 255, 0.15);
    background: rgba(4, 7, 18, 0.94);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(22px);
}

.nav-link::after {
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 260ms var(--motion-ease), opacity 260ms var(--motion-ease);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.hero::after {
    content: "";
    position: absolute;
    inset: -12% -8%;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 34%, rgba(255, 61, 133, 0.13), transparent 28%),
        radial-gradient(circle at 82% 24%, rgba(34, 211, 238, 0.11), transparent 30%);
    opacity: 0.62;
    animation: heroGlowDrift 16s ease-in-out infinite;
}

.hero-grid {
    z-index: 1;
}

.motion-ready .badge,
.motion-ready .headline-line,
.motion-ready .hero-description,
.motion-ready .mobile-price-panel,
.motion-ready .hero-actions,
.motion-ready .trust-chip,
.motion-ready .offer-card {
    animation: fadeUpSoft 660ms var(--motion-ease) both;
}

.motion-ready .badge {
    animation-delay: 130ms;
}

.headline-line {
    display: inline-block;
}

.motion-ready .headline-line-main {
    animation-delay: 220ms;
}

.gradient-text {
    background-size: 180% 180%;
    animation: gradientDrift 13s ease-in-out infinite alternate;
}

.motion-ready .gradient-text {
    animation-name: fadeUpSoft, gradientDrift;
    animation-duration: 660ms, 13s;
    animation-timing-function: var(--motion-ease), ease-in-out;
    animation-delay: 310ms, 1100ms;
    animation-fill-mode: both, none;
    animation-iteration-count: 1, infinite;
    animation-direction: normal, alternate;
}

.motion-ready .hero-description {
    animation-delay: 390ms;
}

.motion-ready .mobile-price-panel {
    animation-delay: 460ms;
}

.motion-ready .hero-actions {
    animation-delay: 500ms;
}

.motion-ready .trust-chip:nth-child(1) {
    animation-delay: 600ms;
}

.motion-ready .trust-chip:nth-child(2) {
    animation-delay: 675ms;
}

.motion-ready .trust-chip:nth-child(3) {
    animation-delay: 750ms;
}

.motion-ready .trust-chip:nth-child(4) {
    animation-delay: 825ms;
}

.motion-ready .offer-card {
    animation-delay: 720ms;
}

.offer-card {
    overflow: hidden;
}

.offer-card > * {
    position: relative;
    z-index: 2;
}

.offer-card::before {
    display: none;
}

.offer-card::after {
    z-index: 3;
}

.offer-price strong,
.price-per-coin strong,
.cta-price strong {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.motion-ready .offer-price strong {
    animation: priceGlowIn 720ms var(--motion-ease) 940ms both;
}

.offer-price strong::after,
.price-per-coin strong::after {
    content: "";
    position: absolute;
    inset: -8% -34%;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 34%, rgba(255, 255, 255, 0.54), transparent 64%);
    transform: translateX(-140%) skewX(-18deg);
}

.motion-ready .offer-card .offer-price strong::after {
    animation: highlightSweep 860ms var(--motion-ease) 1320ms both;
}

.motion-ready .price-summary.is-visible .price-per-coin strong::after {
    animation: highlightSweep 780ms var(--motion-ease) 180ms both;
}

.motion-ready .deal-badge {
    animation: dealGlow 3.2s ease-in-out 1.2s infinite;
}

.btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) var(--motion-ease), background var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) var(--motion-ease), filter var(--motion-fast) var(--motion-ease);
}

.btn .icon {
    transition: transform var(--motion-fast) var(--motion-ease);
}

.btn-primary {
    border-color: rgba(255, 255, 255, 0.08);
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: -28% auto -28% -42%;
    z-index: -1;
    width: 44%;
    pointer-events: none;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.36), transparent);
    transform: translateX(-120%) skewX(-18deg);
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    filter: brightness(1.05);
    box-shadow: 0 18px 44px rgba(168, 85, 247, 0.36);
}

.btn-primary:hover::before {
    opacity: 1;
    animation: highlightSweep 760ms var(--motion-ease) both;
}

.btn-primary:hover .icon {
    transform: translateX(2px) scale(1.06);
}

.btn:active {
    transform: translateY(0) scale(0.985);
}

.btn-secondary:hover,
.btn-ghost:hover,
.btn-outline-pink:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.065);
    transform: translateY(-2px);
}

.trust-chip {
    transition: transform 220ms var(--motion-ease), border-color 220ms var(--motion-ease), background 220ms var(--motion-ease);
}

.trust-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.065);
}

.service-card,
.why-card,
.step-card,
.announcement,
.price-summary,
.price-table-card,
.faq-card,
.final-cta {
    transition: transform 260ms var(--motion-ease), border-color 260ms var(--motion-ease), box-shadow 260ms var(--motion-ease), background 260ms var(--motion-ease);
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 61, 133, 0.48);
    box-shadow: 0 28px 66px rgba(0, 0, 0, 0.32);
}

.why-card:hover,
.step-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 61, 133, 0.36);
}

.service-card .card-icon,
.why-card .card-icon,
.step-number {
    transition: transform 260ms var(--motion-ease), box-shadow 260ms var(--motion-ease), border-color 260ms var(--motion-ease);
}

.service-card:hover .card-icon {
    transform: scale(1.06);
    box-shadow: 0 0 30px rgba(255, 61, 133, 0.2);
}

.why-card:hover .card-icon,
.step-card:hover .step-number {
    transform: scale(1.04);
}

.popular-ribbon {
    overflow: hidden;
}

.popular-ribbon::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -42%;
    width: 42%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-120%) skewX(-18deg);
}

.motion-ready .service-card.is-visible .popular-ribbon::after {
    animation: ribbonSweep 720ms var(--motion-ease) 160ms both;
}

.motion-ready [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity var(--motion-mid) var(--motion-ease), transform var(--motion-mid) var(--motion-ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal="scale"] {
    transform: translate3d(0, 16px, 0) scale(0.97);
}

.motion-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .price-table tbody tr {
    transition-duration: 520ms;
}

.price-table tbody tr {
    transition: background 180ms var(--motion-ease);
}

.price-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.055);
}

.process-steps::before {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 680ms var(--motion-ease) 220ms;
}

.process.is-visible .process-steps::before {
    transform: scaleX(1);
}

.faq-question .icon {
    transition: transform 240ms var(--motion-ease);
}

.faq-answer {
    transition: grid-template-rows 260ms var(--motion-ease);
}

.faq-answer-inner {
    opacity: 0;
    transform: translateY(-3px);
    transition: opacity 240ms var(--motion-ease), transform 240ms var(--motion-ease);
}

.faq-card.is-open .faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
}

.final-cta {
    background-size: 180% 180%;
    animation: ambientGradient 18s ease-in-out infinite;
}

.final-cta.is-visible {
    border-color: rgba(255, 61, 133, 0.54);
    box-shadow: 0 24px 70px rgba(168, 85, 247, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.floating-chat {
    transition: transform 220ms var(--motion-ease), box-shadow 220ms var(--motion-ease);
}

.floating-chat::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: var(--gradient);
    animation: pulseRing 3.4s ease-out infinite;
}

.floating-chat::before {
    content: "Nhắn tin hỗ trợ";
    position: absolute;
    right: calc(100% + 12px);
    bottom: 9px;
    width: max-content;
    max-width: 180px;
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #fff;
    background: rgba(8, 12, 26, 0.92);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    font-size: 12px;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(6px, 0, 0);
    transition: opacity 200ms var(--motion-ease), transform 200ms var(--motion-ease);
}

.floating-chat:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 46px rgba(255, 61, 133, 0.45);
}

.floating-chat:hover::before,
.floating-chat:focus-visible::before {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1180px) {
    .nav-wrap {
        grid-template-columns: 230px 1fr 240px;
    }

    .hero-grid,
    .content-grid,
    .bottom-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 24px;
        min-height: auto;
    }

    .offer-card {
        width: 100%;
    }

    .floating-chat {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .nav-wrap {
        grid-template-columns: 1fr auto;
        min-height: 66px;
    }

    .nav-links,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .site-header[data-open="true"] .nav-links,
    .site-header[data-open="true"] .header-actions {
        position: absolute;
        left: 14px;
        right: 14px;
        display: grid;
        border: 1px solid var(--line);
        background: rgba(6, 10, 24, 0.98);
        box-shadow: var(--shadow);
    }

    .site-header[data-open="true"] .nav-links {
        top: 74px;
        gap: 0;
        justify-items: stretch;
        border-radius: 8px 8px 0 0;
    }

    .site-header[data-open="true"] .nav-link {
        padding: 14px 16px;
    }

    .site-header[data-open="true"] .nav-link::after {
        display: none;
    }

    .site-header[data-open="true"] .header-actions {
        top: 296px;
        grid-template-columns: 1fr;
        padding: 14px;
        border-top: 0;
        border-radius: 0 0 8px 8px;
    }

    .service-cards,
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .announcement,
    .pricing-layout {
        grid-template-columns: 1fr;
    }

    .price-summary,
    .price-table-card {
        border-radius: var(--radius);
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 760px) {
    body {
        font-size: 15px;
    }

    .container {
        width: min(100% - 28px, var(--max));
    }

    .brand-mark {
        font-size: 20px;
    }

    .brand-logo {
        width: 150px;
    }

    .brand-logo-footer {
        width: 190px;
    }

    .brand-subtitle {
        font-size: 10px;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 20px 0 10px;
    }

    .hero-copy {
        display: contents;
    }

    .hero-copy > .badge {
        order: 1;
        align-self: flex-start;
    }

    .hero h1 {
        order: 2;
        margin-top: 12px;
        font-size: clamp(40px, 12vw, 54px);
    }

    .hero-description {
        order: 3;
        font-size: 14px;
    }

    .offer-stage {
        order: 4;
        width: 100%;
        min-height: auto;
    }

    .hero-actions {
        order: 5;
        display: none;
        gap: 10px;
        margin-top: 0;
    }

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

    .trust-chips {
        order: 6;
        display: none;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 0;
    }

    .trust-chip {
        justify-content: center;
    }

    .mobile-price-panel {
        display: none;
        grid-template-columns: 1fr auto;
        gap: 12px;
        align-items: center;
        margin-top: 14px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.05);
    }

    .mobile-price strong {
        display: block;
        font-size: 34px;
        line-height: 1;
        background: var(--gradient);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 900;
    }

    .mobile-price span,
    .mobile-minimum span {
        color: #fff;
        font-size: 12px;
        font-weight: 800;
    }

    .mobile-minimum {
        text-align: right;
    }

    .mobile-minimum strong {
        display: block;
        color: #fff;
        font-size: 15px;
        font-weight: 900;
    }

    .offer-card {
        min-height: auto;
        padding: 22px;
    }

    .offer-price {
        gap: 10px;
    }

    .price-main-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .offer-price strong {
        font-size: 58px;
    }

    .offer-price span {
        font-size: 20px;
    }

    .price-facts {
        display: none;
    }

    .offer-card-top {
        gap: 10px;
    }

    .deal-badge {
        min-width: 96px;
        padding: 8px 9px;
        font-size: 10px;
    }

    .calculator-panel {
        grid-template-columns: 1fr;
    }

    .total-card {
        min-height: 96px;
    }

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

    .service-cards,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .announcement {
        padding: 22px;
        text-align: center;
    }

    .announcement-icon {
        margin: 0 auto;
    }

    .announcement h2 {
        font-size: 21px;
    }

    .announcement h2 span {
        font-size: 24px;
    }

    .price-table-card {
        overflow-x: auto;
    }

    .price-table {
        min-width: 520px;
    }

    .bottom-grid {
        padding-bottom: 24px;
    }

    .step-card {
        min-height: auto;
    }

    .final-cta {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 92px;
    }

    .floating-chat {
        display: none;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 38px;
    }

    .offer-price strong {
        font-size: 52px;
    }

    .offer-price span {
        font-size: 18px;
    }

    .section-title {
        font-size: 26px;
    }
}

@media (max-width: 760px) {
    .motion-ready .service-card:hover,
    .motion-ready .why-card:hover,
    .motion-ready .step-card:hover,
    .motion-ready .btn:hover,
    .motion-ready .floating-chat:hover {
        transform: none;
    }

    .hero::after {
        animation-duration: 22s;
        opacity: 0.46;
    }

    .final-cta {
        animation-duration: 24s;
    }

    .floating-chat::after {
        animation-duration: 4s;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-delay: 0ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        transition-delay: 0ms !important;
    }

    .motion-ready [data-reveal],
    .motion-ready [data-reveal].is-visible,
    .motion-ready .badge,
    .motion-ready .headline-line,
    .motion-ready .hero-description,
    .motion-ready .mobile-price-panel,
    .motion-ready .hero-actions,
    .motion-ready .trust-chip,
    .motion-ready .offer-card {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero::after,
    .btn-primary::before,
    .floating-chat::after,
    .offer-price strong::after,
    .price-per-coin strong::after,
    .popular-ribbon::after {
        display: none !important;
    }

    .gradient-text,
    .final-cta,
    .deal-badge,
    .floating-chat,
    .motion-ready .site-header,
    .motion-ready .offer-card,
    .motion-ready .offer-price strong {
        animation: none !important;
    }

    .process-steps::before {
        transform: scaleX(1) !important;
    }

    .faq-answer-inner {
        opacity: 1 !important;
        transform: none !important;
    }
}
