/* Kosmonel onboarding & pricing, extends dashboard-theme.css */

.ob-page {
  min-height: 100vh;
  position: relative;
}

.ob-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 10% -5%, rgba(37, 99, 235, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 45% at 95% 10%, rgba(79, 70, 229, 0.1), transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(37, 99, 235, 0.06), transparent 60%);
}

.ob-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 85%);
}

.ob-page > .ob-main-wrap {
  position: relative;
  z-index: 1;
}

.ob-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1280px;
  margin: 1.25rem auto 0;
  padding: 0.9rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.ob-nav .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ob-nav img {
  height: 34px;
  width: auto;
}

.ob-nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ob-nav-links a:not(.ob-btn) {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
  transition: color 0.15s, background 0.15s;
}

.ob-nav-links a:not(.ob-btn):hover {
  color: var(--brand-strong);
  background: var(--brand-soft);
}

/* --- Progress stepper --- */
.ob-progress-wrap {
  max-width: 900px;
  margin: 1.75rem auto 0;
  padding: 0 1.25rem;
}

.ob-progress {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  gap: 0.25rem;
}

.ob-progress::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.ob-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.ob-step-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  line-height: 1.3;
  max-width: 5.5rem;
}

.ob-step.active .ob-step-label {
  color: var(--brand-strong);
}

.ob-step.done .ob-step-label {
  color: var(--success);
}

.ob-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.ob-step.active .ob-step-dot {
  border-color: var(--brand);
  background: linear-gradient(145deg, var(--brand-soft), #fff);
  color: var(--brand-strong);
  transform: scale(1.05);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.ob-step.done .ob-step-dot {
  border-color: var(--success);
  background: rgba(220, 253, 232, 0.9);
  color: var(--success);
}

/* --- Shell layout --- */
.ob-shell {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  align-items: start;
}

.ob-shell--wide {
  grid-template-columns: 1fr;
  max-width: 1100px;
}

.ob-shell--wide .ob-hero-panel,
.ob-shell--center .ob-hero-panel {
  display: none;
}

.ob-shell--narrow {
  grid-template-columns: minmax(280px, 300px) minmax(0, 520px);
  max-width: 920px;
  justify-content: center;
}

.ob-shell--center {
  grid-template-columns: 1fr;
  max-width: 580px;
}

.ob-hero-panel {
  position: sticky;
  top: 1.5rem;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(239, 246, 255, 0.95) 55%,
    rgba(238, 242, 255, 0.9) 100%
  );
  border: 1px solid rgba(147, 197, 253, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 50px rgba(37, 99, 235, 0.1);
}

.ob-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.ob-hero-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

.ob-hero-panel p {
  margin: 0 0 1.5rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.95rem;
}

.ob-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.ob-hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.ob-hero-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 6px;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232563eb'%3E%3Cpath fill-rule='evenodd' d='M16.704 5.29a1 1 0 010 1.42l-7.25 7.25a1 1 0 01-1.42 0l-3.25-3.25a1 1 0 111.42-1.42l2.54 2.54 6.54-6.54a1 1 0 011.42 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.ob-hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.ob-hero-metric {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(229, 231, 235, 0.95);
}

.ob-hero-metric strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-strong);
  letter-spacing: -0.02em;
}

.ob-hero-metric span {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 600;
}

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

.ob-main > .flash {
  margin-bottom: 1.25rem;
}

/* --- Cards --- */
.ob-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 24px;
  padding: 2rem 2.25rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 60px rgba(15, 23, 42, 0.07);
}

.ob-card-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.ob-card-header h1 {
  margin: 0 0 0.5rem;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.ob-card-header .ob-lead {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.98rem;
}

.ob-section {
  margin-bottom: 1.75rem;
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
  border: 1px solid var(--border);
}

.ob-section-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-strong);
}

.ob-section-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 1rem;
}

.ob-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.15rem;
}

.ob-field {
  margin-bottom: 0;
}

.ob-field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--text-secondary);
}

.ob-field input,
.ob-field select,
.ob-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.ob-field input:focus,
.ob-field select:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.ob-hint {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

.ob-hint-box {
  display: flex;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--brand-soft);
  border: 1px solid rgba(37, 99, 235, 0.15);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

/* --- Buttons --- */
.ob-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 14px;
  border: none;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
}

.ob-btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-accent) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
}

.ob-btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

.ob-btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.ob-btn-ghost {
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.22);
  color: var(--brand-strong);
}

.ob-btn-ghost:hover {
  background: var(--brand-soft);
  transform: translateY(-1px);
}

.ob-btn-block {
  width: 100%;
}

.ob-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.ob-actions--stack {
  flex-direction: column;
}

/* --- OTP --- */
.ob-otp-wrap {
  text-align: center;
}

.ob-email-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.ob-timer-ring {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: conic-gradient(var(--brand) 0deg, var(--brand-soft) 0deg);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.ob-timer-ring::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
}

.ob-timer {
  position: relative;
  z-index: 1;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-strong);
  letter-spacing: 0.05em;
}

.ob-otp-input {
  letter-spacing: 0.55em;
  text-align: center;
  font-size: 1.65rem;
  font-weight: 800;
  padding: 1.1rem !important;
}

/* --- Plans --- */
.ob-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.ob-plan-card {
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 1.35rem 1.25rem 1.5rem;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.ob-plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.1);
}

.ob-plan-card.selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), 0 16px 40px rgba(37, 99, 235, 0.12);
}

.ob-plan-card.recommended::before {
  content: "Recommended";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-accent));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.ob-plan-card h2 {
  margin: 0.25rem 0 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.ob-plan-card .ob-plan-profile {
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.8rem;
  margin: 0.35rem 0 0.5rem;
}

.ob-plan-card .ob-plan-meta {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
}

.ob-plan-price {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0.25rem 0 0.5rem;
  color: var(--text);
  letter-spacing: -0.03em;
}

.ob-plan-price span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.ob-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.ob-plan-features li {
  padding: 0.25rem 0 0.25rem 1.1rem;
  position: relative;
}

.ob-plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-strong);
  font-weight: 800;
  font-size: 0.7rem;
}

.ob-plan-card--static {
  cursor: default;
}

.ob-plan-card--static:hover {
  transform: none;
  box-shadow: none;
}

.ob-plan-select-dot {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  transition: border-color 0.2s, background 0.2s;
}

.ob-plan-card.selected .ob-plan-select-dot {
  border-color: var(--brand);
  background: var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.704 5.29a1 1 0 010 1.42l-7.25 7.25a1 1 0 01-1.42 0l-3.25-3.25a1 1 0 111.42-1.42l2.54 2.54 6.54-6.54a1 1 0 011.42 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* --- Review --- */
.ob-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.ob-review-section {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(180deg, #fafbfc, #fff);
  height: 100%;
}

.ob-review-section h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-strong);
  font-weight: 800;
}

.ob-review-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  font-size: 0.88rem;
}

.ob-review-row span:first-child {
  color: var(--text-secondary);
  font-weight: 600;
}

.ob-review-row span:last-child {
  font-weight: 700;
  text-align: right;
  color: var(--text);
}

.ob-review-row:last-child {
  border-bottom: none;
}

.ob-review-total-card {
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-soft), #fff);
  border: 1px solid rgba(37, 99, 235, 0.2);
  margin-bottom: 0.5rem;
}

.ob-review-total-card .ob-review-row {
  border: none;
  padding: 0.35rem 0;
}

.ob-review-total {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: var(--brand-strong) !important;
  padding-top: 0.75rem !important;
  margin-top: 0.5rem;
  border-top: 2px solid rgba(37, 99, 235, 0.15) !important;
}

/* --- Payment / status --- */
.ob-status-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.ob-status-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
}

.ob-status-icon--pay {
  background: linear-gradient(145deg, var(--brand-soft), #fff);
  border: 2px solid rgba(37, 99, 235, 0.25);
  color: var(--brand-strong);
}

.ob-status-icon--success {
  background: rgba(220, 253, 232, 0.9);
  border: 2px solid rgba(22, 163, 74, 0.3);
  color: var(--success);
}

.ob-status-icon--error {
  background: rgba(254, 226, 226, 0.9);
  border: 2px solid rgba(239, 68, 68, 0.25);
  color: var(--danger);
}

.ob-order-summary {
  text-align: left;
  margin: 1.5rem 0;
  padding: 1.25rem;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
}

.ob-order-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

.ob-order-row.total {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 2px solid var(--border);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand-strong);
}

.ob-trust-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.ob-duplicate-box {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(254, 226, 226, 0.4), #fff);
}

/* --- Pricing page --- */
.pricing-v2-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.25rem 4rem;
}

.pricing-v2-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2.5rem 1.5rem;
  border-radius: 28px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.95),
    rgba(239, 246, 255, 0.9)
  );
  border: 1px solid rgba(147, 197, 253, 0.35);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.08);
}

.pricing-v2-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
  color: var(--text);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-v2-hero p {
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 1.75rem;
  line-height: 1.75;
  font-size: 1.02rem;
}

.pricing-v2-eyebrow {
  display: inline-block;
  color: var(--brand-strong);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--brand-soft);
}

.pricing-v2-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing-v2-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-strong);
}

.pricing-v2-stat span {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pricing-v2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.pricing-v2-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.85rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-v2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.1);
}

.pricing-v2-card.featured {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.15),
    0 24px 56px rgba(37, 99, 235, 0.14);
}

.pricing-v2-card h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
}

.pricing-v2-profile {
  font-size: 0.85rem;
  color: var(--brand-strong);
  font-weight: 700;
  margin: 0.5rem 0 1.25rem;
}

.pricing-v2-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1;
}

.pricing-v2-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.pricing-v2-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232563eb'%3E%3Cpath fill-rule='evenodd' d='M16.704 5.29a1 1 0 010 1.42l-7.25 7.25a1 1 0 01-1.42 0l-3.25-3.25a1 1 0 111.42-1.42l2.54 2.54 6.54-6.54a1 1 0 011.42 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.pricing-v2-addon {
  margin-top: 2.5rem;
  text-align: center;
  padding: 1.5rem 2rem;
  border: 1px dashed rgba(37, 99, 235, 0.3);
  border-radius: 20px;
  color: var(--text-secondary);
  background: linear-gradient(180deg, var(--brand-soft), #fff);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .ob-shell,
  .ob-shell--narrow {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ob-hero-panel {
    position: static;
  }

  .ob-progress::before {
    display: none;
  }

  .ob-step-label {
    font-size: 0.65rem;
    max-width: 4rem;
  }

  .ob-card {
    padding: 1.5rem 1.35rem;
  }
}

@media (max-width: 640px) {
  .ob-grid-2 {
    grid-template-columns: 1fr;
  }

  .ob-nav {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .ob-actions {
    flex-direction: column;
  }

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