/* PixVPS — Order / configurator page */

#header-placeholder {
    flex-shrink: 0;
    height: var(--nav-height);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Hero ── */

.od-hero {
    padding: 2.5rem 0 2rem;
    background: linear-gradient(180deg, var(--hero-bg) 0%, var(--bg-color) 100%);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.od-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-glow);
    pointer-events: none;
}

.od-hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.od-crumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.od-crumb a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.od-crumb a:hover {
    color: var(--text-main);
}

.od-crumb-sep {
    opacity: 0.4;
}

.od-crumb-current {
    color: var(--text-main);
}

.od-hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.825rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    background: rgba(201, 81, 24, 0.1);
    border: 1px solid rgba(201, 81, 24, 0.22);
}

.od-hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

.od-hero h1 {
    font-size: clamp(1.65rem, 3.8vw, 2.15rem);
    line-height: 1.3;
    margin-bottom: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: none;
    max-width: 640px;
}

.od-hero-lead {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 1.25rem;
}

.od-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.od-hero-meta a {
    color: var(--text-main);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.od-hero-meta a:hover {
    color: var(--primary);
}

/* ── Step rail ── */

.od-steps {
    padding: 1.25rem 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--glass-border);
}

.od-steps-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.od-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.od-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.825rem;
    font-weight: 800;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    flex-shrink: 0;
}

.od-step--active .od-step-num {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 16px rgba(201, 81, 24, 0.35);
}

.od-step--active {
    color: var(--text-main);
}

.od-step-label {
    font-weight: 500;
}

@media (max-width: 768px) {
    .od-steps {
        padding: 1rem 0;
    }

    .od-steps-inner {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.35rem;
        padding: 0 12px;
    }

    .od-step {
        flex: none;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0.35rem;
        min-width: 0;
        text-align: center;
    }

    .od-step-label {
        display: block;
        font-size: 0.6875rem;
        line-height: 1.25;
        word-break: keep-all;
        overflow-wrap: anywhere;
    }

    .od-step-num {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
}

/* ── Configurator layout ── */

.od-config {
    padding: 2.5rem 0 4rem;
    background: var(--bg-color);
}

.od-config-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr minmax(280px, 360px);
    gap: 2rem;
    align-items: start;
}

@media (max-width: 960px) {
    .od-config-inner {
        grid-template-columns: 1fr;
    }
}

.od-form-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ── Config panels ── */

.od-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-highlight);
}

.od-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(245, 178, 92, 0.03);
}

.od-panel-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.od-panel-num {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    background: rgba(201, 81, 24, 0.15);
    color: var(--primary);
    border: 1px solid rgba(201, 81, 24, 0.25);
}

.od-panel-title {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: none;
    color: var(--text-main);
}

.od-panel-hint {
    font-size: 0.875rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.od-panel-body {
    padding: 1.25rem;
}

.od-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.od-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.6;
}

/* ── Duration segments ── */

.od-dur-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
}

@media (max-width: 720px) {
    .od-dur-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

.od-dur-opt {
    position: relative;
    cursor: pointer;
}

.od-dur-opt input:checked + .od-dur-face {
    border-color: var(--primary);
    background: rgba(201, 81, 24, 0.1);
    box-shadow: 0 0 0 1px var(--primary), 0 4px 20px rgba(201, 81, 24, 0.15);
}

.od-dur-face {
    position: relative;
    padding: 0.85rem 0.65rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg-light);
    text-align: center;
    transition: var(--transition-smooth);
}

.od-dur-face:has(.od-dur-badge) {
    padding-top: 1.55rem;
}

.od-dur-face:hover {
    border-color: var(--glass-border-strong);
}

.od-dur-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.od-dur-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.15rem;
}

.od-dur-equiv {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.od-dur-badge {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    left: auto;
    z-index: 1;
    display: block;
    max-width: calc(100% - 0.8rem);
    margin-left: auto;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-align: right;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.od-dur-badge--save {
    background: #2d6a1e;
    box-shadow: 0 2px 8px rgba(45, 106, 30, 0.25);
}

/* ── Region grid ── */

.od-region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.65rem;
    align-items: stretch;
}

.od-region-opt {
    cursor: pointer;
    display: flex;
    min-width: 0;
}

.od-region-opt input:checked + .od-region-face {
    border-color: var(--primary);
    background: rgba(201, 81, 24, 0.1);
    box-shadow: 0 0 0 1px var(--primary);
}

.od-region-face {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 6.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 0.65rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg-light);
    text-align: center;
    transition: var(--transition-smooth);
}

.od-region-face:hover {
    border-color: var(--glass-border-strong);
}

.od-region-check {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    display: none;
    align-items: center;
    justify-content: center;
}

.od-region-opt input:checked + .od-region-face .od-region-check {
    display: flex;
}

.od-region-flag {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.35rem;
}

.od-region-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.6em;
    line-height: 1.3;
    text-align: center;
    word-break: break-word;
}

.od-region-zone {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
    display: block;
    min-height: 1.25em;
    line-height: 1.25;
}

/* ── Storage options ── */

.od-addon-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.od-addon-opt {
    cursor: pointer;
}

.od-addon-opt input:checked + .od-addon-row {
    border-color: var(--primary);
    background: rgba(201, 81, 24, 0.08);
}

.od-addon-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg-light);
    transition: var(--transition-smooth);
}

.od-addon-row:hover {
    border-color: var(--glass-border-strong);
}

.od-addon-info {
    flex: 1;
    min-width: 0;
}

.od-addon-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.15rem;
}

.od-addon-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.od-addon-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
}

/* ── TB5 toggle ── */

.od-tb5-opt {
    display: block;
    margin-top: 0.75rem;
    cursor: pointer;
}

.od-tb5-opt input:checked + .od-tb5-face {
    border-color: var(--primary);
    background: rgba(201, 81, 24, 0.08);
}

.od-tb5-opt input:checked + .od-tb5-face .od-tb5-switch {
    background: var(--primary);
}

.od-tb5-opt input:checked + .od-tb5-face .od-tb5-switch::after {
    transform: translateX(18px);
}

.od-tb5-face {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg-light);
    transition: var(--transition-smooth);
}

.od-tb5-face:hover {
    border-color: var(--glass-border-strong);
}

.od-tb5-switch {
    width: 40px;
    height: 22px;
    border-radius: var(--radius-pill);
    background: var(--border);
    position: relative;
    flex-shrink: 0;
    transition: background 0.25s;
}

.od-tb5-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.25s var(--ease-out-expo);
}

.od-tb5-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: rgba(201, 81, 24, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.od-tb5-text {
    flex: 1;
    min-width: 0;
}

.od-tb5-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.od-tb5-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.od-tb5-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
}

/* ── Checkout sidebar ── */

.od-checkout {
    position: sticky;
    top: calc(var(--nav-height) + 1rem);
}

@media (max-width: 960px) {
    .od-checkout {
        position: static;
    }
}

.od-checkout-card {
    background: var(--glass-bg-elevated);
    border: 1px solid var(--glass-border-strong);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow), var(--glass-glow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.od-checkout-head {
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(201, 81, 24, 0.06);
}

.od-checkout-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.od-checkout-total {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1.1;
}

.od-checkout-body {
    padding: 1.25rem;
}

.od-lines {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.od-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.od-line-label {
    color: var(--text-muted);
}

.od-line-val {
    color: var(--text-main);
    font-weight: 500;
    text-align: right;
}

.od-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 1rem 0;
}

.od-pay-heading {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
}

.od-pay-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.od-pay-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    padding: 0.75rem;
}

.od-pay-empty {
    font-size: 0.9375rem;
    color: var(--text-muted);
    padding: 0.75rem;
    text-align: center;
}

.od-pay-option {
    cursor: pointer;
    display: block;
}

.od-pay-option input:checked + .od-pay-card {
    border-color: var(--primary);
    background: rgba(201, 81, 24, 0.08);
}

.od-pay-option input:checked + .od-pay-card .od-pay-radio {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: inset 0 0 0 3px var(--glass-bg-elevated);
}

.od-pay-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg-light);
    transition: var(--transition-smooth);
}

.od-pay-card:hover {
    border-color: var(--glass-border-strong);
}

.od-pay-logo {
    width: 40px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 3px 5px;
    border-radius: var(--radius-sm);
    background: rgba(255, 245, 235, 0.95);
    border: 1px solid rgba(245, 178, 92, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.od-pay-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.od-pay-meta {
    flex: 1;
    min-width: 0;
}

.od-pay-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-main);
}

.od-pay-currencies {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

.od-pay-radio {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--glass-border-strong);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.od-renewal {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: 0.55rem 0.65rem;
    border-radius: var(--radius-sm);
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
}

.od-renewal--once {
    border-color: rgba(245, 178, 92, 0.25);
    background: rgba(245, 178, 92, 0.05);
}

.od-btn-checkout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.25rem;
    border: none;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(201, 81, 24, 0.35);
}

.od-btn-checkout:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(201, 81, 24, 0.45);
}

.od-btn-checkout:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.od-trust-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.od-trust-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.od-trust-item svg {
    color: #5a9e3a;
    flex-shrink: 0;
}

/* ── Included specs ── */

.od-included {
    padding: 3.5rem 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--glass-border);
}

.od-included-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.od-included h2 {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

.od-included-sub {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.od-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 800px) {
    .od-spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.od-spec-card {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    text-align: center;
}

.od-spec-val {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.35rem;
    text-transform: none;
    letter-spacing: 0;
}

.od-spec-key {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ── Delivery timeline ── */

.od-timeline {
    padding: 3.5rem 0 5rem;
    background: var(--bg-color);
}

.od-timeline-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.od-timeline h2 {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

.od-timeline-sub {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.od-timeline-track {
    position: relative;
    padding-left: 2rem;
}

.od-timeline-track::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--glass-border);
}

.od-tl-item {
    position: relative;
    padding-bottom: 2rem;
}

.od-tl-item:last-child {
    padding-bottom: 0;
}

.od-tl-dot {
    position: absolute;
    left: -2rem;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--bg-color);
    box-shadow: 0 0 0 2px var(--primary);
}

.od-tl-item h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.35rem;
    text-transform: none;
    letter-spacing: 0;
}

.od-tl-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.od-timeline-links {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.od-timeline-links a {
    color: var(--text-main);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.od-timeline-links a:hover {
    color: var(--primary);
}

/* ── Modals ── */

.od-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.od-modal {
    width: 100%;
    max-width: 400px;
    background: var(--glass-bg-elevated);
    border: 1px solid var(--glass-border-strong);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.od-modal--wide {
    max-width: 440px;
}

.od-modal-hero {
    padding: 2rem 1.5rem 1.25rem;
    text-align: center;
    background: rgba(201, 81, 24, 0.08);
    border-bottom: 1px solid var(--glass-border);
}

.od-modal-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(90, 158, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a9e3a;
}

.od-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.od-modal-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.od-modal-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.od-modal-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-sm);
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.od-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
}

.od-modal-btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.od-modal-btn--primary:hover {
    opacity: 0.92;
}

.od-modal-foot {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.od-modal-foot a {
    color: var(--text-main);
}

.od-modal-head {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--glass-border);
}

.od-modal-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.od-modal-head-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.0625rem;
}

.od-modal-close {
    width: 28px;
    height: 28px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.od-modal-banner {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(201, 81, 24, 0.1);
    border: 1px solid rgba(201, 81, 24, 0.2);
}

.od-modal-banner-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.od-modal-banner-body {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.od-section-label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.od-progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.od-progress-step {
    flex: 1;
    text-align: center;
}

.od-progress-dot {
    width: 32px;
    height: 32px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.od-progress-step--done .od-progress-dot {
    border-color: #5a9e3a;
    background: rgba(90, 158, 58, 0.12);
}

.od-progress-step--active .od-progress-dot {
    border-color: var(--primary);
    background: rgba(201, 81, 24, 0.12);
}

.od-progress-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.od-progress-step--done .od-progress-label,
.od-progress-step--active .od-progress-label {
    color: var(--text-main);
}

.od-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.od-feature-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.5rem 0.65rem;
    border-radius: var(--radius-sm);
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
}

.od-feature-icon {
    width: 26px;
    height: 26px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.od-login-hint {
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.od-login-hint button {
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    text-decoration: underline;
    font-size: inherit;
}

.od-ssl-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* ── Spinner ── */

.od-spin {
    animation: od-spin 1s linear infinite;
}

@keyframes od-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── Shared buttons (match pricing page) ── */

.btn-ribbon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(201, 81, 24, 0.3);
}

.btn-ribbon:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(201, 81, 24, 0.4);
}
