:root {
  --page-width: 430px;
  --page-width-tablet: 560px;
  --page-width-desktop: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #eef5fc;
}

a {
  color: inherit;
}

.lp-shell {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 28px rgba(0, 34, 84, 0.14);
}

/* Desktop browsers: keep the SP image-based layout but widen the column so
   the LP doesn't look like a thin mobile mockup floating on a huge canvas. */
@media (min-width: 600px) {
  .lp-shell { width: min(100%, var(--page-width-tablet)); }
}
@media (min-width: 900px) {
  .lp-shell { width: min(100%, var(--page-width-desktop)); }
  body { background: #dde7f4; padding: 24px 0; }
  .lp-shell { border-radius: 18px; overflow: hidden; }
}

.image-section {
  position: relative;
  width: 100%;
  margin: 0;
  background: #fff;
}

.image-section img {
  display: block;
  width: 100%;
  height: auto;
}

.hotspot {
  position: absolute;
  display: block;
  appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 999px;
}

.hotspot:focus-visible,
.field:focus-visible {
  outline: 2px solid rgba(0, 95, 206, 0.9);
  outline-offset: 2px;
}

.hotspot-primary {
  left: 10.5%;
  top: 88.2%;
  width: 47%;
  height: 5.4%;
}

.hotspot-secondary {
  left: 61%;
  top: 88.2%;
  width: 32%;
  height: 5.4%;
}

.hotspot-wide {
  left: 17%;
  top: 87.6%;
  width: 66%;
  height: 5.5%;
}

.hotspot-small-left {
  left: 8%;
  top: 88%;
  width: 41%;
  height: 5.6%;
}

.hotspot-small-right {
  left: 53%;
  top: 88%;
  width: 39%;
  height: 5.6%;
}

.hotspot-card-10,
.hotspot-card-20,
.hotspot-card-220,
.hotspot-card-1000 {
  top: 18%;
  width: 20%;
  height: 37%;
  border-radius: 12px;
}

.hotspot-card-10 {
  left: 5%;
}

.hotspot-card-20 {
  left: 28%;
}

.hotspot-card-220 {
  left: 51%;
}

.hotspot-card-1000 {
  left: 74%;
}

.mobile-lead-form {
  position: absolute;
  inset: 0;
  margin: 0;
}

.field {
  position: absolute;
  left: 18.85%;
  width: 28.65%;
  height: 2.72%;
  padding: 0 10px;
  appearance: none;
  -webkit-appearance: none;
  color: #061b3a;
  font-size: clamp(9px, 2.2vw, 13px);
  font-weight: 700;
  line-height: 1;
  background: transparent;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  caret-color: #061b3a;
}

.field-cycle:invalid {
  color: transparent;
}

.field-cycle option {
  color: #061b3a;
}

.field-company {
  top: 44.1%;
}

.field-name {
  top: 48.1%;
}

.field-postal {
  top: 52.0%;
}

.field-address {
  top: 55.9%;
}

.field-phone {
  top: 59.85%;
}

.field-cycle {
  top: 63.9%;
}

.submit-hotspot {
  left: 4.1%;
  top: 85.25%;
  width: 43.2%;
  height: 6.4%;
}

.form-status {
  position: absolute;
  left: 5%;
  top: 92.4%;
  width: 42%;
  min-height: 18px;
  margin: 0;
  color: #003f96;
  font-size: clamp(8px, 2vw, 11px);
  font-weight: 800;
  text-align: center;
}

.form-status[data-type="error"] {
  color: #b42334;
}

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

@media (min-width: 760px) {
  :root {
    --page-width: 520px;
  }
}

.ab-popup[hidden] {
  display: none;
}

.ab-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.ab-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 44, 0.72);
  backdrop-filter: blur(2px);
  animation: ab-popup-fade 0.25s ease;
}

.ab-popup-dialog {
  position: relative;
  width: min(360px, 90vw);
  max-height: calc(100dvh - 36px);
  animation: ab-popup-pop 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-popup-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 36px);
  object-fit: contain;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 24px 80px rgba(6, 23, 47, 0.55);
  -webkit-tap-highlight-color: transparent;
}

.ab-popup-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #0b1a2e;
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(6, 23, 47, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}

body.ab-popup-open {
  overflow: hidden;
}

@keyframes ab-popup-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes ab-popup-pop {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


/* --- Chatbot launcher --- */
.chatbot-launcher {
  position: fixed;
  right: 16px;
  bottom: 84px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #1e90ff, #0b4dcb);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(11, 77, 203, 0.4);
  cursor: pointer;
  z-index: 9000;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-launcher.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.chatbot-launcher:hover { transform: translateY(-2px) scale(1.05); outline: none; }
.chatbot-launcher::after {
  content: "";
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: #16c784;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: chatbot-pulse 1.8s infinite ease-in-out;
}
@keyframes chatbot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

/* --- Chatbot window --- */
.chatbot-modal[hidden] { display: none; }
.chatbot-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0;
}
.chatbot-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 49, 0.45);
  backdrop-filter: blur(1px);
}
.chatbot-window {
  position: relative;
  width: 100%;
  height: 100dvh;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: chatbot-slide-up 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes chatbot-slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.chatbot-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #0b4dcb, #0b79e8);
  color: #fff;
}
.chatbot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.chatbot-who {
  flex: 1;
  line-height: 1.2;
}
.chatbot-who strong { display: block; font-size: 14px; }
.chatbot-who small { display: flex; align-items: center; gap: 6px; font-size: 11px; opacity: 0.85; }
.chatbot-online {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #63e2ad;
  box-shadow: 0 0 0 3px rgba(99, 226, 173, 0.3);
}
.chatbot-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.chatbot-close:hover { background: rgba(255, 255, 255, 0.32); }

.chatbot-stream {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 14px 12px 8px;
  background: #eef4fb;
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-overflow-scrolling: touch;
}

.msg { display: flex; gap: 8px; max-width: 92%; animation: msg-in 0.2s ease; }
@keyframes msg-in {
  from { transform: translateY(6px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.msg-bot { align-self: flex-start; }
.msg-user { align-self: flex-end; flex-direction: row-reverse; }
.msg-system { align-self: center; color: #5b6d88; font-size: 11px; }

.msg-avatar {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e90ff, #0b4dcb);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 11px;
}

.msg-body { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.msg-user .msg-body { align-items: flex-end; }

.msg-bubble {
  padding: 10px 14px;
  border-radius: 18px;
  background: #ffffff;
  font-size: 14px;
  line-height: 1.55;
  color: #0b1a2e;
  box-shadow: 0 2px 8px rgba(11, 26, 46, 0.06);
  max-width: 100%;
  word-break: break-word;
  white-space: normal;
}
.msg-bot .msg-bubble { border-top-left-radius: 4px; }
.msg-user .msg-bubble {
  background: linear-gradient(135deg, #1e90ff, #0b4dcb);
  color: #fff;
  border-top-right-radius: 4px;
}

.msg-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(11, 26, 46, 0.06);
}
.msg-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #8ea0bb;
  animation: typing 1.2s infinite ease-in-out;
}
.msg-typing span:nth-child(2) { animation-delay: 0.15s; }
.msg-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.3; }
  40% { transform: translateY(-4px); opacity: 1; }
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.chat-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid #c5d4ec;
  background: #ffffff;
  color: #0b4dcb;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s, transform 0.08s;
}
.chat-chip:hover:not(:disabled) { background: #f2f7ff; border-color: #0b4dcb; }
.chat-chip:active:not(:disabled) { transform: scale(0.96); }
.chat-chip.is-selected {
  background: #dbe8ff;
  border-color: #0b4dcb;
  color: #063a9f;
}
.chat-chip-primary {
  background: linear-gradient(135deg, #16a66d, #129a5e);
  border-color: transparent;
  color: #fff;
}
.chat-chip-primary:hover:not(:disabled) { filter: brightness(1.06); }
.chat-chip:disabled { opacity: 0.45; cursor: not-allowed; }

.chat-inline-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(11, 26, 46, 0.06);
  margin-top: 2px;
}
.chat-field { display: flex; flex-direction: column; gap: 3px; }
.chat-field span { font-size: 11px; color: #5b6d88; font-weight: 600; }
.chat-field em { font-style: normal; color: #d3453d; margin-left: 4px; font-size: 10px; }
.chat-field input {
  padding: 8px 10px;
  border: 1.5px solid #c5d4ec;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  color: #0b1a2e;
}
.chat-field input:focus { outline: none; border-color: #0b4dcb; box-shadow: 0 0 0 3px rgba(11, 77, 203, 0.14); }
.chat-field input:disabled { background: #f5f6f8; color: #7b8a9e; }

.chat-summary {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(11, 26, 46, 0.06);
  margin-top: 2px;
}
.chat-summary dl { margin: 0; display: grid; gap: 6px; }
.chat-summary dl > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  font-size: 12px;
  gap: 8px;
}
.chat-summary dt { color: #5b6d88; font-weight: 600; }
.chat-summary dd { margin: 0; color: #0b1a2e; font-weight: 600; word-break: break-word; }

.chatbot-error-flash {
  align-self: center;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(211, 69, 61, 0.12);
  color: #a82019;
  font-size: 12px;
  font-weight: 700;
  animation: msg-in 0.2s ease;
}

.chatbot-input {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  padding: 10px 12px max(12px, env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid #e3eaf6;
}
.chatbot-input input {
  flex: 1;
  padding: 12px 14px;
  border: 1.5px solid #dde5f1;
  border-radius: 999px;
  font-size: 14px;
  background: #f6f8fd;
  color: #0b1a2e;
}
.chatbot-input input:focus { outline: none; border-color: #0b4dcb; background: #fff; box-shadow: 0 0 0 3px rgba(11, 77, 203, 0.14); }
.chatbot-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #1e90ff, #0b4dcb);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.chatbot-send:hover { filter: brightness(1.08); }

body.chatbot-open { overflow: hidden; }

@media (min-width: 720px) {
  .chatbot-modal { padding: 20px; align-items: flex-end; justify-content: flex-end; }
  .chatbot-window {
    width: 420px;
    height: min(680px, calc(100vh - 40px));
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(8, 24, 49, 0.3);
    border: 1px solid #dde5f1;
  }
  .chatbot-backdrop { background: rgba(8, 24, 49, 0.2); }
}

/* --- Consent card --- */
.consent-card {
  background: #ffffff;
  border: 1px solid #dde5f1;
  border-radius: 16px;
  padding: 16px 14px 14px;
  box-shadow: 0 4px 14px rgba(11, 26, 46, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
  width: 100%;
}
.consent-steps {
  display: flex;
  gap: 4px;
  font-size: 10px;
  color: #5b6d88;
  font-weight: 700;
  border-bottom: 1px solid #e3eaf6;
  padding-bottom: 8px;
}
.consent-step {
  flex: 1;
  padding: 4px 6px;
  text-align: center;
  border-radius: 6px;
  background: #f0f4fb;
}
.consent-step.is-active { background: #0b4dcb; color: #fff; }
.consent-step.is-done { background: #def5ea; color: #12a460; }
.consent-title {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 800;
  color: #0b1a2e;
}
.consent-lead {
  margin: 0;
  font-size: 11px;
  color: #d3453d;
  font-weight: 700;
  padding: 6px 10px;
  background: #fde5e3;
  border-radius: 6px;
}
.consent-body {
  max-height: 260px;
  overflow-y: auto;
  padding: 8px 10px;
  background: #f8fbff;
  border: 1px solid #e3eaf6;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-overflow-scrolling: touch;
}
.consent-section h4 {
  margin: 0 0 4px;
  font-size: 12px;
  color: #0b4dcb;
  font-weight: 800;
}
.consent-section p {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.65;
  color: #3c4a66;
}
.consent-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1.5px solid #dde5f1;
  border-radius: 10px;
  background: #fff;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}
.consent-check input {
  width: 18px;
  height: 18px;
  accent-color: #0b4dcb;
}
.consent-card.is-agreed .consent-check {
  border-color: #16a66d;
  background: #def5ea;
  color: #0b6a45;
}
.consent-actions {
  display: flex;
  gap: 8px;
}
.consent-actions .chat-chip {
  flex: 1;
  justify-content: center;
  padding: 10px 10px;
  font-size: 12.5px;
}
.consent-foot {
  margin: 0;
  font-size: 10px;
  color: #5b6d88;
  text-align: center;
}

/* --- Apply form (SP, new proper form) --- */
.apply-section {
  padding: 32px 20px 40px;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  border-top: 4px solid #0b4dcb;
}
.apply-header {
  text-align: center;
  margin-bottom: 22px;
}
.apply-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: #0b4dcb;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 999px;
  margin: 0 0 10px;
}
.apply-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  color: #0b1a2e;
}
.apply-note {
  margin: 0;
  font-size: 13px;
  color: #5b6d88;
  line-height: 1.7;
}
.apply-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid #dde5f1;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(11, 26, 46, 0.08);
}
.apply-field { display: flex; flex-direction: column; gap: 6px; }
.apply-field span {
  font-size: 13px;
  font-weight: 700;
  color: #0b1a2e;
}
.apply-field em {
  font-style: normal;
  color: #d3453d;
  font-size: 11px;
  margin-left: 6px;
  font-weight: 700;
}
.apply-field input,
.apply-field select,
.apply-field textarea {
  padding: 13px 14px;
  border: 1.5px solid #d5dff2;
  border-radius: 10px;
  font-size: 16px;
  background: #fff;
  color: #0b1a2e;
  min-height: 52px;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.apply-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%230b4dcb' stroke-width='2' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.apply-field textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.5;
}
.apply-field input:focus,
.apply-field select:focus,
.apply-field textarea:focus {
  outline: none;
  border-color: #0b4dcb;
  box-shadow: 0 0 0 3px rgba(11, 77, 203, 0.16);
}
.apply-hint {
  font-size: 11px;
  color: #5b6d88;
  font-weight: 500;
}
.apply-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  border: 1.5px solid #dde5f1;
  border-radius: 10px;
  background: #f8fbff;
  font-size: 12.5px;
  color: #0b1a2e;
  line-height: 1.55;
  cursor: pointer;
}
.apply-consent input {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: #0b4dcb;
  flex-shrink: 0;
}
.apply-consent a {
  color: #0b4dcb;
  font-weight: 700;
  text-decoration: underline;
}
.apply-submit {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #16a66d, #0f8a55);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(18, 164, 96, 0.28);
  min-height: 58px;
  letter-spacing: 0.04em;
}
.apply-submit:hover { filter: brightness(1.05); }
.apply-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.apply-status {
  margin: 4px 0 0;
  text-align: center;
  font-size: 13px;
  color: #5b6d88;
  min-height: 20px;
}
.apply-status[data-type="error"] { color: #d3453d; }

.apply-footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 24px 16px 40px;
  background: #f4f7fc;
  font-size: 12px;
}
.apply-footer-links a {
  color: #5b6d88;
  text-decoration: underline;
  font-weight: 600;
}

/* ===== Confirmation modal ===== */
body.apply-confirm-open { overflow: hidden; }
.apply-confirm-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.apply-confirm-backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 26, 46, 0.62);
  backdrop-filter: blur(2px);
}
.apply-confirm-dialog {
  position: relative;
  width: min(540px, 100%);
  max-height: calc(100dvh - 36px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 24, 64, 0.32);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.apply-confirm-header {
  padding: 18px 20px 4px;
  border-bottom: 1px solid #e6ecf5;
}
.apply-confirm-header h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  color: #0b1a2e;
}
.apply-confirm-header p {
  margin: 0 0 14px;
  font-size: 12.5px;
  color: #5b6d88;
}
.apply-confirm-list {
  margin: 0;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px 12px;
  font-size: 13.5px;
  color: #0b1a2e;
  overflow-y: auto;
}
.apply-confirm-list dt {
  font-weight: 700;
  color: #34495e;
}
.apply-confirm-list dd {
  margin: 0;
  word-break: break-all;
}
.apply-confirm-note {
  padding: 10px 20px;
  font-size: 11.5px;
  color: #5b6d88;
  background: #f4f7fc;
  border-top: 1px solid #e6ecf5;
  line-height: 1.6;
}
.apply-confirm-status {
  margin: 0;
  padding: 4px 20px 10px;
  font-size: 12px;
}
.apply-confirm-status.error { color: #d3453d; }
.apply-confirm-buttons {
  display: flex;
  gap: 10px;
  padding: 12px 20px 18px;
  border-top: 1px solid #e6ecf5;
}
.apply-confirm-edit,
.apply-confirm-submit {
  flex: 1;
  border: 0;
  border-radius: 10px;
  padding: 14px 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.apply-confirm-edit {
  background: #f0f4fb;
  color: #0b4dcb;
  border: 1.5px solid #c8d3e6;
}
.apply-confirm-submit {
  background: #0b4dcb;
  color: #fff;
}
.apply-confirm-submit:disabled,
.apply-confirm-edit:disabled { opacity: .55; cursor: not-allowed; }

@media (max-width: 480px) {
  .apply-confirm-list {
    grid-template-columns: 90px 1fr;
    font-size: 13px;
  }
}
