@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary:   #1696ce;
  --color-secondary: #3c4952;
  --blue:         #1696ce;
  --blue-dark:    #1178a5;
  --blue-mid:     #1a9fd8;
  --blue-light:   rgba(22,150,206,0.12);
  --blue-glow:    rgba(22,150,206,0.22);
  --charcoal:     #3c4952;
  --charcoal-lt:  #526170;
  --mist:         #e8edf2;
  --mist-dark:    #d4dce4;
  --surface:      rgba(255,255,255,0.68);
  --surface-hover:rgba(255,255,255,0.82);
  --gray:         #8896a0;
  --white:        #ffffff;
  --red:          #e63138;
  --red-dark:     #c5272e;
  --green:        #0d9f6e;
  --amber:        #d97706;
  --radius:       20px;
  --radius-sm:    12px;
  --blur:         blur(22px) saturate(180%);
  --border:       rgba(255,255,255,0.75);
  --border-inner: rgba(255,255,255,0.4);

  /* Colored layered shadows — the 2025 premium look */
  --shadow-card:
    0 1px 1px rgba(60,73,82,0.04),
    0 4px 12px rgba(22,150,206,0.07),
    0 12px 40px rgba(60,73,82,0.09),
    inset 0 1px 0 rgba(255,255,255,0.92),
    inset 0 -1px 0 color-mix(in srgb, var(--color-primary) 12%, transparent);
  --shadow-card-hover:
    0 2px 2px rgba(60,73,82,0.05),
    0 8px 24px rgba(22,150,206,0.14),
    0 20px 60px rgba(60,73,82,0.12),
    0 0 0 1px color-mix(in srgb, var(--color-primary) 28%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.95);
  --shadow-btn:
    0 1px 2px rgba(17,120,165,0.2),
    0 4px 12px rgba(22,150,206,0.3);
  --shadow-btn-hover:
    0 2px 4px rgba(17,120,165,0.25),
    0 6px 20px rgba(22,150,206,0.4);
  --shadow-sm:
    0 1px 3px rgba(60,73,82,0.07),
    0 3px 8px rgba(60,73,82,0.05);

  --c-employee: #1696ce;
  --c-setup:    #0d9f6e;
  --c-hardware: #d97706;
  --c-software: #7c5ce8;
  --c-access:   #0891b2;
  --c-notes:    #db2777;
}

/* ══════════════════════════════════════════
   CLEARBRIDGE TOP BAR
══════════════════════════════════════════ */
.cb-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: #1696ce;
  display: flex; align-items: center; justify-content: flex-start; gap: 8px;
  padding: 8px 20px; min-height: 42px;
  font-size: 0.75rem; color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em; font-weight: 500;
}
.cb-topbar-link { display: flex; align-items: center; text-decoration: none; }
.cb-topbar-logo { height: 26px; width: auto; filter: brightness(0) invert(1); }

/* ══════════════════════════════════════════
   GLOBAL
══════════════════════════════════════════ */
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: #f0f2f4;
  color: var(--charcoal);
  min-height: 100vh;
  padding: 78px 16px 130px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ══════════════════════════════════════════
   GLASS MIXIN — applied per container
══════════════════════════════════════════ */
.picker,
.role-bar,
.scard {
  position: relative; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.35s ease,
              border-color 0.3s ease,
              background 0.3s ease;
}

/* inner gradient overlay */
.picker::before,
.role-bar::before,
.scard::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.6)  0%,
    rgba(255,255,255,0.15) 35%,
    color-mix(in srgb, var(--color-primary) 8%, transparent)  70%,
    color-mix(in srgb, var(--color-secondary) 10%, transparent)
  );
  pointer-events: none; z-index: 0;
}

/* top shimmer line */
.picker::after,
.role-bar::after,
.scard::after {
  content: ''; position: absolute;
  top: 0; left: 10%; width: 80%; height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.95) 40%,
    color-mix(in srgb, var(--color-primary) 50%, transparent) 60%,
    transparent 100%
  );
  pointer-events: none; z-index: 0;
}

.picker > *,
.role-bar > *,
.scard > * { position: relative; z-index: 1; }

/* hover lift */
.scard { transform: translateY(0); }
.scard:hover {
  background: var(--surface-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

/* ══════════════════════════════════════════
   ENTRANCE ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.picker { animation: fadeUp 0.45s cubic-bezier(.2,.8,.2,1) both; }

.dashboard.active .role-bar { animation: fadeUp 0.4s 0.05s cubic-bezier(.2,.8,.2,1) both; }
.dashboard.active .card-grid .scard:nth-child(1) { animation: fadeUp 0.45s 0.10s cubic-bezier(.2,.8,.2,1) both; }
.dashboard.active .card-grid .scard:nth-child(2) { animation: fadeUp 0.45s 0.16s cubic-bezier(.2,.8,.2,1) both; }
.dashboard.active .card-grid .scard:nth-child(3) { animation: fadeUp 0.45s 0.22s cubic-bezier(.2,.8,.2,1) both; }
.dashboard.active .card-grid .scard:nth-child(4) { animation: fadeUp 0.45s 0.28s cubic-bezier(.2,.8,.2,1) both; }
.dashboard.active .card-grid .scard:nth-child(5) { animation: fadeUp 0.45s 0.34s cubic-bezier(.2,.8,.2,1) both; }
.dashboard.active .card-grid .scard:nth-child(6) { animation: fadeUp 0.45s 0.40s cubic-bezier(.2,.8,.2,1) both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ══════════════════════════════════════════
   PAGE HEADER
══════════════════════════════════════════ */
.page-header { text-align: center; margin-bottom: 40px; animation: fadeIn 0.5s ease both; }
.page-header .brand-logo {
  height: 54px; width: auto; margin-bottom: 16px;
  display: block; margin-left: auto; margin-right: auto;
}
.page-header h1 { display: none; }
.page-header p  { font-size: 0.82rem; color: var(--gray); margin-top: 4px; }
.page-title {
  font-size: 1.55rem; font-weight: 800; color: var(--charcoal);
  margin-top: 4px; margin-bottom: 2px; letter-spacing: -0.025em;
}
.submitting-as { font-size: 0.73rem; color: var(--gray); margin-top: 6px; font-weight: 500; }
.contact-hint  { font-size: 0.76rem; color: var(--gray); margin-top: 6px; }
.contact-hint a { color: var(--charcoal-lt); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.contact-hint a:hover { color: var(--blue); }
.demo-tag {
  display: inline-block; margin-top: 10px; padding: 4px 14px;
  background: rgba(217,119,6,0.1); color: var(--amber);
  border: 1px solid rgba(217,119,6,0.28);
  border-radius: 999px; font-size: 0.67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.wrap { max-width: 980px; margin: 0 auto; }

/* ══════════════════════════════════════════
   ROLE PICKER
══════════════════════════════════════════ */
.picker {
  padding: 40px 36px; max-width: 520px;
  margin: 24px auto 0; text-align: center;
}
.picker h2 {
  font-size: 1.05rem; font-weight: 800; color: var(--charcoal);
  margin-bottom: 6px; letter-spacing: -0.02em;
}
.picker p  { font-size: 0.84rem; color: var(--gray); margin-bottom: 22px; font-weight: 500; }
.picker select {
  width: 100%; padding: 13px 40px 13px 16px;
  border: 1.5px solid var(--mist-dark); border-radius: var(--radius-sm);
  font-size: 0.92rem; font-weight: 600; appearance: none;
  background: rgba(255,255,255,0.7);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238896a0' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 16px;
  cursor: pointer; font-family: inherit; color: var(--charcoal); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: var(--shadow-sm);
}
.picker select:hover { border-color: var(--blue); background-color: rgba(255,255,255,0.88); }
.picker select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-light), var(--shadow-sm); }

/* ══════════════════════════════════════════
   DASHBOARD + ROLE BAR
══════════════════════════════════════════ */
.dashboard { display: none; }
.dashboard.active { display: block; }

.role-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; margin-bottom: 18px;
}
.role-bar-left { display: flex; align-items: center; gap: 14px; }
.role-bar-icon {
  width: 42px; height: 42px; background: var(--blue-light); color: var(--blue);
  border-radius: 13px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1px solid rgba(22,150,206,0.2); font-size: 24px;
}
.role-meta {
  font-size: 0.63rem; color: var(--gray); text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 700;
}
.role-name { font-size: 0.96rem; font-weight: 800; color: var(--charcoal); margin-top: 2px; letter-spacing: -0.02em; }

.btn-link {
  background: none; border: none; padding: 6px 10px;
  color: var(--blue); font-size: 0.8rem; font-weight: 700;
  cursor: pointer; font-family: inherit; border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.btn-link:hover { background: var(--blue-light); }

.btn-reset {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.6); border: 1.5px solid var(--mist-dark);
  border-radius: var(--radius-sm); padding: 8px 16px;
  font-size: 0.8rem; font-weight: 700; color: var(--charcoal-lt);
  cursor: pointer; font-family: inherit;
  transition: background 0.2s, border-color 0.2s, color 0.15s, transform 0.15s;
  box-shadow: var(--shadow-sm);
}
.btn-reset svg { width: 14px; height: 14px; color: var(--gray); transition: transform 0.45s ease, color 0.15s; }
.btn-reset:hover { background: rgba(255,255,255,0.9); border-color: var(--blue); color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light); }
.btn-reset:hover svg { color: var(--blue); transform: rotate(-180deg); }
.btn-reset:active { transform: scale(0.97); }

/* ══════════════════════════════════════════
   CARD GRID
══════════════════════════════════════════ */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 720px) { .card-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   SUMMARY CARDS
══════════════════════════════════════════ */
.scard { padding: 24px 26px; display: flex; flex-direction: column; min-height: 158px; }
.scard.span-2 { grid-column: span 2; }
@media (max-width: 720px) { .scard.span-2 { grid-column: span 1; } }

.scard-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 18px; padding-bottom: 15px;
  border-bottom: 1px solid rgba(212,220,228,0.6); gap: 10px;
}
.scard-title {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.93rem; font-weight: 800; color: var(--charcoal); letter-spacing: -0.015em;
}
.scard-icon {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px; flex-shrink: 0; font-size: 22px;
  color: var(--blue); background: var(--blue-light);
  border: 1px solid rgba(22,150,206,0.2);
  transition: transform 0.25s ease, box-shadow 0.2s;
}
.scard:hover .scard-icon { transform: scale(1.08); box-shadow: 0 4px 14px rgba(22,150,206,0.2); }

.scard-edit {
  background: rgba(255,255,255,0.6); border: 1.5px solid var(--mist-dark);
  border-radius: 9px; padding: 6px 13px; font-size: 0.75rem; font-weight: 700;
  color: var(--gray); cursor: pointer; font-family: inherit;
  transition: background 0.18s, border-color 0.18s, color 0.15s, transform 0.15s, box-shadow 0.18s;
  display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.scard-edit svg { width: 11px; height: 11px; }
.scard-edit:hover { background: rgba(255,255,255,0.9); border-color: var(--blue); color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light); }
.scard-edit:active { transform: scale(0.96); }

.scard-body { flex: 1; display: flex; flex-direction: column; }
.scard-foot {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; padding-top: 13px;
  border-top: 1px solid rgba(212,220,228,0.6);
  font-size: 0.73rem; color: var(--gray); min-height: 28px;
}
.scard-foot:empty { display: none; }

/* ══════════════════════════════════════════
   SECTION COLOR PERSONALITIES
══════════════════════════════════════════ */
.scard[data-card="employee"] .scard-icon { color: var(--c-employee); background: rgba(22,150,206,0.1); border-color: rgba(22,150,206,0.2); }
.scard[data-card="employee"]:hover { box-shadow: 0 2px 2px rgba(60,73,82,0.05), 0 8px 24px rgba(22,150,206,0.16), 0 20px 60px rgba(60,73,82,0.1), 0 0 0 1px rgba(22,150,206,0.25), inset 0 1px 0 rgba(255,255,255,0.95); }

.scard[data-card="setup"] .scard-icon { color: var(--c-setup); background: rgba(13,159,110,0.1); border-color: rgba(13,159,110,0.2); }
.scard[data-card="setup"]:hover { box-shadow: 0 2px 2px rgba(60,73,82,0.05), 0 8px 24px rgba(13,159,110,0.16), 0 20px 60px rgba(60,73,82,0.1), 0 0 0 1px rgba(13,159,110,0.25), inset 0 1px 0 rgba(255,255,255,0.95); }

.scard[data-card="hardware"] .scard-icon { color: var(--c-hardware); background: rgba(217,119,6,0.1); border-color: rgba(217,119,6,0.2); }
.scard[data-card="hardware"]:hover { box-shadow: 0 2px 2px rgba(60,73,82,0.05), 0 8px 24px rgba(217,119,6,0.18), 0 20px 60px rgba(60,73,82,0.1), 0 0 0 1px rgba(217,119,6,0.25), inset 0 1px 0 rgba(255,255,255,0.95); }

.scard[data-card="software"] .scard-icon { color: var(--c-software); background: rgba(124,92,232,0.1); border-color: rgba(124,92,232,0.2); }
.scard[data-card="software"]:hover { box-shadow: 0 2px 2px rgba(60,73,82,0.05), 0 8px 24px rgba(124,92,232,0.18), 0 20px 60px rgba(60,73,82,0.1), 0 0 0 1px rgba(124,92,232,0.25), inset 0 1px 0 rgba(255,255,255,0.95); }

.scard[data-card="access"] .scard-icon { color: var(--c-access); background: rgba(8,145,178,0.1); border-color: rgba(8,145,178,0.2); }
.scard[data-card="access"]:hover { box-shadow: 0 2px 2px rgba(60,73,82,0.05), 0 8px 24px rgba(8,145,178,0.18), 0 20px 60px rgba(60,73,82,0.1), 0 0 0 1px rgba(8,145,178,0.25), inset 0 1px 0 rgba(255,255,255,0.95); }

.scard[data-card="notes"] .scard-icon { color: var(--c-notes); background: rgba(219,39,119,0.1); border-color: rgba(219,39,119,0.2); }
.scard[data-card="notes"]:hover { box-shadow: 0 2px 2px rgba(60,73,82,0.05), 0 8px 24px rgba(219,39,119,0.18), 0 20px 60px rgba(60,73,82,0.1), 0 0 0 1px rgba(219,39,119,0.25), inset 0 1px 0 rgba(255,255,255,0.95); }

/* edit button hover per section */
.scard[data-card="employee"] .scard-edit:hover { border-color: var(--c-employee); color: var(--c-employee); box-shadow: 0 0 0 3px rgba(22,150,206,0.12); }
.scard[data-card="setup"]    .scard-edit:hover { border-color: var(--c-setup);    color: var(--c-setup);    box-shadow: 0 0 0 3px rgba(13,159,110,0.12); }
.scard[data-card="hardware"] .scard-edit:hover { border-color: var(--c-hardware); color: var(--c-hardware); box-shadow: 0 0 0 3px rgba(217,119,6,0.12); }
.scard[data-card="software"] .scard-edit:hover { border-color: var(--c-software); color: var(--c-software); box-shadow: 0 0 0 3px rgba(124,92,232,0.12); }
.scard[data-card="access"]   .scard-edit:hover { border-color: var(--c-access);   color: var(--c-access);   box-shadow: 0 0 0 3px rgba(8,145,178,0.12); }

/* ══════════════════════════════════════════
   BADGES
══════════════════════════════════════════ */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 0.68rem; font-weight: 700;
}
.badge svg { width: 9px; height: 9px; }
.badge.defaults   { color: #065f46; background: rgba(13,159,110,0.1); border: 1px solid rgba(13,159,110,0.22); }
.badge.customized { color: #1565a0; background: rgba(22,150,206,0.1); border: 1px solid rgba(22,150,206,0.22); }
.badge.required   { color: #92400e; background: rgba(217,119,6,0.1);  border: 1px solid rgba(217,119,6,0.22); }
.badge.complete   { color: #065f46; background: rgba(13,159,110,0.1); border: 1px solid rgba(13,159,110,0.22); }
.badge.empty      { color: var(--gray); background: rgba(255,255,255,0.5); border: 1px solid var(--mist-dark); }

.revert-link {
  background: none; border: none; padding: 0;
  font-size: 0.7rem; color: var(--blue); cursor: pointer; font-family: inherit;
  text-decoration: underline; text-underline-offset: 2px; font-weight: 600;
}
.revert-link:hover { color: var(--blue-dark); }

/* ══════════════════════════════════════════
   CHIPS
══════════════════════════════════════════ */
.chip-list { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px;
  background: rgba(255,255,255,0.65); border: 1px solid rgba(212,220,228,0.7);
  border-radius: 999px; font-size: 0.73rem; font-weight: 600; line-height: 1.2;
  color: var(--charcoal-lt); box-shadow: var(--shadow-sm);
  transition: background 0.15s, box-shadow 0.15s;
}
.chip:hover { background: rgba(255,255,255,0.9); }
.chip-icon { width: 13px; height: 13px; display: flex; align-items: center; justify-content: center; font-size: 13px; line-height: 1; }
.chip.muted { color: var(--gray); background: rgba(255,255,255,0.4); border-color: rgba(212,220,228,0.5); }
.chip.green { color: #065f46; background: rgba(13,159,110,0.1); border-color: rgba(13,159,110,0.22); }
.chip.chip-app-icon { padding: 3px 7px 3px 4px; display: inline-flex; align-items: center; gap: 5px; }
.app-chip-logo { display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; overflow: hidden; border-radius: 5px; flex-shrink: 0; }
.app-chip-logo svg { width: 20px !important; height: 20px !important; border-radius: 5px; flex-shrink: 0; }
.app-chip-logo img { width: 20px; height: 20px; object-fit: contain; border-radius: 5px; display: block; }
.chip-app-label { font-size: 0.72rem; font-weight: 600; color: var(--charcoal); white-space: nowrap; }

/* ══════════════════════════════════════════
   CARD SECTIONS
══════════════════════════════════════════ */
.scard-section { margin-bottom: 14px; }
.scard-section:last-child { margin-bottom: 0; }
.scard-section-label {
  font-size: 0.65rem; font-weight: 700; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.label-logo { width: 18px; height: 18px; flex-shrink: 0; }
.label-logo[src] { object-fit: contain; border-radius: 4px; display: block; }
.label-logo-lg { width: 28px; height: 28px; }
.chip-logo  { width: 11px; height: 11px; flex-shrink: 0; }
.scard-section-sublabel {
  font-size: 0.71rem; color: var(--gray); margin-top: -2px; margin-bottom: 8px;
  font-weight: 500; text-transform: none; letter-spacing: 0;
}
.scard-empty { font-size: 0.8rem; color: var(--gray); font-style: italic; }

/* ══════════════════════════════════════════
   INPUTS — animated focus treatment
══════════════════════════════════════════ */
.inline-select {
  appearance: none; -webkit-appearance: none;
  background: rgba(255,255,255,0.65);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%238896a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='1,2 6,7 11,2'/></svg>");
  background-repeat: no-repeat; background-position: right 11px center; background-size: 10px 7px;
  border: 1.5px solid rgba(212,220,228,0.8); border-radius: 10px;
  padding: 9px 30px 9px 13px; font-size: 0.81rem; font-family: inherit; font-weight: 500;
  color: var(--charcoal); cursor: pointer; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; max-width: 100%;
  box-shadow: var(--shadow-sm);
}
.inline-select:hover { border-color: var(--blue); background-color: rgba(255,255,255,0.88); }
.inline-select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-light); background: var(--white); }

.address-inline { margin-top: 10px; display: grid; gap: 7px; }
.address-inline input,
.address-inline select {
  width: 100%; padding: 9px 13px; border-radius: 9px;
  border: 1.5px solid rgba(212,220,228,0.8); font-size: 0.81rem; font-family: inherit; font-weight: 500;
  background: rgba(255,255,255,0.65); color: var(--charcoal); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: var(--shadow-sm);
}
.address-inline input:hover,  .address-inline select:hover  { border-color: var(--blue); }
.address-inline input:focus,  .address-inline select:focus  { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-light); background: var(--white); }
.address-row { display: grid; grid-template-columns: 1.4fr 0.7fr 0.9fr; gap: 6px; }

.ship-default-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 11px 15px;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(212,220,228,0.7); border-radius: 11px;
  font-size: 0.83rem; color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}
.ship-default-text { font-weight: 600; }
.ship-default-hint { color: var(--gray); font-weight: 500; }
.link-btn {
  background: none; border: none; padding: 0; font-family: inherit;
  font-size: 0.77rem; font-weight: 700; color: var(--blue); cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px; transition: color 0.15s;
}
.link-btn:hover { color: var(--blue-dark); }

.notes-inline {
  flex: 1; width: 100%; padding: 12px 14px; border-radius: 11px;
  border: 1.5px solid rgba(212,220,228,0.8); font-size: 0.83rem; font-family: inherit; font-weight: 500;
  color: var(--charcoal); background: rgba(255,255,255,0.65);
  outline: none; resize: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  line-height: 1.65; box-shadow: var(--shadow-sm);
}
.notes-inline:hover { border-color: rgba(219,39,119,0.35); }
.notes-inline:focus { border-color: rgba(219,39,119,0.55); box-shadow: 0 0 0 4px rgba(219,39,119,0.1); background: var(--white); }
.notes-inline::placeholder { color: var(--gray); }

.scard-fields { display: grid; gap: 14px; }
.scard-field label {
  display: block; font-size: 0.65rem; color: var(--gray);
  margin-bottom: 6px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em;
}
.scard-field .req { color: var(--red); margin-left: 2px; }
.scard-field input,
.scard-field select {
  width: 100%; padding: 12px 15px; border-radius: 11px;
  border: 1.5px solid rgba(212,220,228,0.8); font-size: 0.86rem; font-family: inherit; font-weight: 500;
  background: rgba(255,255,255,0.65); color: var(--charcoal); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: var(--shadow-sm);
}
.scard-field input::placeholder { color: var(--gray); }
.scard-field input:hover,  .scard-field select:hover  { border-color: rgba(22,150,206,0.5); }
.scard-field input:focus,  .scard-field select:focus  { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-light); background: var(--white); }
.scard-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.email-label-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.email-label-row .link-btn { font-size: 0.73rem; text-transform: none; letter-spacing: 0; }
.email-readonly {
  padding: 12px 15px; background: rgba(212,220,228,0.4); border-radius: 11px;
  border: 1.5px solid rgba(212,220,228,0.8);
  font-size: 0.86rem; color: var(--charcoal-lt); font-family: inherit; font-weight: 500;
}
.email-row { display: flex; align-items: stretch; }
.email-row input { flex: 1; border-top-right-radius: 0; border-bottom-right-radius: 0; border-right: none; }
.email-suffix {
  display: flex; align-items: center; padding: 0 14px;
  background: rgba(212,220,228,0.4); border: 1.5px solid rgba(212,220,228,0.8);
  border-left: none; border-radius: 0 11px 11px 0;
  font-size: 0.83rem; color: var(--gray); white-space: nowrap; font-weight: 500;
}
.scard-locked {
  display: flex; align-items: center; gap: 8px; padding: 11px 14px;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(212,220,228,0.7); border-radius: 11px;
  font-size: 0.81rem; color: var(--charcoal); font-weight: 500;
}

/* ══════════════════════════════════════════
   SUBMIT BAR
══════════════════════════════════════════ */
.submit-bar {
  position: fixed; left: 0; right: 0; bottom: 0; padding: 13px 24px;
  background: rgba(216,228,236,0.9);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 -4px 28px rgba(60,73,82,0.1), 0 -1px 0 rgba(255,255,255,0.6);
  display: none; z-index: 90;
}
.submit-bar.active { display: block; animation: fadeIn 0.3s ease both; }
.submit-bar-inner {
  max-width: 980px; margin: 0 auto;
  display: flex; align-items: center; justify-content: flex-end;
}
.submit-bar-right { display: flex; align-items: center; gap: 12px; }
.cc-list-mini { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: 0.76rem; color: var(--gray); font-weight: 500; }
.cc-cb-logo { height: 14px; width: auto; filter: brightness(0) opacity(0.45); vertical-align: middle; margin-right: 3px; }
.cc-list-mini .cc-list-label {
  display: inline-flex; align-items: center;
  font-size: 0.64rem; font-weight: 700; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.07em; margin-right: 4px;
}
.btn-submit {
  padding: 12px 28px; background: var(--blue); color: var(--white);
  border: none; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 800;
  cursor: pointer; font-family: inherit; letter-spacing: -0.01em; white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: var(--shadow-btn);
}
.btn-submit:hover:not(:disabled) { background: var(--blue-dark); box-shadow: var(--shadow-btn-hover); transform: translateY(-1px); }
.btn-submit:active:not(:disabled) { transform: scale(0.98); }
.btn-submit:disabled { background: var(--mist-dark); color: var(--gray); cursor: not-allowed; box-shadow: none; }

/* ══════════════════════════════════════════
   ERROR MODAL
══════════════════════════════════════════ */
.error-modal-backdrop {
  position: fixed; inset: 0; background: rgba(60,73,82,0.3);
  opacity: 0; pointer-events: none; transition: opacity 0.22s; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.error-modal-backdrop.active { opacity: 1; pointer-events: auto; }
.error-modal {
  background: rgba(255,255,255,0.82);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border); border-radius: 22px; padding: 34px 30px 26px;
  max-width: 400px; width: calc(100% - 40px); text-align: center;
  box-shadow: 0 20px 60px rgba(60,73,82,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
  animation: fadeUp 0.3s ease both;
}
.error-modal-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(230,49,56,0.1); border: 1.5px solid rgba(230,49,56,0.22);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.error-modal h3 { font-size: 1.05rem; font-weight: 800; color: var(--charcoal); margin-bottom: 8px; letter-spacing: -0.02em; }
.error-modal p  { font-size: 0.84rem; color: var(--gray); margin-bottom: 24px; line-height: 1.6; font-weight: 500; }
.btn-error-dismiss {
  padding: 11px 26px; background: var(--red); color: white;
  border: none; border-radius: 11px; font-size: 0.88rem; font-weight: 800;
  cursor: pointer; font-family: inherit;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 3px 12px rgba(230,49,56,0.32);
}
.btn-error-dismiss:hover { background: var(--red-dark); box-shadow: 0 5px 18px rgba(230,49,56,0.45); }
.btn-error-dismiss:active { transform: scale(0.97); }

/* ══════════════════════════════════════════
   CC CHIPS
══════════════════════════════════════════ */
.cc-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(212,220,228,0.7);
  border-radius: 999px; padding: 4px 11px 4px 4px;
  font-size: 0.73rem; color: var(--charcoal); font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.cc-chip.primary .cc-avatar { background: var(--charcoal); }
.cc-chip.primary { padding: 3px; border-radius: 50%; }
.cc-chip.primary .cc-avatar { background: var(--charcoal); }
.cc-avatar-img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; display: block; flex-shrink: 0; }
.cc-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 0.63rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.cc-separator { font-size: 0.63rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin: 0 2px 0 4px; }
.cc-input {
  border: 1.5px solid rgba(212,220,228,0.8); border-radius: 9px; padding: 5px 12px;
  font-size: 0.73rem; font-family: inherit; font-weight: 500; color: var(--charcoal);
  background: rgba(255,255,255,0.65); min-width: 120px; flex: 1; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: var(--shadow-sm);
}
.cc-input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-light); background: var(--white); }
.cc-input::placeholder { color: var(--gray); }
.cc-input.cc-input-invalid { border-color: rgba(230,49,56,0.5); box-shadow: 0 0 0 4px rgba(230,49,56,0.1); }
.cc-input-hint { font-size: 0.68rem; color: var(--red); white-space: nowrap; align-self: center; font-weight: 700; }
.cc-chip.extra { color: var(--blue); border-color: rgba(22,150,206,0.3); background: rgba(22,150,206,0.08); }
.cc-chip-remove {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%; border: none;
  background: rgba(230,49,56,0.1); color: var(--red);
  font-size: 0.7rem; cursor: pointer; padding: 0; margin-left: 1px; flex-shrink: 0;
  font-family: inherit; transition: background 0.15s;
}
.cc-chip-remove:hover { background: var(--red); color: #fff; }

/* ══════════════════════════════════════════
   DRAWER
══════════════════════════════════════════ */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(60,73,82,0.25);
  opacity: 0; pointer-events: none; transition: opacity 0.22s; z-index: 250;
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.drawer-backdrop.active { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 520px; max-width: 100vw;
  background: rgba(225,232,238,0.92);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-left: 1px solid rgba(255,255,255,0.75);
  box-shadow: -12px 0 50px rgba(60,73,82,0.14), -1px 0 0 rgba(255,255,255,0.5);
  transform: translateX(100%); transition: transform 0.26s cubic-bezier(.2,.8,.2,1);
  z-index: 300; display: flex; flex-direction: column;
}
.drawer.active { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(212,220,228,0.5);
}
.drawer-head h3 { font-size: 1rem; font-weight: 800; color: var(--charcoal); display: flex; align-items: center; gap: 10px; letter-spacing: -0.02em; }
.drawer-close {
  background: rgba(255,255,255,0.6); border: 1px solid rgba(212,220,228,0.7);
  width: 34px; height: 34px; border-radius: 9px;
  cursor: pointer; color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.12s, transform 0.12s;
  box-shadow: var(--shadow-sm);
}
.drawer-close:hover { background: rgba(255,255,255,0.9); color: var(--charcoal); }
.drawer-close:active { transform: scale(0.93); }
.drawer-body { flex: 1; overflow-y: auto; padding: 22px 24px; }
.drawer-body::-webkit-scrollbar { width: 5px; }
.drawer-body::-webkit-scrollbar-track { background: transparent; }
.drawer-body::-webkit-scrollbar-thumb { background: var(--mist-dark); border-radius: 3px; }
.drawer-foot {
  display: flex; gap: 10px; justify-content: flex-end;
  padding: 14px 22px; border-top: 1px solid rgba(212,220,228,0.5);
}
.btn-secondary {
  padding: 9px 20px;
  background: rgba(255,255,255,0.65); border: 1.5px solid rgba(212,220,228,0.8);
  border-radius: 11px; font-size: 0.83rem; font-weight: 700; color: var(--charcoal-lt);
  cursor: pointer; font-family: inherit;
  transition: background 0.16s, border-color 0.16s, transform 0.12s;
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: rgba(255,255,255,0.9); border-color: var(--blue); color: var(--blue); }
.btn-secondary:active { transform: scale(0.97); }
.btn-primary {
  padding: 9px 24px; background: var(--blue); color: white;
  border: none; border-radius: 11px; font-size: 0.83rem; font-weight: 800;
  cursor: pointer; font-family: inherit; letter-spacing: -0.01em;
  transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: var(--shadow-btn-hover); }
.btn-primary:active { transform: scale(0.97); }

.sub-label {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--gray); margin: 20px 0 9px; display: flex; align-items: center; gap: 6px;
}
.sub-label:first-child { margin-top: 0; }
.divider { height: 1px; background: rgba(212,220,228,0.6); margin: 16px 0; }
.helper { font-size: 0.73rem; color: var(--gray); margin-top: 5px; line-height: 1.55; font-weight: 500; }

.scard-tip {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 11px 15px; margin-bottom: 14px; border-radius: 11px;
  font-size: 0.79rem; color: #78350f; line-height: 1.6; font-weight: 500;
  background: rgba(217,119,6,0.08); border: 1px solid rgba(217,119,6,0.22);
}
.scard-tip-icon { flex-shrink: 0; }

/* ══════════════════════════════════════════
   CHECK ITEMS
══════════════════════════════════════════ */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hw-group { margin-bottom: 16px; }
.hw-group:last-child { margin-bottom: 0; }
.hw-group-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--gray); margin-bottom: 8px; }
.chk-item {
  display: flex; align-items: center; gap: 9px; padding: 10px 12px;
  border: 1.5px solid rgba(212,220,228,0.7); border-radius: 11px;
  cursor: pointer; user-select: none;
  background: rgba(255,255,255,0.55);
  box-shadow: var(--shadow-sm);
  transition: background 0.16s, border-color 0.16s, box-shadow 0.16s, transform 0.12s;
}
.chk-item:hover { background: rgba(255,255,255,0.85); border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light); }
.chk-item:active { transform: scale(0.98); }
.chk-item.on { background: rgba(255,255,255,0.85); border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light); }
.chk-icon { width: 15px; height: 15px; flex-shrink: 0; color: var(--gray); display: flex; align-items: center; justify-content: center; }
.chk-item.on .chk-icon { color: var(--blue); }
.chk-box {
  width: 16px; height: 16px; border-radius: 5px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.8); border: 1.5px solid var(--mist-dark);
  transition: all 0.16s;
}
.chk-item.on .chk-box { background: var(--blue); border-color: var(--blue); box-shadow: 0 2px 6px rgba(22,150,206,0.35); }
.chk-item.on .chk-box::after {
  content: ''; width: 4px; height: 7px;
  border: 2px solid white; border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px); display: block;
}
.chk-text { font-size: 0.79rem; color: var(--charcoal); font-weight: 600; }

/* ══════════════════════════════════════════
   APP GRID
══════════════════════════════════════════ */
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.app-card {
  border: 1.5px solid rgba(212,220,228,0.7); border-radius: 14px; padding: 14px 8px 12px;
  cursor: pointer; user-select: none;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  text-align: center; background: rgba(255,255,255,0.55);
  box-shadow: var(--shadow-sm);
  transition: background 0.16s, border-color 0.16s, box-shadow 0.16s, transform 0.12s;
}
.app-card:hover { background: rgba(255,255,255,0.85); border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light); }
.app-card:active { transform: scale(0.97); }
.app-card.on { background: rgba(255,255,255,0.85); border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light); }
.app-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #fff; }
.app-icon img { width: 34px; height: 34px; object-fit: contain; display: block; border-radius: 9px; }
.app-name { font-size: 0.7rem; font-weight: 700; color: var(--charcoal); line-height: 1.3; }
.app-check {
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.8); border: 1.5px solid var(--mist-dark); transition: all 0.16s;
}
.app-card.on .app-check { background: var(--blue); border-color: var(--blue); box-shadow: 0 2px 6px rgba(22,150,206,0.35); }
.app-card.on .app-check::after {
  content: ''; width: 4px; height: 6px;
  border: 2px solid white; border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px); display: block;
}

/* ══════════════════════════════════════════
   RADIOS
══════════════════════════════════════════ */
.radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.radio-item {
  display: flex; align-items: center; gap: 9px; padding: 10px 12px;
  border: 1.5px solid rgba(212,220,228,0.7); border-radius: 11px;
  cursor: pointer; user-select: none; background: rgba(255,255,255,0.55);
  box-shadow: var(--shadow-sm);
  transition: background 0.16s, border-color 0.16s, box-shadow 0.16s;
}
.radio-item:hover { background: rgba(255,255,255,0.85); border-color: var(--blue); }
.radio-item.on { background: rgba(255,255,255,0.85); border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light); }
.radio-dot {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.8); border: 1.5px solid var(--mist-dark);
  display: flex; align-items: center; justify-content: center; transition: border-color 0.16s;
}
.radio-item.on .radio-dot { border-color: var(--blue); }
.radio-item.on .radio-dot::after {
  content: ''; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; display: block;
  box-shadow: 0 0 4px rgba(22,150,206,0.4);
}
.radio-text { font-size: 0.79rem; color: var(--charcoal); font-weight: 600; }

/* ══════════════════════════════════════════
   TOGGLES
══════════════════════════════════════════ */
.toggle-row { display: flex; align-items: center; gap: 13px; margin-bottom: 13px; cursor: pointer; }
.toggle-sw { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.toggle-sw input { display: none; }
.toggle-track {
  position: absolute; inset: 0;
  background: var(--mist-dark); border: 1.5px solid rgba(212,220,228,0.9);
  border-radius: 999px; cursor: pointer;
  transition: background 0.24s, border-color 0.24s, box-shadow 0.24s;
  box-shadow: inset 0 1px 3px rgba(60,73,82,0.1);
}
.toggle-track::after {
  content: ''; position: absolute;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--white); box-shadow: 0 1px 4px rgba(60,73,82,0.22);
  top: 2px; left: 2px;
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.24s;
}
.toggle-sw input:checked + .toggle-track { background: var(--blue); border-color: var(--blue-dark); box-shadow: 0 0 0 3px var(--blue-light); }
.toggle-sw input:checked + .toggle-track::after { transform: translateX(20px); box-shadow: 0 2px 6px rgba(22,150,206,0.4); }
.toggle-lbl { font-size: 0.83rem; font-weight: 600; color: var(--charcoal); display: inline-flex; align-items: center; gap: 6px; }

/* ══════════════════════════════════════════
   MISC
══════════════════════════════════════════ */
.expandable { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.3s ease, opacity 0.25s ease; }
.expandable.open { max-height: 800px; opacity: 1; }

textarea.full {
  width: 100%; padding: 12px 15px; border-radius: 11px;
  border: 1.5px solid rgba(212,220,228,0.8); font-size: 0.83rem; font-family: inherit; font-weight: 500;
  background: rgba(255,255,255,0.65); color: var(--charcoal);
  outline: none; resize: vertical; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  line-height: 1.65; box-shadow: var(--shadow-sm);
}
textarea.full::placeholder { color: var(--gray); }
textarea.full:focus { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-light); background: var(--white); }

input.full {
  width: 100%; padding: 12px 15px; border-radius: 11px;
  border: 1.5px solid rgba(212,220,228,0.8); font-size: 0.86rem; font-family: inherit; font-weight: 500;
  background: rgba(255,255,255,0.65); color: var(--charcoal);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: var(--shadow-sm);
}
input.full::placeholder { color: var(--gray); }
input.full:focus { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-light); background: var(--white); }

.address-panel {
  margin-top: 11px; padding: 14px;
  background: rgba(255,255,255,0.45); border: 1px solid rgba(212,220,228,0.7); border-radius: 13px;
}
.field-row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 7px; }

/* ══════════════════════════════════════════
   CONFIRMATION VIEW
══════════════════════════════════════════ */
.confirm-view {
  display: none; max-width: 560px; margin: 40px auto;
  position: relative; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius); padding: 50px 36px 44px; text-align: center;
  box-shadow: var(--shadow-card);
  animation: fadeUp 0.45s cubic-bezier(.2,.8,.2,1) both;
}
.confirm-view::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(145deg,
    rgba(255,255,255,0.6), rgba(255,255,255,0.15) 35%,
    rgba(13,159,110,0.07) 70%, rgba(60,73,82,0.06));
  pointer-events: none;
}
.confirm-view > * { position: relative; z-index: 1; }
.confirm-circle {
  width: 66px; height: 66px; border-radius: 50%;
  background: rgba(13,159,110,0.12); border: 1.5px solid rgba(13,159,110,0.28);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(13,159,110,0.18);
}
.confirm-view h2 { font-size: 1.45rem; font-weight: 800; color: var(--charcoal); margin-bottom: 6px; letter-spacing: -0.025em; }
.confirm-view > p { color: var(--gray); font-size: 0.88rem; margin-bottom: 24px; font-weight: 500; }
.confirm-summary {
  text-align: left; background: rgba(255,255,255,0.55); border: 1px solid rgba(212,220,228,0.7);
  border-radius: 13px; padding: 16px 20px; margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.sum-row { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid rgba(212,220,228,0.5); font-size: 0.83rem; }
.sum-row:last-child { border-bottom: none; }
.sum-key { font-weight: 700; color: var(--gray); min-width: 130px; flex-shrink: 0; }
.sum-val { color: var(--charcoal); font-weight: 600; }
.btn-new {
  padding: 12px 28px;
  background: rgba(255,255,255,0.65); border: 1.5px solid rgba(212,220,228,0.8);
  color: var(--blue); border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 800;
  cursor: pointer; font-family: inherit; letter-spacing: -0.01em;
  transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
  box-shadow: var(--shadow-sm);
}
.btn-new:hover { background: rgba(255,255,255,0.9); box-shadow: var(--shadow-btn); border-color: var(--blue); }
.btn-new:active { transform: scale(0.98); }
