/* ============================================================ */
/* ORDER PAGES — v6 conversion-grade redesign                    */
/* Loaded after styles.css; class names preserved for            */
/* compatibility with order-script.js                            */
/* ============================================================ */

:root {
    --o-ink: #07070a;
    --o-ink-2: #0e0e13;
    --o-ink-3: #14141a;
    --o-paper: #fafaf7;
    --o-paper-dim: #a8a8ad;
    --o-paper-mute: #6a6a70;
    --o-pulse: #0066ff;
    --o-pulse-bright: #4da3ff;
    --o-pulse-cyan: #00d4ff;
    --o-pulse-soft: rgba(0, 102, 255, 0.45);
    --o-line: rgba(250, 250, 247, 0.08);
    --o-line-strong: rgba(250, 250, 247, 0.16);
    --o-tg: #229ED9;
    --o-tg-bright: #2AABEE;
    --o-success: #22c55e;
    --o-success-bright: #7aeba5;
    --o-danger: #ff5d5d;
    --o-warn: #ffb84a;
    --o-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --o-radius: 14px;
    --o-radius-lg: 18px;
}

body.order-page {
    background: var(--o-ink);
    color: var(--o-paper);
    padding-bottom: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ============================================================ */
/* BACKGROUND DECOR                                              */
/* ============================================================ */
.order-section {
    padding: 1.5rem 0 6rem;
    position: relative;
    overflow-x: clip;
}
.order-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 600px;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(0, 102, 255, 0.18), transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(0, 212, 255, 0.10), transparent 60%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: o-orb-drift 22s ease-in-out infinite;
}
@keyframes o-orb-drift {
    0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
    50% { transform: translateX(-50%) translateY(20px) scale(1.05); }
}
.order-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0, 102, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 102, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at top, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at top, #000 30%, transparent 75%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}
.order-section .container {
    position: relative;
    z-index: 1;
}

/* ============================================================ */
/* BREADCRUMB                                                    */
/* ============================================================ */
.order-crumb {
    font-size: 0.74rem;
    color: var(--o-paper-dim);
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}
.order-crumb a {
    color: var(--o-paper-dim);
    text-decoration: none;
    transition: color 0.2s ease;
}
.order-crumb a:hover { color: var(--o-pulse-bright); }
.order-crumb .sep { margin: 0 0.4rem; opacity: 0.4; }
.order-crumb .now { color: var(--o-pulse-bright); }

/* ============================================================ */
/* HEADER + LIVE ACTIVITY                                        */
/* ============================================================ */
.order-header {
    text-align: center;
    margin-bottom: 1.6rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.order-main-title {
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #cfdbf4 60%, var(--o-pulse-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.order-main-subtitle {
    font-size: 0.95rem;
    color: rgba(250, 250, 247, 0.65);
    line-height: 1.5;
    max-width: 540px;
    margin: 0 auto;
}

.live-strip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.95rem;
    margin: 0 auto 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--o-success-bright);
}
.live-strip::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--o-success);
    box-shadow: 0 0 8px var(--o-success);
    animation: o-pulse 1.8s ease-in-out infinite;
}
@keyframes o-pulse {
    0%, 100% { opacity: 0.55; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ============================================================ */
/* PROGRESS BAR                                                  */
/* ============================================================ */
.progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    padding: 0 0.5rem;
    position: relative;
}
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}
.progress-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--o-ink-3);
    border: 1.5px solid var(--o-line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--o-paper-mute);
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.4s var(--o-ease);
    position: relative;
}
.progress-step.active .progress-step-number {
    background: linear-gradient(135deg, var(--o-pulse), var(--o-pulse-cyan));
    border-color: transparent;
    color: #fff;
    box-shadow:
        0 0 0 6px rgba(0, 102, 255, 0.15),
        0 6px 20px rgba(0, 102, 255, 0.4);
    transform: scale(1.08);
    animation: o-step-pulse 2.4s ease-in-out infinite;
}
@keyframes o-step-pulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(0, 102, 255, 0.15), 0 6px 20px rgba(0, 102, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 102, 255, 0.06), 0 8px 24px rgba(0, 102, 255, 0.55); }
}
.progress-step.completed .progress-step-number {
    background: var(--o-success);
    border-color: var(--o-success);
    color: #fff;
}
.progress-step.completed .progress-step-number span { display: none; }
.progress-step.completed .progress-step-number::before {
    content: '✓';
    font-size: 1rem;
    font-weight: 700;
}
.progress-step-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--o-paper-mute);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.progress-step.active .progress-step-label { color: var(--o-pulse-bright); }
.progress-step.completed .progress-step-label { color: var(--o-success-bright); }
.progress-line {
    flex: 1;
    height: 2px;
    background: var(--o-line-strong);
    margin: 0 0.4rem;
    position: relative;
    margin-top: -22px;
    border-radius: 1px;
    overflow: hidden;
}
.progress-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--o-success), var(--o-pulse-cyan));
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.6s var(--o-ease);
}
.progress-step.completed + .progress-line::after { transform: scaleX(1); }

/* ============================================================ */
/* MAIN GRID                                                     */
/* ============================================================ */
.order-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
    align-items: start;
}

/* ============================================================ */
/* FORM CONTAINER                                                */
/* ============================================================ */
.order-form-container {
    background: linear-gradient(180deg, rgba(20, 20, 26, 0.85), rgba(14, 14, 19, 0.85));
    border: 1px solid var(--o-line);
    border-radius: var(--o-radius-lg);
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.order-form-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--o-pulse-soft), transparent);
}

/* completion meter — sits at top of form card */
.completion-meter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: -0.5rem 0 1.5rem;
    padding: 0.65rem 0.85rem;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.18);
    border-radius: 10px;
    font-size: 0.74rem;
    color: var(--o-paper-dim);
}
.completion-meter-bar {
    flex: 1;
    height: 5px;
    background: rgba(250, 250, 247, 0.06);
    border-radius: 3px;
    overflow: hidden;
}
.completion-meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--o-pulse), var(--o-pulse-cyan));
    border-radius: 3px;
    transition: width 0.5s var(--o-ease);
    box-shadow: 0 0 8px var(--o-pulse-soft);
    width: 20%;
}
.completion-meter strong {
    color: var(--o-pulse-bright);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

/* ============================================================ */
/* STEP TRANSITIONS                                              */
/* ============================================================ */
.form-step { display: none; }
.form-step.active {
    display: block;
    animation: o-step-in 0.45s var(--o-ease);
}
@keyframes o-step-in {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--o-paper);
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}
.step-sub {
    font-size: 0.88rem;
    color: var(--o-paper-dim);
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

/* ============================================================ */
/* PACKAGE OPTIONS                                               */
/* ============================================================ */
.package-options {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.package-option {
    cursor: pointer;
    display: block;
    position: relative;
}
.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.package-card {
    position: relative;
    padding: 1.1rem 1.25rem;
    background: var(--o-ink-2);
    border: 1.5px solid var(--o-line);
    border-radius: var(--o-radius);
    transition: all 0.3s var(--o-ease);
    overflow: hidden;
}
.package-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--o-radius);
    padding: 1.5px;
    background: linear-gradient(135deg, var(--o-pulse), var(--o-pulse-cyan));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.package-option:hover .package-card {
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-2px);
}
.package-option.selected .package-card {
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.08), rgba(0, 102, 255, 0.02));
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.18);
}
.package-option.selected .package-card::before { opacity: 1; }
.package-option.selected .package-card::after {
    content: '✓';
    position: absolute;
    top: 0.85rem;
    right: 1rem;
    width: 22px; height: 22px;
    background: var(--o-pulse);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.5);
    animation: o-tick-in 0.4s var(--o-ease);
}
@keyframes o-tick-in {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.package-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--o-paper);
    margin-bottom: 0.15rem;
    letter-spacing: -0.01em;
}
.package-amount {
    font-size: 0.78rem;
    color: var(--o-paper-dim);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.package-desc { display: none; }
.package-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--o-pulse-bright);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(77, 163, 255, 0.25);
}
.package-badge {
    position: absolute;
    top: -8px;
    left: 1rem;
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, var(--o-pulse-cyan), var(--o-pulse-bright));
    color: #04111f;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.35);
}

/* ============================================================ */
/* FORM SECTIONS / GRID                                          */
/* ============================================================ */
.form-section {
    margin-bottom: 1.75rem;
    animation: o-fade-up 0.5s var(--o-ease) backwards;
}
.form-section:nth-child(2) { animation-delay: 0.05s; }
.form-section:nth-child(3) { animation-delay: 0.1s; }
@keyframes o-fade-up {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-subtitle {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--o-pulse-bright);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.section-subtitle::before {
    content: '';
    width: 12px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--o-pulse), transparent);
    border-radius: 1px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}
.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--o-paper-dim);
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--o-ink-3);
    border: 1.5px solid var(--o-line-strong);
    border-radius: 10px;
    color: var(--o-paper);
    font-size: 0.92rem;
    font-family: inherit;
    transition: all 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input::placeholder { color: #5a5a60; }
.form-group input:hover,
.form-group select:hover { border-color: rgba(0, 102, 255, 0.25); }
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--o-pulse-bright);
    background: rgba(0, 102, 255, 0.04);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12);
}
.form-group.valid input:not(:focus) {
    border-color: rgba(34, 197, 94, 0.45);
    padding-right: 2.4rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237aeba5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 13 9 17 19 7'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 16px 16px;
}
.form-group .field-hint {
    font-size: 0.7rem;
    color: var(--o-paper-mute);
    margin-top: 0.35rem;
    line-height: 1.4;
}
.form-group .field-error {
    display: block;
    font-size: 0.72rem;
    color: var(--o-danger);
    margin-top: 0.35rem;
    min-height: 0;
    transition: min-height 0.2s ease;
    font-weight: 500;
}
.form-group.error input,
.form-group.error select {
    border-color: var(--o-danger);
    background: rgba(255, 93, 93, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 93, 93, 0.08);
}
.form-group.error .field-error { min-height: 1.1em; }

/* ============================================================ */
/* RADIO CARDS (delivery)                                        */
/* ============================================================ */
.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}
.radio-option {
    cursor: pointer;
    display: block;
    position: relative;
}
.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.radio-card {
    padding: 0.85rem 1rem;
    background: var(--o-ink-2);
    border: 1.5px solid var(--o-line);
    border-radius: 12px;
    transition: all 0.25s var(--o-ease);
    height: 100%;
    position: relative;
}
.radio-option:hover .radio-card {
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-1px);
}
.radio-option.selected .radio-card {
    border-color: var(--o-pulse);
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.08), rgba(0, 102, 255, 0.02));
    box-shadow: 0 8px 22px rgba(0, 102, 255, 0.18);
}
.radio-option.selected .radio-card::after {
    content: '';
    position: absolute;
    top: 0.65rem;
    right: 0.7rem;
    width: 16px; height: 16px;
    background: var(--o-pulse) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 13 9 17 19 7'/></svg>") center/10px no-repeat;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.5);
    animation: o-tick-in 0.3s var(--o-ease);
}
.radio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.2rem;
    gap: 0.5rem;
}
.radio-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--o-paper);
    letter-spacing: -0.005em;
}
.radio-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--o-pulse-bright);
    font-variant-numeric: tabular-nums;
}
.radio-desc {
    font-size: 0.74rem;
    color: var(--o-paper-dim);
    line-height: 1.4;
    padding-right: 1.2rem;
}

/* ============================================================ */
/* PAYMENT METHODS                                               */
/* ============================================================ */
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.payment-option {
    cursor: pointer;
    display: block;
    position: relative;
}
.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.payment-card {
    padding: 1rem 0.85rem;
    background: var(--o-ink-2);
    border: 1.5px solid var(--o-line);
    border-radius: 12px;
    transition: all 0.25s var(--o-ease);
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    position: relative;
}
.payment-option:hover .payment-card {
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-2px);
}
.payment-option.selected .payment-card {
    border-color: var(--o-pulse);
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.1), rgba(0, 102, 255, 0.02));
    box-shadow: 0 8px 22px rgba(0, 102, 255, 0.2);
}
.payment-option.selected .payment-card::after {
    content: '';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 16px; height: 16px;
    background: var(--o-pulse) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 13 9 17 19 7'/></svg>") center/10px no-repeat;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.5);
    animation: o-tick-in 0.3s var(--o-ease);
}
.payment-icon {
    width: 44px; height: 44px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 102, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--o-pulse-bright);
    margin-bottom: 0.25rem;
}
.payment-icon svg { width: 22px; height: 22px; }
.payment-name {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--o-paper);
    letter-spacing: -0.005em;
}
.payment-hint {
    font-size: 0.66rem;
    color: var(--o-paper-mute);
    letter-spacing: 0.02em;
    line-height: 1.3;
}

/* ============================================================ */
/* CRYPTO INCENTIVE                                              */
/* ============================================================ */
.crypto-incentive {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, rgba(255, 184, 74, 0.12), rgba(0, 212, 255, 0.06));
    border: 1px solid rgba(255, 184, 74, 0.35);
    border-radius: 12px;
    font-size: 0.85rem;
    color: rgba(250, 250, 247, 0.9);
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}
.crypto-incentive::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    bottom: 0; width: 3px;
    background: linear-gradient(180deg, var(--o-warn), var(--o-pulse-cyan));
}
.ci-tag {
    flex-shrink: 0;
    padding: 0.25rem 0.55rem;
    background: linear-gradient(135deg, var(--o-warn), #f59e0b);
    color: #1a0e00;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 184, 74, 0.35);
}
.ci-text strong { color: var(--o-warn); font-weight: 700; }

/* -20% badge on the crypto payment card */
.crypto-discount-badge {
    position: absolute;
    top: -8px; left: 50%;
    transform: translateX(-50%);
    padding: 0.18rem 0.55rem;
    background: linear-gradient(135deg, var(--o-warn), #f59e0b);
    color: #1a0e00;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(255, 184, 74, 0.45);
    z-index: 2;
    animation: o-badge-pulse 2.4s ease-in-out infinite;
}
@keyframes o-badge-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50%      { transform: translateX(-50%) scale(1.08); }
}
.payment-option-crypto .payment-card {
    border-color: rgba(255, 184, 74, 0.4);
    background: linear-gradient(180deg, rgba(255, 184, 74, 0.06), rgba(0, 0, 0, 0));
}
.payment-option-crypto:hover .payment-card {
    border-color: var(--o-warn);
    box-shadow: 0 10px 24px rgba(255, 184, 74, 0.25);
}
.payment-option-crypto.selected .payment-card {
    border-color: var(--o-warn);
    background: linear-gradient(180deg, rgba(255, 184, 74, 0.15), rgba(0, 102, 255, 0.04));
    box-shadow: 0 10px 26px rgba(255, 184, 74, 0.3);
}
.payment-option-crypto.selected .payment-card::after {
    background: var(--o-warn) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a0e00' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 13 9 17 19 7'/></svg>") center/10px no-repeat;
    box-shadow: 0 2px 8px rgba(255, 184, 74, 0.5);
}

/* ============================================================ */
/* COUPON                                                        */
/* ============================================================ */
.coupon-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 102, 255, 0.04);
    border: 1px dashed rgba(0, 102, 255, 0.3);
    border-radius: 12px;
}
.coupon-section .section-subtitle {
    margin-bottom: 0.65rem;
}
.coupon-input-container {
    display: flex;
    gap: 0.5rem;
}
.coupon-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--o-ink-3);
    border: 1.5px solid var(--o-line-strong);
    border-radius: 10px;
    color: var(--o-paper);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: inherit;
    transition: all 0.2s ease;
}
.coupon-input::placeholder { color: #5a5a60; text-transform: none; letter-spacing: 0; }
.coupon-input:focus {
    outline: none;
    border-color: var(--o-pulse-bright);
    background: rgba(0, 102, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
}
.coupon-input:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-coupon {
    padding: 0 1.25rem;
    background: rgba(0, 102, 255, 0.12);
    border: 1.5px solid rgba(0, 102, 255, 0.4);
    color: var(--o-pulse-bright);
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: inherit;
    white-space: nowrap;
}
.btn-coupon:hover:not(:disabled) {
    background: var(--o-pulse);
    border-color: var(--o-pulse);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.4);
}
.btn-coupon:disabled { opacity: 0.4; cursor: not-allowed; }
.coupon-message {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    min-height: 1.1em;
}
.coupon-message.success { color: var(--o-success-bright); }
.coupon-message.error { color: var(--o-danger); }

/* ============================================================ */
/* PROP ACKNOWLEDGE                                              */
/* ============================================================ */
.prop-acknowledge {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 184, 74, 0.06);
    border: 1px solid rgba(255, 184, 74, 0.25);
    border-radius: 10px;
    margin-bottom: 1rem;
}
.prop-acknowledge-label {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    cursor: pointer;
    font-size: 0.78rem;
    color: var(--o-paper-dim);
    line-height: 1.5;
}
.prop-acknowledge-label input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 2px;
    width: 16px; height: 16px;
    accent-color: var(--o-pulse);
}
.prop-acknowledge-label strong { color: var(--o-paper); font-weight: 600; }

/* ============================================================ */
/* BUTTONS                                                       */
/* ============================================================ */
.form-buttons {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
}
.btn-next {
    flex: 1;
    padding: 1.05rem 1.5rem;
    background: linear-gradient(135deg, var(--o-pulse), var(--o-pulse-cyan));
    border: none;
    color: #fff;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    transition: all 0.3s var(--o-ease);
    position: relative;
    overflow: hidden;
    font-family: inherit;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 22px rgba(0, 102, 255, 0.32);
}
.form-step[data-step="1"] .btn-next { width: 100%; }
.btn-next::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.8s var(--o-ease);
    pointer-events: none;
}
.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 102, 255, 0.5);
}
.btn-next:hover::before { transform: translateX(120%); }
.btn-next:active { transform: translateY(0); }
.btn-next:disabled {
    opacity: 0.55;
    cursor: progress;
    transform: none;
}
.btn-back {
    padding: 1.05rem 1.5rem;
    background: transparent;
    border: 1.5px solid var(--o-line-strong);
    color: var(--o-paper-dim);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}
.btn-back:hover {
    border-color: var(--o-pulse-bright);
    color: var(--o-paper);
    background: rgba(0, 102, 255, 0.04);
}

/* ============================================================ */
/* CONFIRMATION (step 5)                                         */
/* ============================================================ */
.confirmation-content { text-align: center; padding: 0.5rem 0; }
.confirm-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.95rem;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: var(--o-success-bright);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.confirm-success-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--o-success);
    box-shadow: 0 0 8px var(--o-success);
    animation: o-pulse 1.8s ease-in-out infinite;
}
.confirmation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--o-success), #16a34a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 800;
    box-shadow:
        0 0 0 8px rgba(34, 197, 94, 0.12),
        0 12px 30px rgba(34, 197, 94, 0.4);
    animation: o-confirm-pop 0.6s var(--o-ease), o-confirm-glow 2.4s ease-in-out infinite 0.6s;
}
@keyframes o-confirm-pop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes o-confirm-glow {
    0%, 100% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.12), 0 12px 30px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 14px rgba(34, 197, 94, 0.05), 0 16px 40px rgba(34, 197, 94, 0.55); }
}
.confirmation-title {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.15;
    background: linear-gradient(135deg, #fff 0%, #cfdbf4 60%, var(--o-pulse-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.confirmation-subtitle {
    font-size: 0.95rem;
    color: var(--o-paper-dim);
    margin-bottom: 1.75rem;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================ */
/* COUNTDOWN                                                     */
/* ============================================================ */
.countdown-banner {
    background: linear-gradient(180deg, rgba(255, 184, 74, 0.08), rgba(255, 93, 93, 0.04));
    border: 1px solid rgba(255, 184, 74, 0.3);
    border-radius: 14px;
    padding: 1.1rem 1rem;
    margin-bottom: 1.5rem;
}
.countdown-label {
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--o-warn);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
}
.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-bottom: 0.55rem;
}
.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 56px;
    padding: 0.55rem 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 184, 74, 0.18);
    border-radius: 10px;
}
.countdown-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--o-paper);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.countdown-unit-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--o-paper-mute);
    letter-spacing: 0.18em;
    margin-top: 0.25rem;
}
.countdown-sep {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--o-warn);
    opacity: 0.6;
    align-self: flex-start;
    padding-top: 0.45rem;
}
.countdown-warning {
    font-size: 0.7rem;
    color: var(--o-paper-mute);
    text-align: center;
}

/* ============================================================ */
/* ORDER CODE BOX                                                */
/* ============================================================ */
.order-code-box {
    background: var(--o-ink-3);
    border: 1px solid var(--o-line-strong);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}
.order-code-label {
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--o-paper-mute);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}
.order-code-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}
.order-code {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--o-pulse-bright);
    letter-spacing: 0.05em;
    word-break: break-all;
}
.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.4);
    color: var(--o-pulse-bright);
    border-radius: 8px;
    font-size: 0.74rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    flex-shrink: 0;
}
.btn-copy:hover { background: var(--o-pulse); color: #fff; border-color: var(--o-pulse); }
.btn-copy svg { width: 13px; height: 13px; }

.pay-now-section { margin: 0 auto 1.75rem; max-width: 480px; }
.btn-pay-now {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.15rem 1.5rem;
    background: linear-gradient(135deg, var(--o-tg), var(--o-tg-bright));
    color: #fff;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--o-ease);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(34, 158, 217, 0.4);
}
.btn-pay-now::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.8s var(--o-ease);
}
.btn-pay-now:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(34, 158, 217, 0.55); }
.btn-pay-now:hover::before { transform: translateX(120%); }
.pay-now-subtext {
    font-size: 0.78rem;
    color: var(--o-paper-mute);
    margin-top: 0.65rem;
    line-height: 1.45;
    text-align: center;
}

.what-now-box {
    background: var(--o-ink-3);
    border: 1px solid var(--o-line);
    border-radius: 14px;
    padding: 1.25rem 1.25rem;
    text-align: left;
}
.what-now-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--o-paper);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}
.what-now-email-note {
    font-size: 0.78rem;
    color: var(--o-paper-dim);
    margin-bottom: 0.85rem;
}
.what-now-steps {
    list-style: none;
    counter-reset: whatnow;
    padding: 0;
    margin: 0 0 1rem;
}
.what-now-steps li {
    counter-increment: whatnow;
    position: relative;
    padding: 0.5rem 0 0.5rem 2.1rem;
    font-size: 0.85rem;
    color: var(--o-paper);
    line-height: 1.45;
    border-bottom: 1px dashed var(--o-line);
}
.what-now-steps li:last-child { border-bottom: none; }
.what-now-steps li::before {
    content: counter(whatnow);
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 22px; height: 22px;
    background: rgba(0, 102, 255, 0.15);
    color: var(--o-pulse-bright);
    border: 1px solid rgba(0, 102, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
}
.urgency-note {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.85rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 10px;
    font-size: 0.78rem;
    color: var(--o-success-bright);
    margin-bottom: 1rem;
}
.urgency-note::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--o-success);
    box-shadow: 0 0 8px var(--o-success);
    animation: o-pulse 1.8s ease-in-out infinite;
}
.what-now-buttons { display: flex; flex-direction: column; gap: 0.5rem; }
.btn-telegram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.25rem;
    background: linear-gradient(135deg, var(--o-tg), var(--o-tg-bright));
    color: #fff;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--o-ease);
    box-shadow: 0 6px 18px rgba(34, 158, 217, 0.32);
}
.btn-telegram:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(34, 158, 217, 0.5); }
.btn-telegram svg { width: 17px; height: 17px; }
.btn-telegram-large { font-size: 0.95rem; padding: 1.1rem 1.5rem; }

/* ============================================================ */
/* SUMMARY SIDEBAR                                               */
/* ============================================================ */
.order-summary {
    background: linear-gradient(180deg, rgba(20, 20, 26, 0.85), rgba(14, 14, 19, 0.85));
    border: 1px solid var(--o-line);
    border-radius: var(--o-radius-lg);
    padding: 1.5rem 1.4rem;
    position: sticky;
    top: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.summary-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--o-pulse-bright);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--o-line);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.summary-title::before {
    content: '';
    width: 4px;
    height: 14px;
    background: linear-gradient(180deg, var(--o-pulse), var(--o-pulse-cyan));
    border-radius: 2px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    font-size: 0.86rem;
}
.summary-label { color: var(--o-paper-dim); font-weight: 500; }
.summary-value {
    color: var(--o-paper);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.summary-discount { color: var(--o-success-bright) !important; }
.summary-total {
    margin-top: 0.65rem;
    padding-top: 0.95rem;
    border-top: 1px solid var(--o-line);
}
.summary-total .summary-label {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--o-paper);
}
.summary-total .summary-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--o-pulse-bright);
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(77, 163, 255, 0.3);
}

.trust-section {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--o-line);
}
.trust-title {
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--o-paper-mute);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    text-align: center;
}
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.65rem 0.3rem;
    background: rgba(0, 102, 255, 0.04);
    border: 1px solid rgba(0, 102, 255, 0.18);
    border-radius: 9px;
    color: var(--o-pulse-bright);
    transition: background 0.2s ease;
}
.trust-badge:hover { background: rgba(0, 102, 255, 0.08); }
.trust-badge svg { width: 17px; height: 17px; }
.trust-badge span {
    font-size: 0.56rem;
    font-weight: 600;
    color: var(--o-paper);
    letter-spacing: 0.04em;
    text-align: center;
}

.reviews-section {
    margin-top: 1rem;
    padding: 0.85rem;
    background: rgba(250, 250, 247, 0.03);
    border-radius: 10px;
    text-align: center;
}
.reviews-title { display: none; }
.reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.stars {
    color: var(--o-pulse-bright);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-shadow: 0 0 8px rgba(77, 163, 255, 0.4);
}
.reviews-count {
    font-size: 0.74rem;
    color: var(--o-paper-dim);
    font-weight: 500;
}

.guarantee-section {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.85rem;
    padding: 0.85rem 0.95rem;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
}
.guarantee-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: var(--o-success);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}
.guarantee-text strong {
    display: block;
    font-size: 0.82rem;
    color: var(--o-paper);
    font-weight: 700;
    margin-bottom: 0.1rem;
}
.guarantee-text p {
    font-size: 0.68rem;
    color: var(--o-paper-dim);
    line-height: 1.35;
    margin: 0;
}

/* upsell card on summary (sells the size advantage) */
.summary-perk {
    margin-top: 1rem;
    padding: 0.75rem 0.9rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 102, 255, 0.04));
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 10px;
    font-size: 0.74rem;
    color: var(--o-paper-dim);
    line-height: 1.45;
}
.summary-perk strong { color: var(--o-pulse-cyan); font-weight: 700; }

/* ============================================================ */
/* TELEGRAM MODAL                                                */
/* ============================================================ */
.tg-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: o-modal-fade 0.3s ease;
}
@keyframes o-modal-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.tg-modal-card {
    max-width: 460px;
    width: 100%;
    background: linear-gradient(180deg, var(--o-ink-2), var(--o-ink-3));
    border: 1px solid var(--o-line-strong);
    border-radius: 18px;
    padding: 1.75rem 1.6rem;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    animation: o-modal-pop 0.45s var(--o-ease);
}
@keyframes o-modal-pop {
    from { transform: scale(0.92) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}
.tg-modal-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--o-tg-bright), transparent);
}
.tg-modal-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--o-tg), var(--o-tg-bright));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 6px rgba(34, 158, 217, 0.18),
        0 12px 30px rgba(34, 158, 217, 0.4);
}
.tg-modal-icon svg { width: 30px; height: 30px; }
.tg-modal-label {
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--o-tg-bright);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.tg-modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--o-paper);
    letter-spacing: -0.02em;
    margin-bottom: 0.55rem;
    line-height: 1.2;
}
.tg-modal-body {
    font-size: 0.86rem;
    color: var(--o-paper-dim);
    line-height: 1.55;
    margin-bottom: 1rem;
}
.tg-modal-note {
    font-size: 0.7rem;
    color: var(--o-paper-mute);
    padding: 0.55rem 0.75rem;
    background: rgba(250, 250, 247, 0.03);
    border-radius: 8px;
    margin-bottom: 1.25rem;
    line-height: 1.45;
}
.tg-modal-actions { display: flex; flex-direction: column; gap: 0.55rem; }
.tg-modal-btn-primary {
    padding: 0.95rem 1.25rem;
    background: linear-gradient(135deg, var(--o-tg), var(--o-tg-bright));
    color: #fff;
    border: none;
    border-radius: 11px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 22px rgba(34, 158, 217, 0.35);
    font-family: inherit;
}
.tg-modal-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(34, 158, 217, 0.5); }
.tg-modal-btn-secondary {
    padding: 0.85rem 1.25rem;
    background: transparent;
    border: 1.5px solid var(--o-line-strong);
    color: var(--o-paper-dim);
    border-radius: 11px;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    font-family: inherit;
}
.tg-modal-btn-secondary:hover { border-color: var(--o-tg-bright); color: var(--o-paper); }

/* ============================================================ */
/* PAYSAFE PIN MODAL                                             */
/* ============================================================ */
.ps-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9100;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: o-modal-fade 0.3s ease;
    overflow-y: auto;
}
.ps-modal-overlay.is-open { display: flex; }
.ps-modal-card {
    max-width: 460px;
    width: 100%;
    background: linear-gradient(180deg, var(--o-ink-2), var(--o-ink-3));
    border: 1px solid var(--o-line-strong);
    border-radius: 18px;
    padding: 1.85rem 1.6rem 1.6rem;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    animation: o-modal-pop 0.45s var(--o-ease);
    margin: auto;
}
.ps-modal-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f88a09, transparent);
}
.ps-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--o-line-strong);
    background: rgba(0, 0, 0, 0.35);
    color: var(--o-paper-dim);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
    z-index: 2;
    font-family: inherit;
}
.ps-modal-close:hover { background: rgba(0, 0, 0, 0.55); color: var(--o-paper); transform: rotate(90deg); }
.ps-modal-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #ed6c02, #f88a09);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 6px rgba(248, 138, 9, 0.18),
        0 12px 30px rgba(248, 138, 9, 0.4);
}
.ps-modal-icon svg { width: 30px; height: 30px; }
.ps-modal-label {
    font-size: 0.66rem;
    font-weight: 700;
    color: #ffb84a;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.ps-modal-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--o-paper);
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
    line-height: 1.2;
}
.ps-modal-body {
    font-size: 0.84rem;
    color: var(--o-paper-dim);
    line-height: 1.55;
    margin-bottom: 1.1rem;
}
.ps-modal-field {
    text-align: left;
    margin-bottom: 0.85rem;
}
.ps-modal-field-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--o-paper-dim);
    margin-bottom: 0.4rem;
}
.ps-modal-select,
.ps-modal-pin {
    width: 100%;
    padding: 0.85rem 0.95rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1.5px solid var(--o-line-strong);
    border-radius: 11px;
    color: var(--o-paper);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.ps-modal-select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8a8ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 16px;
    padding-right: 2.4rem;
    cursor: pointer;
}
.ps-modal-pin {
    letter-spacing: 0.22em;
    font-variant-numeric: tabular-nums;
    text-align: center;
    font-weight: 600;
}
.ps-modal-select:focus,
.ps-modal-pin:focus {
    outline: none;
    border-color: #f88a09;
    background: rgba(0, 0, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(248, 138, 9, 0.18);
}
.ps-modal-field.has-error .ps-modal-select,
.ps-modal-field.has-error .ps-modal-pin {
    border-color: #ff5e62;
    box-shadow: 0 0 0 3px rgba(255, 94, 98, 0.15);
}
.ps-modal-error {
    min-height: 1.1em;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: #ff7e82;
    line-height: 1.3;
}
.ps-modal-note {
    font-size: 0.7rem;
    color: var(--o-paper-mute);
    padding: 0.55rem 0.75rem;
    background: rgba(250, 250, 247, 0.03);
    border-radius: 8px;
    margin: 0.5rem 0 1.1rem;
    line-height: 1.45;
    text-align: left;
}
.ps-modal-actions { display: flex; flex-direction: column; gap: 0.55rem; }
.ps-modal-btn-primary {
    padding: 0.95rem 1.25rem;
    background: linear-gradient(135deg, #ed6c02, #f88a09);
    color: #fff;
    border: none;
    border-radius: 11px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 8px 22px rgba(248, 138, 9, 0.35);
    font-family: inherit;
}
.ps-modal-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(248, 138, 9, 0.5); }
.ps-modal-btn-secondary {
    padding: 0.85rem 1.25rem;
    background: transparent;
    border: 1.5px solid var(--o-line-strong);
    color: var(--o-paper-dim);
    border-radius: 11px;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}
.ps-modal-btn-secondary:hover { border-color: #f88a09; color: var(--o-paper); }

/* Paysafe option — inline "code entered" badge in step 4 */
.payment-option .payment-paysafe-status {
    display: none;
    margin-top: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #ffb84a;
    text-transform: uppercase;
}
.payment-option.has-paysafe-pin .payment-paysafe-status { display: block; }

/* ============================================================ */
/* STICKY MOBILE CHECKOUT BAR                                    */
/* ============================================================ */
.mobile-checkout-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 800;
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0));
    background: rgba(7, 7, 10, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid var(--o-line-strong);
    align-items: center;
    gap: 0.75rem;
    transform: translateY(100%);
    transition: transform 0.4s var(--o-ease);
}
.mobile-checkout-bar.show { transform: translateY(0); }
.mobile-checkout-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--o-pulse), transparent);
    opacity: 0.7;
}
.mcb-info { flex: 1; min-width: 0; }
.mcb-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--o-paper-mute);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.mcb-total {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--o-pulse-bright);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.mcb-cta {
    flex-shrink: 0;
    padding: 0.85rem 1.1rem;
    background: linear-gradient(135deg, var(--o-pulse), var(--o-pulse-cyan));
    color: #fff;
    border: none;
    border-radius: 11px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.25s ease;
    font-family: inherit;
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.4);
}
.mcb-cta:active { transform: scale(0.97); }
.mcb-cta svg { width: 14px; height: 14px; }
.mcb-cta:disabled { opacity: 0.55; cursor: not-allowed; }

/* ============================================================ */
/* PURCHASE TOAST (live social proof)                            */
/* ============================================================ */
.order-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.05rem;
    background: rgba(17, 17, 22, 0.95);
    border: 1px solid var(--o-line-strong);
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    max-width: 320px;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.5s var(--o-ease);
    pointer-events: none;
}
.order-toast::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--o-pulse-cyan), transparent);
}
.order-toast.show { transform: translateX(0); opacity: 1; }
.order-toast-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(0, 102, 255, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 9px;
    color: var(--o-success-bright);
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-toast-icon svg { width: 16px; height: 16px; }
.order-toast-text {
    font-size: 0.76rem;
    color: rgba(250, 250, 247, 0.85);
    line-height: 1.4;
}
.order-toast-text strong { color: var(--o-paper); font-weight: 600; }
.order-toast-text .o-toast-country { color: var(--o-pulse-bright); font-weight: 500; }
.order-toast-time {
    font-size: 0.64rem;
    color: var(--o-paper-mute);
    margin-top: 0.15rem;
    letter-spacing: 0.02em;
}

/* ============================================================ */
/* SAVED FORM RESUME BANNER                                      */
/* ============================================================ */
.resume-banner {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.04));
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 10px;
    margin: 0 0 1.25rem;
    font-size: 0.78rem;
    color: var(--o-paper-dim);
}
.resume-banner.show { display: flex; }
.resume-banner svg { color: var(--o-pulse-bright); flex-shrink: 0; }
.resume-banner-text { flex: 1; line-height: 1.35; }
.resume-banner-text strong { color: var(--o-paper); font-weight: 600; }
.resume-banner-clear {
    background: transparent;
    border: 1px solid var(--o-line-strong);
    color: var(--o-paper-dim);
    padding: 0.35rem 0.7rem;
    border-radius: 7px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}
.resume-banner-clear:hover { border-color: var(--o-pulse-bright); color: var(--o-paper); }

/* ============================================================ */
/* PAYMENT-MODE BOOSTERS (post-checkout conversion)              */
/* ============================================================ */

/* Floating banner above confirmation content */
.payment-urgency-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto 1.5rem;
    max-width: 540px;
    padding: 0.85rem 1.1rem;
    background: linear-gradient(90deg, rgba(255, 184, 74, 0.12), rgba(34, 158, 217, 0.08));
    border: 1px solid rgba(255, 184, 74, 0.35);
    border-radius: 12px;
    text-align: left;
}
.pub-pulse {
    flex-shrink: 0;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--o-warn);
    box-shadow: 0 0 10px var(--o-warn);
    animation: o-pulse 1.6s ease-in-out infinite;
}
.pub-text {
    font-size: 0.84rem;
    color: rgba(250, 250, 247, 0.85);
    line-height: 1.45;
}
.pub-text strong { color: var(--o-paper); font-weight: 700; }

/* Pulse + glow on the main pay-now button */
.btn-pay-now-attention {
    animation: o-paynow-pulse 2s ease-in-out infinite;
    position: relative;
}
@keyframes o-paynow-pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(34, 158, 217, 0.5); }
    50%      { box-shadow: 0 10px 40px rgba(34, 158, 217, 0.85), 0 0 0 8px rgba(42, 171, 238, 0.18); }
}

/* Copy-to-clipboard toast */
.copy-toast {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    z-index: 1100;
    padding: 0.75rem 1.1rem;
    background: linear-gradient(135deg, var(--o-success), #16a34a);
    color: #fff;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.45);
    opacity: 0;
    transition: all 0.4s var(--o-ease);
    pointer-events: none;
    white-space: nowrap;
}
.copy-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Restore-pending-order banner (when user revisits) */
.restore-payment-bar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.1rem;
    background: linear-gradient(135deg, rgba(34, 158, 217, 0.95), rgba(42, 171, 238, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    max-width: calc(100% - 2rem);
    width: 540px;
    transition: transform 0.45s var(--o-ease);
}
.restore-payment-bar.show { transform: translateX(-50%) translateY(0); }
.rpb-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}
.rpb-text { flex: 1; min-width: 0; line-height: 1.3; }
.rpb-text strong {
    display: block;
    font-size: 0.86rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.15rem;
    letter-spacing: -0.01em;
}
.rpb-text span {
    display: block;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.85);
}
.rpb-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.rpb-pay {
    padding: 0.55rem 0.95rem;
    background: #fff;
    color: var(--o-tg);
    border-radius: 9px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.rpb-pay:hover { transform: translateY(-1px); }
.rpb-dismiss {
    width: 30px; height: 30px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s ease;
    font-family: inherit;
}
.rpb-dismiss:hover { background: rgba(255, 255, 255, 0.18); }

/* Sticky bar morphs into payment mode */
.mobile-checkout-bar.payment-mode { border-top-color: rgba(34, 158, 217, 0.4); }

@media (max-width: 640px) {
    .restore-payment-bar {
        flex-wrap: wrap;
        padding: 0.75rem 0.9rem;
    }
    .rpb-text { flex: 1 1 60%; }
    .rpb-actions { flex: 0 0 auto; }
    .copy-toast { top: 0.7rem; font-size: 0.78rem; padding: 0.65rem 0.95rem; }
    .payment-urgency-banner { font-size: 0.8rem; padding: 0.75rem 0.9rem; }
}

/* ============================================================ */
/* RESPONSIVE                                                    */
/* ============================================================ */
@media (max-width: 980px) {
    .order-content {
        grid-template-columns: 1fr;
    }
    .order-summary {
        position: static;
        order: -1;
        margin-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .order-section { padding: 0.75rem 0 8rem; }
    .order-form-container {
        padding: 1.5rem 1rem;
        border-radius: 14px;
    }
    .progress-bar {
        margin-bottom: 1.75rem;
        padding: 0;
    }
    .progress-step-label { font-size: 0.6rem; }
    .progress-step-number { width: 30px; height: 30px; font-size: 0.78rem; }
    .progress-line { margin-top: -19px; }
    .step-title { font-size: 1.25rem; }
    .step-sub { font-size: 0.85rem; margin-bottom: 1.25rem; }

    /* ---------- MOBILE FORM FIELDS — high-visibility, easy to tap ---------- */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .form-group label {
        font-size: 0.78rem;
        color: var(--o-paper);
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: none;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }
    /* Label icons — visible cues for what each field is for */
    .form-group label::before {
        content: '';
        display: inline-block;
        width: 18px; height: 18px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        flex-shrink: 0;
        opacity: 0.95;
    }
    .form-group:has(#fullName) label::before {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%234da3ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/><circle cx='12' cy='7' r='4'/></svg>");
    }
    .form-group:has(#email) label::before {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%234da3ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/><polyline points='22 6 12 13 2 6'/></svg>");
    }
    .form-group:has(#phone) label::before {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%234da3ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.37 1.9.71 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.58 2.81.71A2 2 0 0 1 22 16.92z'/></svg>");
    }
    .form-group:has(#telegram) label::before {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='%232AABEE' stroke='none'><path d='M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM16.64 8.8L14.83 17.02C14.69 17.62 14.33 17.77 13.83 17.49L11.02 15.42L9.66 16.73C9.51 16.88 9.38 17.01 9.1 17.01L9.29 14.18L14.55 9.43C14.78 9.23 14.5 9.12 14.2 9.32L7.7 13.42L4.94 12.55C4.34 12.36 4.33 11.95 5.07 11.66L15.87 7.5C16.37 7.32 16.81 7.62 16.64 8.8Z'/></svg>");
    }
    .form-group:has(#streetAddress) label::before {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%234da3ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/><polyline points='9 22 9 12 15 12 15 22'/></svg>");
    }
    .form-group:has(#city) label::before,
    .form-group:has(#country) label::before {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%234da3ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>");
    }
    .form-group:has(#postalCode) label::before {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%234da3ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='16' rx='2'/><path d='M7 8h10M7 12h10M7 16h6'/></svg>");
    }

    .form-group input,
    .form-group select {
        font-size: 1rem; /* 16px — prevents iOS zoom-on-focus */
        padding: 1.05rem 1rem;
        border-width: 1.5px;
        background: rgba(20, 20, 26, 0.95);
        border-radius: 12px;
        min-height: 52px;
    }
    .form-group input::placeholder { color: #6a6a72; }
    .form-group input:focus,
    .form-group select:focus {
        border-color: var(--o-pulse-cyan);
        background: rgba(0, 102, 255, 0.08);
        box-shadow:
            0 0 0 4px rgba(0, 212, 255, 0.18),
            0 6px 18px rgba(0, 102, 255, 0.25);
        transform: translateY(-1px);
    }
    .form-group.valid input:not(:focus) {
        background-position: right 0.95rem center;
        background-size: 18px 18px;
        padding-right: 2.6rem;
    }
    .form-group .field-hint {
        font-size: 0.74rem;
        color: var(--o-paper-dim);
        margin-top: 0.4rem;
    }
    .form-group .field-error {
        font-size: 0.78rem;
        font-weight: 600;
        margin-top: 0.4rem;
    }
    .form-group.error input,
    .form-group.error select {
        animation: o-shake 0.4s var(--o-ease);
    }
    @keyframes o-shake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-4px); }
        75% { transform: translateX(4px); }
    }

    /* Stronger labels for sections so people see what's expected */
    .section-subtitle {
        font-size: 0.76rem;
        color: var(--o-pulse-bright);
        letter-spacing: 0.12em;
        margin-bottom: 1rem;
    }

    /* Larger, clearer radio/payment cards */
    .radio-group {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }
    .radio-card {
        padding: 1rem 1.1rem;
        min-height: 64px;
        border-width: 1.5px;
    }
    .radio-title { font-size: 0.95rem; }
    .radio-desc { font-size: 0.78rem; padding-right: 1.6rem; }

    .payment-methods {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }
    .payment-card {
        padding: 1.1rem 0.85rem 1rem;
        min-height: 110px;
    }
    .payment-icon { width: 40px; height: 40px; }
    .payment-name { font-size: 0.88rem; }

    /* Package cards more obvious */
    .package-card { padding: 1.1rem 1.1rem; }
    .package-name { font-size: 1.05rem; }
    .package-amount { font-size: 0.8rem; }
    .package-price { font-size: 1.5rem; }

    /* Coupon section easier to use */
    .coupon-input {
        font-size: 1rem;
        padding: 0.95rem 1rem;
        min-height: 50px;
    }
    .btn-coupon {
        padding: 0 1.15rem;
        min-height: 50px;
        font-size: 0.85rem;
    }

    /* Buttons easier to hit */
    .btn-next, .btn-back {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
        min-height: 56px;
    }
    .form-buttons {
        flex-direction: column-reverse;
        gap: 0.6rem;
        margin-top: 1.75rem;
    }
    .btn-back { width: 100%; }

    /* Confirmation tweaks */
    .countdown-num { font-size: 1.3rem; }
    .countdown-unit { min-width: 48px; }
    .confirmation-icon { width: 64px; height: 64px; font-size: 2rem; }
    .confirmation-title { font-size: 1.4rem; }

    /* Floating support pill — always visible help on mobile */
    .order-toast {
        left: 0.75rem; right: 0.75rem;
        bottom: 5.5rem;
        max-width: none;
    }
    .mobile-checkout-bar { display: flex; }

    /* Resume + completion meter compacter */
    .completion-meter {
        flex-wrap: wrap;
        font-size: 0.7rem;
        gap: 0.55rem;
    }
    .completion-meter-bar { flex: 1 0 100%; order: 4; }
    .resume-banner { flex-wrap: wrap; }
    .resume-banner-text { flex: 1 1 70%; }
}

/* Extra-small screens (≤380px) — squeeze a bit more */
@media (max-width: 380px) {
    .payment-methods { grid-template-columns: 1fr; }
    .order-form-container { padding: 1.25rem 0.85rem; }
    .step-title { font-size: 1.1rem; }
    .form-group input { padding: 0.95rem 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
    .order-section::before,
    .progress-step.active .progress-step-number,
    .live-strip::before,
    .urgency-note::before,
    .confirm-success-badge::before,
    .confirmation-icon { animation: none !important; }
    .form-step.active,
    .form-section { animation: none !important; }
}
