/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 22px;
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  font-family: var(--font-family);
  line-height: 1;
  letter-spacing: -0.2px;
  transition: all 0.15s ease;
  min-height: 52px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  user-select: none;
}
.btn:active { transform: scale(0.97); opacity: 0.85; }

.btn-primary  { background: var(--color-primary); color: var(--white); }
.btn-primary:hover { background: var(--color-primary-dark); }

.btn-secondary { background: var(--gray-100); color: var(--color-text); }
.btn-secondary:hover { background: var(--gray-200); }

.btn-outline   { background: transparent; color: var(--color-primary); border: 1.5px solid var(--color-primary); }
.btn-ghost     { background: transparent; color: var(--color-text); }
.btn-ghost:hover { background: var(--gray-100); }

.btn-white     { background: rgba(255,255,255,0.95); color: var(--color-primary); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-white:hover { background: rgba(255,255,255,1); }

.btn-danger    { background: var(--color-danger); color: var(--white); }
.btn-success   { background: var(--color-success); color: var(--white); }

.btn-lg   { padding: 16px 28px; font-size: var(--text-lg); min-height: 56px; }
.btn-sm   { padding: 8px 16px; font-size: var(--text-sm); min-height: 38px; border-radius: var(--radius-md); }
.btn-xs   { padding: 6px 12px; font-size: var(--text-xs); min-height: 30px; border-radius: var(--radius-md); }

.btn-icon    { width: 44px; height: 44px; min-height: 44px; padding: 0; border-radius: var(--radius-full); display: inline-flex; align-items: center; justify-content: center; }
.btn-icon-lg { width: 52px; height: 52px; min-height: 52px; }

.btn svg, .btn-icon svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg svg { width: 20px; height: 20px; }

/* ==============================
   INPUTS
   ============================== */
.form-group  { display: flex; flex-direction: column; gap: var(--space-2); }
.form-label  { font-size: var(--text-sm); font-weight: var(--font-semibold); color: var(--color-text); letter-spacing: -0.1px; }
.form-hint   { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: 2px; }

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--gray-100);
  transition: outline 0.15s, background 0.15s;
  min-height: 52px;
  outline: 2px solid transparent;
}
.form-input:focus {
  outline: 2px solid var(--color-primary);
  background: var(--color-surface);
}
.form-input::placeholder { color: var(--color-text-muted); }

.input-with-icon         { position: relative; }
.input-with-icon .form-input { padding-left: 44px; }
.input-with-icon .input-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--color-text-muted); display: flex; align-items: center;
}
.input-with-icon .input-icon svg { width: 18px; height: 18px; }

.form-select {
  appearance: none;
  width: 100%;
  padding: 12px 40px 12px 14px;
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--gray-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center;
  cursor: pointer;
  min-height: 52px;
  outline: 2px solid transparent;
}
.form-select:focus { outline: 2px solid var(--color-primary); background-color: var(--color-surface); }

.otp-group { display: flex; gap: var(--space-2); }
.otp-input {
  flex: 1; padding: 16px 8px; border: none;
  border-radius: var(--radius-md); font-size: var(--text-2xl); font-weight: var(--font-bold);
  text-align: center; color: var(--color-text); background: var(--gray-100); min-height: 64px;
  outline: 2px solid transparent; transition: outline 0.15s, background 0.15s;
}
.otp-input:focus { outline: 2px solid var(--color-primary); background: var(--color-surface); }

/* ==============================
   SCREEN HEADER
   ============================== */
.screen-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 0.5px solid rgba(60, 60, 67, 0.12);
  min-height: var(--header-height);
  flex-shrink: 0;
}
.screen-header.transparent { background: transparent; border-bottom: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
.screen-header.white-bg    { background: var(--white); }

.header-back {
  width: 36px; height: 36px; border-radius: var(--radius-full);
  background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; cursor: pointer; border: none;
  transition: background 0.15s;
}
.header-back:active { background: var(--gray-200); }
.header-back svg { width: 18px; height: 18px; color: var(--gray-700); }

.header-title  { font-size: var(--text-lg); font-weight: var(--font-semibold); color: var(--color-text); flex: 1; letter-spacing: -0.3px; }
.header-action { font-size: var(--text-sm); color: var(--color-primary); font-weight: var(--font-medium); cursor: pointer; }

/* ==============================
   CARDS
   ============================== */
.card          { background: var(--white); border-radius: var(--radius-lg); padding: var(--space-4); border: none; box-shadow: var(--shadow-sm); }
.card-elevated { background: var(--white); border-radius: var(--radius-lg); padding: var(--space-4); box-shadow: var(--shadow-md); }

/* ==============================
   PRO CARD
   ============================== */
.pro-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: var(--space-4); border: none; box-shadow: var(--shadow-sm);
  cursor: pointer; transition: all 0.15s ease;
}
.pro-card:active { transform: scale(0.985); box-shadow: var(--shadow-md); }

.pro-card-header { display: flex; gap: var(--space-3); align-items: flex-start; }

.pro-avatar {
  width: 52px; height: 52px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: var(--font-bold); color: var(--white);
  flex-shrink: 0; letter-spacing: -1px;
  background: linear-gradient(135deg, #007AFF, #0A84FF);
}
.pro-avatar.lg { width: 72px; height: 72px; font-size: 24px; }

.pro-card-info    { flex: 1; min-width: 0; }
.pro-name         { font-size: var(--text-base); font-weight: var(--font-semibold); color: var(--color-text); letter-spacing: -0.2px; }
.pro-business     { font-size: var(--text-sm); color: var(--color-text-secondary); margin-top: 1px; }

.pro-rating       { display: flex; align-items: center; gap: 4px; margin-top: 4px; }
.pro-rating .star { color: var(--amber-400); font-size: 13px; }
.pro-rating .score{ font-size: var(--text-sm); font-weight: var(--font-semibold); color: var(--color-text); }
.pro-rating .count{ font-size: var(--text-sm); color: var(--color-text-secondary); }

.pro-card-tags    { display: flex; flex-wrap: wrap; gap: var(--space-1); margin-top: var(--space-3); }

.pro-card-footer  {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: var(--space-3); padding-top: var(--space-3);
  border-top: 1px solid var(--gray-100);
}

.pro-price-label  { font-size: var(--text-sm); color: var(--color-text-secondary); }
.pro-price        { font-size: var(--text-base); font-weight: var(--font-bold); color: var(--color-text); }

/* ==============================
   CATEGORY GRID
   ============================== */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.category-grid-4 { grid-template-columns: repeat(4, 1fr); gap: var(--space-2); }

.category-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px var(--space-2) 12px;
  background: var(--white); border-radius: var(--radius-lg);
  border: none; box-shadow: var(--shadow-sm); cursor: pointer;
  transition: all 0.15s ease; text-align: center;
}
.category-card:active  { transform: scale(0.93); background: var(--color-primary-light); }
.category-card.selected{ background: var(--color-primary-light); box-shadow: 0 0 0 2px var(--color-primary), var(--shadow-sm); }

.category-icon  { font-size: 26px; line-height: 1; }
.category-label { font-size: 11px; font-weight: var(--font-medium); color: var(--color-text); line-height: 1.25; }

/* ==============================
   CHIPS / FILTERS
   ============================== */
.chip-row {
  display: flex; gap: var(--space-2); overflow-x: auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding-bottom: 2px;
}
.chip-row::-webkit-scrollbar { display: none; }

.chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: var(--font-medium);
  white-space: nowrap; cursor: pointer;
  border: none; box-shadow: var(--shadow-sm);
  background: var(--white); color: var(--color-text);
  transition: all 0.12s;
}
.chip:active, .chip.active { background: var(--color-primary); color: var(--white); box-shadow: none; }
.chip svg { width: 14px; height: 14px; }

/* ==============================
   BADGES
   ============================== */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: var(--font-semibold); letter-spacing: 0.1px;
}
.badge-available   { background: rgba(52, 199, 89, 0.12); color: #34C759; }
.badge-unavailable { background: var(--gray-100); color: var(--color-text-secondary); }
.badge-insured     { background: rgba(0, 122, 255, 0.12); color: var(--color-primary); }
.badge-licensed    { background: rgba(255, 159, 10, 0.12); color: #C2410C; }
.badge-primary     { background: var(--color-primary-light); color: var(--color-primary); }
.badge-success     { background: rgba(52, 199, 89, 0.12); color: #34C759; }
.badge-dot { width: 6px; height: 6px; border-radius: var(--radius-full); background: currentColor; display: inline-block; }

/* ==============================
   SEARCH BAR
   ============================== */
.search-bar {
  display: flex; align-items: center; gap: var(--space-3);
  background: var(--white); border: none;
  border-radius: var(--radius-xl); padding: 13px 14px;
  box-shadow: var(--shadow-sm); cursor: text; min-height: 52px;
}
.search-bar svg             { width: 20px; height: 20px; color: var(--color-text-muted); flex-shrink: 0; }
.search-bar-text            { flex: 1; font-size: var(--text-base); color: var(--color-text-muted); }
.search-bar-mic             { width: 32px; height: 32px; border-radius: var(--radius-full); background: var(--color-primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.search-bar-mic svg         { width: 16px; height: 16px; color: var(--color-primary); }

/* ==============================
   BOTTOM NAV
   ============================== */
#bottom-nav {
  display: flex;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 0.5px solid rgba(60, 60, 67, 0.15);
  height: calc(var(--nav-height) + env(safe-area-inset-bottom));
  padding: 0 8px calc(4px + env(safe-area-inset-bottom));
  flex-shrink: 0;
}
.nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 3px; padding: 8px 4px;
  cursor: pointer; transition: color 0.12s; color: var(--color-text-muted);
  border: none; background: none; font-family: var(--font-family);
}
.nav-item svg  { width: 22px; height: 22px; }
.nav-item span { font-size: 10px; font-weight: var(--font-medium); letter-spacing: 0.2px; }
.nav-item.active { color: var(--color-primary); }

/* ==============================
   SECTION
   ============================== */
.section    { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-4); }
.section-sm { padding: var(--space-4) var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }

.section-header  { display: flex; align-items: center; justify-content: space-between; }
.section-title   { font-size: var(--text-base); font-weight: var(--font-bold); color: var(--color-text); letter-spacing: -0.3px; }
.section-link    { font-size: var(--text-sm); color: var(--color-primary); font-weight: var(--font-medium); cursor: pointer; }

/* ==============================
   LIST
   ============================== */
.list-group { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.list-item  {
  display: flex; align-items: center; gap: var(--space-3); padding: var(--space-4);
  cursor: pointer; transition: background 0.1s; border-bottom: 0.5px solid var(--gray-200);
}
.list-item:last-child { border-bottom: none; }
.list-item:active     { background: var(--gray-100); }

.list-item-icon    { width: 36px; height: 36px; border-radius: var(--radius-md); background: var(--gray-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.list-item-icon svg{ width: 18px; height: 18px; color: var(--color-text-secondary); }
.list-item-content { flex: 1; }
.list-item-title   { font-size: var(--text-base); font-weight: var(--font-medium); color: var(--color-text); }
.list-item-subtitle{ font-size: var(--text-sm); color: var(--color-text-secondary); margin-top: 1px; }
.list-item-arrow svg{ width: 16px; height: 16px; color: var(--gray-300); }

/* ==============================
   DIVIDER
   ============================== */
.divider { height: 0.5px; background: var(--color-border); }
.section-gap { height: var(--space-3); background: var(--gray-100); }

.divider-text { display: flex; align-items: center; gap: var(--space-3); color: var(--color-text-muted); font-size: var(--text-sm); }
.divider-text::before, .divider-text::after { content: ''; flex: 1; height: 0.5px; background: var(--color-border); }

/* ==============================
   PAYMENT METHOD
   ============================== */
.payment-option {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4); background: var(--white);
  border-radius: var(--radius-md); border: none; box-shadow: var(--shadow-sm);
  cursor: pointer; transition: all 0.12s;
}
.payment-option.selected { box-shadow: 0 0 0 2px var(--color-primary), var(--shadow-sm); background: var(--color-primary-light); }

.payment-radio {
  width: 20px; height: 20px; border-radius: var(--radius-full);
  border: 2px solid var(--color-border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.12s;
}
.payment-option.selected .payment-radio { border-color: var(--color-primary); background: var(--color-primary); }
.payment-option.selected .payment-radio::after { content: ''; width: 7px; height: 7px; border-radius: var(--radius-full); background: white; }

.payment-label { font-size: var(--text-base); font-weight: var(--font-medium); color: var(--color-text); }
.payment-sub   { font-size: var(--text-sm); color: var(--color-text-secondary); margin-top: 1px; }

/* ==============================
   CHAT
   ============================== */
.chat-container { flex: 1; overflow-y: auto; padding: var(--space-4); display: flex; flex-direction: column; gap: var(--space-3); }
.chat-container::-webkit-scrollbar { display: none; }

.chat-message     { display: flex; flex-direction: column; gap: 4px; }
.chat-message.bot { align-items: flex-start; }
.chat-message.user{ align-items: flex-end; }

.chat-bubble {
  max-width: 82%; padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg); font-size: var(--text-base); line-height: 1.5;
}
.chat-bubble.bot  { background: var(--white); box-shadow: var(--shadow-sm); border-bottom-left-radius: 4px; color: var(--color-text); }
.chat-bubble.user { background: var(--color-primary); color: var(--white); border-bottom-right-radius: 4px; }

.chat-time { font-size: var(--text-xs); color: var(--color-text-muted); }

.chat-input-row   {
  display: flex; align-items: flex-end; gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 0.5px solid rgba(60, 60, 67, 0.12);
}
.chat-input {
  flex: 1; padding: 10px 14px; border: none;
  border-radius: var(--radius-xl); font-size: var(--text-base);
  resize: none; max-height: 100px; font-family: var(--font-family);
  line-height: 1.5; background: var(--gray-100);
  outline: 2px solid transparent; transition: outline 0.15s, background 0.15s;
}
.chat-input:focus { outline: 2px solid var(--color-primary); background: var(--white); }

/* ==============================
   SCHEDULE
   ============================== */
.schedule-option {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4); background: var(--white);
  border-radius: var(--radius-md); border: none; box-shadow: var(--shadow-sm);
  cursor: pointer; transition: all 0.12s;
}
.schedule-option.selected { box-shadow: 0 0 0 2px var(--color-primary), var(--shadow-sm); background: var(--color-primary-light); }
.schedule-radio {
  width: 20px; height: 20px; border-radius: var(--radius-full);
  border: 2px solid var(--color-border); flex-shrink: 0; transition: all 0.12s;
}
.schedule-option.selected .schedule-radio { border-color: var(--color-primary); background: var(--color-primary); box-shadow: inset 0 0 0 3px var(--white); }
.schedule-option-icon { font-size: 22px; flex-shrink: 0; }
.schedule-option-content { flex: 1; }
.schedule-option-title   { font-size: var(--text-base); font-weight: var(--font-semibold); color: var(--color-text); }
.schedule-option-sub     { font-size: var(--text-sm); color: var(--color-text-secondary); margin-top: 1px; }

/* ==============================
   SERVICE ITEM
   ============================== */
.service-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) var(--space-4); background: var(--white);
  border-radius: var(--radius-md); border: none; box-shadow: var(--shadow-sm);
}
.service-name          { font-size: var(--text-base); font-weight: var(--font-medium); color: var(--color-text); }
.service-desc          { font-size: var(--text-sm); color: var(--color-text-secondary); margin-top: 2px; }
.service-price-from    { font-size: var(--text-xs); color: var(--color-text-secondary); }
.service-price-amount  { font-size: var(--text-base); font-weight: var(--font-bold); color: var(--color-text); }

/* ==============================
   PROGRESS STEPS (onboarding)
   ============================== */
.progress-steps { display: flex; align-items: center; gap: var(--space-1); padding: var(--space-3) var(--space-5) 0; }
.progress-step  { flex: 1; height: 4px; border-radius: var(--radius-full); background: var(--gray-200); transition: background 0.3s; }
.progress-step.done   { background: var(--color-primary); }
.progress-step.active { background: var(--color-primary); opacity: 0.5; }

/* ==============================
   EMPTY STATE
   ============================== */
.empty-state {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: var(--space-12) var(--space-8);
  gap: var(--space-3); text-align: center; flex: 1;
}
.empty-state-icon  { font-size: 52px; line-height: 1; }
.empty-state-title { font-size: var(--text-lg); font-weight: var(--font-semibold); color: var(--color-text); }
.empty-state-desc  { font-size: var(--text-base); color: var(--color-text-secondary); line-height: 1.5; }

/* ==============================
   TOAST
   ============================== */
.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%);
  background: rgba(40, 40, 40, 0.92); color: var(--white); padding: 12px 20px;
  border-radius: var(--radius-lg); font-size: var(--text-sm); font-weight: var(--font-medium);
  z-index: 9999; white-space: nowrap; animation: toastIn 0.2s ease-out;
  box-shadow: var(--shadow-lg); pointer-events: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ==============================
   ORDER SUMMARY
   ============================== */
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-3) 0; border-bottom: 0.5px solid var(--gray-200);
}
.summary-row:last-child { border-bottom: none; }
.summary-label { font-size: var(--text-sm); color: var(--color-text-secondary); }
.summary-value { font-size: var(--text-sm); font-weight: var(--font-medium); color: var(--color-text); text-align: right; }
.summary-total-label { font-size: var(--text-base); font-weight: var(--font-bold); color: var(--color-text); }
.summary-total-value { font-size: var(--text-lg); font-weight: var(--font-bold); color: var(--color-primary); }

/* ==============================
   AVATAR GRADIENT COLORS (by initial)
   ============================== */
.avatar-a, .avatar-m { background: linear-gradient(135deg, #007AFF, #0A84FF); }
.avatar-b, .avatar-n { background: linear-gradient(135deg, #5E5CE6, #BF5AF2); }
.avatar-c, .avatar-o { background: linear-gradient(135deg, #34C759, #30D158); }
.avatar-d, .avatar-p { background: linear-gradient(135deg, #FF3B30, #FF6961); }
.avatar-e, .avatar-r { background: linear-gradient(135deg, #FF9F0A, #FFD60A); color: #000000 !important; }
.avatar-f, .avatar-s { background: linear-gradient(135deg, #30B0C7, #5AC8FA); }
.avatar-g, .avatar-t { background: linear-gradient(135deg, #FF2D55, #FF6B81); }
.avatar-h, .avatar-u { background: linear-gradient(135deg, #5E5CE6, #BF5AF2); }
.avatar-i, .avatar-v { background: linear-gradient(135deg, #34C759, #30D158); }
.avatar-j, .avatar-w { background: linear-gradient(135deg, #FF9F0A, #FFD60A); color: #000000 !important; }
.avatar-k, .avatar-x { background: linear-gradient(135deg, #30B0C7, #5AC8FA); }
.avatar-l, .avatar-y { background: linear-gradient(135deg, #FF6B35, #FF9F0A); }
.avatar-z            { background: linear-gradient(135deg, #5E5CE6, #BF5AF2); }

/* ==============================
   JOB DETAIL — MAP PREVIEW
   ============================== */
.job-map-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 130px;
  box-shadow: var(--shadow-sm);
}
.job-map-bg {
  position: absolute;
  inset: 0;
  background: #E8ECD4;
  overflow: hidden;
}
.map-block {
  position: absolute;
  background: #D4D9BF;
  border-radius: 3px;
}
.map-road {
  position: absolute;
  background: white;
}
.map-road.h { height: 7px; left: 0; right: 0; }
.map-road.v { width: 7px; top: 0; bottom: 0; }

.job-map-you-dot {
  width: 28px; height: 28px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,122,255,0.45);
}

.job-map-eta {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: white;
  border-radius: var(--radius-md);
  padding: 5px 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  display: flex; align-items: baseline; gap: 4px;
}
.job-map-eta-time { font-size: 17px; font-weight: 800; color: var(--color-text); }
.job-map-eta-dist { font-size: 12px; color: var(--color-text-secondary); }

/* ==============================
   INSURANCE WIZARD
   ============================== */
.ins-option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--color-border);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-family);
  transition: all 0.15s;
  box-shadow: var(--shadow-sm);
}
.ins-option-card:active { transform: scale(0.98); box-shadow: var(--shadow-md); }
.ins-option-card:hover  { border-color: var(--color-primary); background: var(--color-primary-light); }

/* Chip selectors */
.ins-chip {
  padding: 10px 14px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border);
  background: var(--white);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  font-family: var(--font-family);
  transition: all 0.12s;
  text-align: center;
}
.ins-chip:active { transform: scale(0.96); }
.ins-chip.active {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 700;
}

.ins-chip-sm {
  padding: 8px 12px;
  font-size: var(--text-xs);
}

.ins-chip-wide {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
}

/* Plan cards */
.ins-plan-card {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--color-border);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-family);
  transition: all 0.15s;
  box-shadow: var(--shadow-sm);
}
.ins-plan-card:active { transform: scale(0.98); }
