/* ZovCloud — Order / configurator page */

:root {
    --or-dark:      #0f1117;
    --or-dark-2:    #1d1d1f;
    --or-surface:   #f7f8fa;
    --or-border:    #e8eaed;
    --or-muted:     #86868b;
    --or-accent:    var(--color-primary);
    --or-accent-hv: var(--color-primary-dk);
    --or-accent-lt: var(--color-primary-lt);
    --or-green:     #16a34a;
    --or-amber:     #d97706;
}

.or-page { background: var(--or-surface); }

/* ============================================================
   Hero
   ============================================================ */
.or-hero {
    background: var(--or-dark);
    color: #fff;
    padding: calc(var(--nav-height) + 40px) 0 56px;
    position: relative;
    overflow: hidden;
}
.or-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 85% 20%, rgba(255,163,102,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,163,102,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.or-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.or-crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
}
.or-crumb a { color: rgba(255,255,255,0.65); transition: color 0.15s; }
.or-crumb a:hover { color: #fff; }
.or-crumb-sep { opacity: 0.35; }
.or-crumb [aria-current="page"] { color: rgba(255,255,255,0.9); }

.or-hero-grid {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 340px);
    gap: clamp(32px, 5vw, 64px);
    align-items: end;
}
@media (max-width: 900px) {
    .or-hero-grid { grid-template-columns: 1fr; }
}

.or-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.12;
    margin-bottom: 16px;
    max-width: 560px;
}
.or-hero h1 em {
    font-style: normal;
    color: var(--or-accent);
}
.or-hero-lead {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255,255,255,0.62);
    font-weight: 300;
    line-height: 1.65;
    max-width: 520px;
}

.or-spec-board {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    backdrop-filter: blur(8px);
}
.or-spec-board-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 14px;
}
.or-spec-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.or-spec-metric {
    padding: 10px 12px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
}
.or-spec-metric-val {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}
.or-spec-metric-key {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}

/* ============================================================
   Metrics strip
   ============================================================ */
.or-metrics {
    background: #fff;
    border-bottom: 1px solid var(--or-border);
}
.or-metrics-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
@media (max-width: 768px) {
    .or-metrics-inner { grid-template-columns: repeat(2, 1fr); }
}
.or-metric-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 16px;
    border-right: 1px solid var(--or-border);
}
.or-metric-item:last-child { border-right: none; }
@media (max-width: 768px) {
    .or-metric-item:nth-child(2) { border-right: none; }
    .or-metric-item { border-bottom: 1px solid var(--or-border); }
    .or-metric-item:nth-last-child(-n+2) { border-bottom: none; }
}
.or-metric-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--or-accent-lt);
    color: var(--or-accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.or-metric-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
}
.or-metric-text span {
    font-size: 12px;
    color: var(--or-muted);
}

/* ============================================================
   Workspace layout
   ============================================================ */
.or-workspace {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 24px 80px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 32px;
    align-items: start;
}
@media (max-width: 1024px) {
    .or-workspace { grid-template-columns: 1fr; }
}

/* ============================================================
   Config panels
   ============================================================ */
.or-form-col { display: flex; flex-direction: column; gap: 20px; }

.or-panel {
    background: #fff;
    border: 1px solid var(--or-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.or-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--or-border);
    background: #fff;
}
.or-panel-step {
    display: flex;
    align-items: center;
    gap: 12px;
}
.or-panel-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--or-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.or-panel-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}
.or-panel-hint {
    font-size: 12px;
    color: var(--or-muted);
    font-weight: 500;
}
.or-panel-body { padding: 22px; }

.or-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--or-muted);
    line-height: 1.5;
}
.or-note svg { flex-shrink: 0; margin-top: 2px; }

/* Region grid */
.or-loc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
@media (max-width: 640px) {
    .or-loc-grid { grid-template-columns: repeat(2, 1fr); }
}
.or-loc-card { cursor: pointer; }
.or-loc-card input:checked + .or-loc-face {
    border-color: var(--or-accent);
    background: var(--or-accent-lt);
    box-shadow: 0 0 0 1px var(--or-accent);
}
.or-loc-face {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 16px 10px;
    border: 1.5px solid var(--or-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    min-height: 100px;
}
.or-loc-face:hover { border-color: #d1d5db; }
.or-loc-check {
    position: absolute;
    top: 8px; right: 8px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--or-accent);
    display: none;
    align-items: center; justify-content: center;
}
.or-loc-card input:checked + .or-loc-face .or-loc-check { display: flex; }
.or-loc-flag { font-size: 1.5rem; line-height: 1; }
.or-loc-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}
.or-loc-zone {
    font-size: 11px;
    color: var(--or-muted);
    font-weight: 500;
}

/* Billing segments */
.or-bill-segments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
@media (max-width: 640px) {
    .or-bill-segments { grid-template-columns: repeat(2, 1fr); }
}
.or-bill-seg { cursor: pointer; position: relative; }
.or-bill-seg input:checked + .or-bill-face {
    border-color: var(--or-accent);
    background: var(--or-accent-lt);
    box-shadow: 0 0 0 1px var(--or-accent);
}
.or-bill-face {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 8px;
    border: 1.5px solid var(--or-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.or-bill-face:hover { border-color: #d1d5db; }
.or-bill-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}
.or-bill-price {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-text);
}
.or-bill-equiv {
    font-size: 11px;
    color: var(--or-muted);
    margin-top: 4px;
    line-height: 1.3;
}
.or-bill-badge {
    position: absolute;
    top: -8px; left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--or-accent);
    color: #fff;
    white-space: nowrap;
    z-index: 1;
}
.or-bill-badge--save { background: var(--or-dark-2); }

/* Storage options */
.or-storage-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.or-storage-opt { cursor: pointer; }
.or-storage-opt input:checked + .or-storage-row {
    border-color: var(--or-accent);
    background: var(--or-accent-lt);
}
.or-storage-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1.5px solid var(--or-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.or-storage-row:hover { border-color: #d1d5db; }
.or-storage-info { flex: 1; min-width: 0; }
.or-storage-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}
.or-storage-desc {
    font-size: 12px;
    color: var(--or-muted);
    margin-top: 2px;
    line-height: 1.4;
}
.or-storage-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
}

/* TB5 toggle row */
.or-cluster-row { cursor: pointer; display: block; }
.or-cluster-row input:checked + .or-cluster-face {
    border-color: var(--or-accent);
    background: var(--or-accent-lt);
}
.or-cluster-row input:checked + .or-cluster-face .or-cluster-switch {
    background: var(--or-accent);
}
.or-cluster-row input:checked + .or-cluster-face .or-cluster-switch::after {
    transform: translateX(18px);
}
.or-cluster-face {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1.5px solid var(--or-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.or-cluster-face:hover { border-color: #d1d5db; }
.or-cluster-switch {
    width: 40px; height: 22px;
    border-radius: 999px;
    background: #d1d5db;
    position: relative;
    flex-shrink: 0;
    transition: background 0.2s;
}
.or-cluster-switch::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}
.or-cluster-icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid var(--or-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--or-accent);
    flex-shrink: 0;
}
.or-cluster-text { flex: 1; min-width: 0; }
.or-cluster-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}
.or-cluster-desc {
    font-size: 12px;
    color: var(--or-muted);
    margin-top: 2px;
    line-height: 1.4;
}
.or-cluster-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
}

/* ============================================================
   Receipt / checkout sidebar
   ============================================================ */
.or-receipt { position: sticky; top: calc(var(--nav-height) + 20px); }
@media (max-width: 1024px) {
    .or-receipt { position: static; order: -1; }
}

.or-receipt-card {
    background: #fff;
    border: 1px solid var(--or-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.or-receipt-header {
    background: var(--or-dark);
    color: #fff;
    padding: 24px 22px;
    text-align: center;
}
.or-receipt-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
}
.or-receipt-total {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}
.or-receipt-body { padding: 22px; }

.or-lines { display: flex; flex-direction: column; gap: 10px; }
.or-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 13px;
}
.or-line-label { color: var(--or-muted); }
.or-line-val {
    font-weight: 600;
    color: var(--color-text);
    text-align: right;
}

.or-divider {
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--or-border) 0, var(--or-border) 6px, transparent 6px, transparent 12px);
    margin: 18px 0;
}

.or-pay-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--or-muted);
    margin-bottom: 12px;
}
.or-pay-list { display: flex; flex-direction: column; gap: 8px; }
.or-pay-loading,
.or-pay-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    font-size: 13px;
    color: var(--or-muted);
    background: var(--or-surface);
    border-radius: var(--radius-md);
}
.or-pay-option { cursor: pointer; display: block; }
.or-pay-option input:checked + .or-pay-card {
    border-color: var(--or-accent);
    background: var(--or-accent-lt);
}
.or-pay-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1.5px solid var(--or-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.or-pay-card:hover { border-color: #d1d5db; }
.or-pay-logo {
    width: 40px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.or-pay-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.or-pay-meta { flex: 1; min-width: 0; }
.or-pay-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}
.or-pay-currencies {
    font-size: 11px;
    color: var(--or-muted);
    margin-top: 1px;
}
.or-pay-radio {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    flex-shrink: 0;
    position: relative;
}
.or-pay-option input:checked + .or-pay-card .or-pay-radio {
    border-color: var(--or-accent);
    background: var(--or-accent);
}
.or-pay-option input:checked + .or-pay-card .or-pay-radio::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fff;
}

.or-renewal {
    font-size: 12px;
    color: var(--or-muted);
    line-height: 1.5;
    margin: 14px 0;
    padding: 10px 12px;
    background: var(--or-surface);
    border-radius: var(--radius-sm);
}
.or-renewal--once {
    background: #fff7ed;
    color: #c2410c;
}

.or-btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--or-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(255,163,102,0.2);
}
.or-btn-checkout:hover:not(:disabled) {
    background: var(--or-accent-hv);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,163,102,0.28);
}
.or-btn-checkout:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.or-trust-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--or-border);
}
.or-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--or-muted);
}
.or-trust-item svg { color: var(--or-green); flex-shrink: 0; }

/* ============================================================
   Assurance section
   ============================================================ */
.or-assure {
    background: #fff;
    border-top: 1px solid var(--or-border);
    padding: 64px 0;
}
.or-assure-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.or-assure-head {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 40px;
}
.or-assure-head h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.or-assure-head p {
    font-size: 15px;
    color: var(--or-muted);
    line-height: 1.6;
}
.or-assure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 640px) {
    .or-assure-grid { grid-template-columns: 1fr; }
}
.or-assure-card {
    padding: 24px;
    background: var(--or-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--or-border);
}
.or-assure-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}
.or-assure-card p {
    font-size: 14px;
    color: var(--or-muted);
    line-height: 1.65;
}
.or-assure-card a {
    color: var(--or-accent);
    font-weight: 600;
}
.or-assure-card a:hover { text-decoration: underline; }

/* ============================================================
   Modals
   ============================================================ */
.or-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(4px);
}
.or-modal {
    background: #fff;
    border-radius: var(--radius-xl);
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.or-modal--wide { max-width: 440px; }
.or-modal-hero {
    background: linear-gradient(160deg, var(--or-dark) 0%, #1a2234 100%);
    color: #fff;
    text-align: center;
    padding: 36px 28px 28px;
}
.or-modal-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,163,102,0.15);
    color: var(--or-accent);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.or-modal-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.or-modal-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
}
.or-modal-body { padding: 24px 28px 28px; }
.or-modal-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: var(--or-surface);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--or-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}
.or-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--transition);
}
.or-modal-btn--primary {
    background: var(--or-accent);
    color: #fff;
}
.or-modal-btn--primary:hover { background: var(--or-accent-hv); }
.or-modal-foot {
    text-align: center;
    font-size: 13px;
    color: var(--or-muted);
    margin-top: 14px;
}
.or-modal-foot a { color: var(--or-accent); font-weight: 600; }

.or-modal-head { padding: 20px 22px 0; }
.or-modal-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.or-modal-head-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
}
.or-modal-close {
    width: 28px; height: 28px;
    border: none;
    background: var(--or-surface);
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--or-muted);
    transition: var(--transition);
}
.or-modal-close:hover { background: #e8eaed; color: var(--color-text); }
.or-modal-banner {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-md);
    padding: 14px 16px;
}
.or-modal-banner-title {
    font-size: 14px;
    font-weight: 700;
    color: #15803d;
    margin-bottom: 4px;
}
.or-modal-banner-body {
    font-size: 13px;
    color: #166534;
}

.or-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--or-muted);
    margin-bottom: 12px;
}
.or-progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
}
.or-progress-steps::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--or-border);
    z-index: 0;
}
.or-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    flex: 1;
}
.or-progress-dot {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--or-border);
    display: flex; align-items: center; justify-content: center;
}
.or-progress-step--done .or-progress-dot { border-color: var(--or-green); background: #f0fdf4; }
.or-progress-step--active .or-progress-dot { border-color: var(--or-amber); background: #fffbeb; }
.or-progress-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--or-muted);
    text-align: center;
}
.or-progress-step--done .or-progress-label { color: var(--or-green); }
.or-progress-step--active .or-progress-label { color: var(--or-amber); }

.or-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.or-feature-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text);
    padding: 10px 12px;
    background: var(--or-surface);
    border-radius: var(--radius-sm);
}
.or-feature-icon {
    width: 28px; height: 28px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.or-login-hint {
    text-align: center;
    font-size: 13px;
    color: var(--or-muted);
    margin-top: 12px;
}
.or-login-hint button {
    background: none;
    border: none;
    color: var(--or-accent);
    font-weight: 600;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
}
.or-login-hint button:hover { text-decoration: underline; }
.or-ssl-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: var(--or-muted);
    margin-top: 14px;
}

/* Spinner */
@keyframes or-spin { to { transform: rotate(360deg); } }
.or-spin { animation: or-spin 1s linear infinite; }
