:root {
  --lp-blue: #28bf83;
  --lp-blue-dark: #0b4f93;
  --lp-green: #24a85a;
  --lp-yellow: #ffcc00;
  --lp-red: #ef3e42;
  --lp-purple: #13834a;

  --lp-ink: #07113a;
  --lp-text: #18264d;
  --lp-muted: #53617f;
  --lp-line: #dbe4f3;
  --lp-white: #ffffff;

  --lp-shadow: 0 22px 55px rgba(8, 28, 68, .08);
  --lp-radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--lp-ink);
  background:
    radial-gradient(circle at 7% 0%, rgba(40, 120, 191, .07), transparent 28%),
    radial-gradient(circle at 95% 20%, rgba(40, 120, 191, .06), transparent 32%),
    linear-gradient(135deg, #fbfdff 0%, #f8fbff 50%, #f2f8ff 100%);
}

.lp-page {
  width: 100%;
  min-height: 100vh;
  padding: 36px 5vw 42px;
}

.lp-topbar {
  max-width: 1420px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.lp-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, #3aa466 0%, #13834e 100%);
  box-shadow: 0 12px 25px rgba(40, 120, 191, .20);
}

.lp-title {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: -.025em;
  color: var(--lp-ink);
}

.lp-subtitle {
  margin-top: 6px;
  color: #46577e;
  font-size: 17px;
  font-weight: 500;
}

.lp-secure-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lp-secure,
.lp-session {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #d5e3f7;
  border-radius: 14px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 10px 28px rgba(40, 120, 191, .05);
  color: #2b3b63;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.lp-secure {
  padding: 0 20px;
  color: #075f54;
  background: rgba(36, 168, 90, .07);
  border-color: rgba(36, 168, 90, .18);
}

.lp-session {
  padding: 0 18px;
}

.lp-copy {
  color: var(--lp-blue);
  font-size: 20px;
}

.lp-wrap {
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 18px;
  align-items: stretch;
}

.lp-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(177, 194, 221, .58);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}

.lp-main {
  padding: 44px 54px 30px;
}

.lp-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 17px;
  color: var(--lp-purple);
  font-size: 17px;
  font-weight: 800;
}

.lp-progress-meta em {
  color: var(--lp-muted);
  font-style: normal;
  font-weight: 600;
}

.lp-progress-track {
  width: 100%;
  height: 12px;
  border-radius: 100px;
  overflow: hidden;
  background: #e4ebf7;
}

.lp-progress-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--lp-blue), var(--lp-purple));
  box-shadow: 0 6px 16px rgba(40, 120, 191, .22);
  transition: width .35s ease;
}

.lp-question {
  padding-top: 58px;
}

.lp-question h1 {
  margin: 0 0 14px;
  max-width: 700px;
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -.045em;
  color: var(--lp-ink);
  font-weight: 850;
}

.lp-helper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.45;
  color: #46577e;
  font-weight: 500;
}

.lp-spark {
  color: #9277ff;
  font-size: 24px;
}

.lp-options {
  display: grid;
  gap: 12px;
}

.lp-option {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
}

.lp-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lp-option-inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 18px;
  padding: 15px 20px;
  border: 1px solid #d9e2f1;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(7, 17, 58, .055);
  color: var(--lp-ink);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.lp-option:hover .lp-option-inner {
  transform: translateY(-1px);
  border-color: rgba(75, 56, 242, .45);
  box-shadow: 0 14px 28px rgba(40, 120, 191, .10);
}

.lp-option input:checked + .lp-option-inner {
  border-color: var(--lp-purple);
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(75, 56, 242, .13);
}

.lp-option-text {
  font-size: 18px;
  line-height: 1.38;
  font-weight: 500;
  letter-spacing: -.015em;
  color: #07113a;
}

.lp-chevron {
  color: #51617f;
  font-size: 43px;
  line-height: 1;
  font-weight: 300;
  transition: transform .18s ease, color .18s ease;
}

.lp-option input:checked + .lp-option-inner .lp-chevron {
  color: var(--lp-purple);
  transform: translateX(3px);
}

.lp-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.lp-back,
.lp-btn {
  min-height: 58px;
  border-radius: 14px;
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.lp-back {
  padding: 0 28px;
  border: 1px solid #d4deed;
  color: #51617f;
  background: #fff;
}

.lp-back:hover {
  border-color: var(--lp-purple);
  color: var(--lp-purple);
}

.lp-btn {
  border: 0;
  color: #fff;
  padding: 0 34px;
  min-width: 190px;
  cursor: pointer;
  background: linear-gradient(135deg, #3aa466, #13834e);
  box-shadow: 0 15px 35px rgba(75, 56, 242, .20);
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}

.lp-btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(75, 56, 242, .26);
}

.lp-btn:disabled {
  cursor: not-allowed;
  opacity: .46;
  filter: saturate(.7);
}

.lp-loading {
  display: none;
  align-items: center;
  gap: 9px;
  color: #53617f;
  font-weight: 700;
  margin-right: auto;
}

.lp-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #d9e4f3;
  border-top-color: var(--lp-purple);
  animation: lpSpin .8s linear infinite;
}

@keyframes lpSpin {
  to {
    transform: rotate(360deg);
  }
}

.lp-side {
  min-height: 100%;
  padding: 42px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lp-bot-visual {
  width: 156px;
  height: 156px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 78px;
  background: linear-gradient(135deg, rgba(75, 56, 242, .10), rgba(40, 120, 191, .08));
}

.lp-side h2 {
  margin: 26px 0 12px;
  font-size: 24px;
  color: var(--lp-purple);
  letter-spacing: -.03em;
  font-weight: 850;
}

.lp-side p {
  max-width: 285px;
  margin: 0 auto;
  color: #46577e;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.lp-feature-list {
  width: 100%;
  margin-top: 38px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(75, 56, 242, .06), rgba(40, 120, 191, .04));
}

.lp-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 4px;
  text-align: left;
  color: #253559;
  font-weight: 600;
}

.lp-feature i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  background: #fff;
  color: var(--lp-purple);
  box-shadow: 0 8px 20px rgba(75, 56, 242, .08);
}

@media (max-width: 1100px) {
  .lp-page {
    padding: 28px 22px;
  }

  .lp-wrap {
    grid-template-columns: 1fr;
  }

  .lp-side {
    min-height: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    text-align: left;
    align-items: center;
    padding: 26px;
  }

  .lp-bot-visual {
    width: 108px;
    height: 108px;
    font-size: 56px;
  }

  .lp-side h2 {
    margin: 0 0 6px;
  }

  .lp-side p {
    max-width: none;
    margin: 0;
  }

  .lp-feature-list {
    display: none;
  }
}

@media (max-width: 760px) {
  .lp-page {
    padding: 22px 18px 34px;
  }

  .lp-topbar {
    margin-bottom: 22px;
    gap: 14px;
    align-items: flex-start;
  }

  .lp-mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    font-size: 24px;
  }

  .lp-title {
    font-size: 22px;
  }

  .lp-subtitle {
    font-size: 17px;
  }

  .lp-secure-row {
    margin-left: auto;
  }

  .lp-session {
    display: none;
  }

  .lp-secure {
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 15px;
    font-size: 0;
  }

  .lp-secure span {
    font-size: 20px;
  }

  .lp-secure strong {
    display: none;
  }

  .lp-main {
    padding: 30px 20px 24px;
    border-radius: 21px;
  }

  .lp-progress-meta {
    font-size: 16px;
    margin-bottom: 13px;
  }

  .lp-progress-track {
    height: 10px;
  }

  .lp-question {
    padding-top: 46px;
  }

  .lp-question h1 {
    font-size: 32px;
    line-height: 1.18;
  }

  .lp-helper {
    font-size: 17px;
    align-items: flex-start;
  }

  .lp-options {
    gap: 12px;
  }

  .lp-option-inner {
    min-height: 116px;
    grid-template-columns: minmax(0, 1fr) 24px;
    padding: 16px 18px;
    border-radius: 16px;
    gap: 16px;
  }

  .lp-option-text {
    font-size: 21px;
    line-height: 1.35;
    font-weight: 500;
  }

  .lp-chevron {
    font-size: 40px;
  }

  .lp-actions {
    margin-top: 28px;
  }

  .lp-back,
  .lp-btn {
    min-height: 64px;
    font-size: 20px;
    border-radius: 15px;
  }

  .lp-back {
    padding: 0 25px;
  }

  .lp-btn {
    min-width: 0;
    padding: 0 30px;
  }

  .lp-loading {
    display: none !important;
  }

  .lp-side {
    margin-top: 14px;
    grid-template-columns: 108px 1fr;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(75, 56, 242, .06), rgba(40, 120, 191, .04));
    box-shadow: none;
  }
}

@media (max-width: 460px) {
  .lp-page {
    padding: 18px 12px 28px;
  }

  .lp-topbar {
    align-items: center;
  }

  .lp-brand {
    gap: 12px;
  }

  .lp-mark {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    font-size: 22px;
  }

  .lp-title {
    font-size: 19px;
  }

  .lp-subtitle {
    font-size: 14px;
    line-height: 1.25;
  }

  .lp-main {
    padding: 25px 15px 20px;
  }

  .lp-progress-meta {
    font-size: 14px;
  }

  .lp-question {
    padding-top: 36px;
  }

  .lp-question h1 {
    font-size: 26px;
  }

  .lp-helper {
    font-size: 15px;
  }

  .lp-option-inner {
    min-height: 96px;
    grid-template-columns: minmax(0, 1fr) 18px;
    gap: 12px;
    padding: 13px 12px;
  }

  .lp-option-text {
    font-size: 17px;
    line-height: 1.45;
    font-weight: 500;
  }

  .lp-actions {
    gap: 12px;
  }

  .lp-back,
  .lp-btn {
    min-height: 56px;
    font-size: 17px;
  }

  .lp-back {
    padding: 0 18px;
  }

  .lp-btn {
    padding: 0 22px;
  }

  .lp-side {
    grid-template-columns: 78px 1fr;
    padding: 18px;
  }

  .lp-bot-visual {
    width: 78px;
    height: 78px;
    font-size: 40px;
  }

  .lp-side h2 {
    font-size: 18px;
  }

  .lp-side p {
    font-size: 14px;
    line-height: 1.45;
  }
}

/* ================================
   INDEX / LANDING PAGE
================================ */

.advisor-home {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(40, 120, 191, .14) 0, rgba(238, 243, 255, .95) 34%, rgba(248, 250, 252, 1) 100%);
}

.home-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: .65;
  pointer-events: none;
}

.home-orb-one {
  width: 260px;
  height: 260px;
  background: rgba(40, 120, 191, .18);
  top: -80px;
  left: -70px;
}

.home-orb-two {
  width: 320px;
  height: 320px;
  background: rgba(36, 168, 90, .14);
  right: -100px;
  bottom: -110px;
}

.home-card {
  width: min(980px, 100%);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(219, 228, 243, .95);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .14);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
}

.home-hero {
  padding: 52px;
}

.home-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(40, 120, 191, .08);
  color: #0b4f93;
  border: 1px solid rgba(40, 120, 191, .22);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 13px;
}

.home-badge span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #24a85a;
  box-shadow: 0 0 0 5px rgba(36, 168, 90, .14);
}

.home-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: .96;
  letter-spacing: -.06em;
  margin: 22px 0 18px;
  color: #07113a;
}

.home-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
  max-width: 620px;
  margin: 0;
}

.home-error {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(239, 62, 66, .08);
  border: 1px solid rgba(239, 62, 66, .18);
  color: #b91c1c;
  font-weight: 700;
}

.home-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.home-btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2878bf, #24a85a);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(40, 120, 191, .24);
  transition: .2s;
}

.home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(40, 120, 191, .30);
}

.home-ghost {
  color: #475569;
  text-decoration: none;
  font-weight: 700;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.home-stat {
  background: #fff;
  border: 1px solid #dbe5f7;
  border-radius: 18px;
  padding: 16px;
}

.home-stat b {
  display: block;
  font-size: 22px;
  color: #07113a;
}

.home-stat small {
  color: #64748b;
  font-weight: 700;
}

.home-side {
  padding: 28px;
  background: linear-gradient(160deg, #07113a, #0b4f93);
  color: #fff;
  display: flex;
  align-items: center;
}

.home-phone {
  width: 100%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  padding: 18px;
}

.home-phone-top {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: 15px;
}

.home-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2878bf, #24a85a);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
}

.home-name strong {
  display: block;
}

.home-name span {
  font-size: 13px;
  color: #bfdbfe;
}

.home-bubble {
  background: #fff;
  color: #0f172a;
  border-radius: 18px 18px 18px 5px;
  padding: 13px 14px;
  margin: 18px 0;
  width: 90%;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .16);
}

.home-option {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  padding: 12px;
  margin: 10px 0;
  font-weight: 700;
}

.home-mini-progress {
  height: 9px;
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 18px;
}

.home-mini-progress div {
  height: 100%;
  width: 36%;
  background: linear-gradient(90deg, #2878bf, #24a85a, #ffcc00);
  border-radius: 999px;
}

/* ================================
   LEAD MODAL
================================ */

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.lead-modal.is-open {
  display: flex;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 58, .48);
  backdrop-filter: blur(8px);
}

.lead-modal-panel {
  width: min(460px, 100%);
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 30px 90px rgba(7, 17, 58, .28);
  animation: leadModalIn .22s ease;
}

@keyframes leadModalIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lead-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  font-size: 24px;
  cursor: pointer;
}

.lead-modal-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.lead-modal-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #2878bf, #24a85a);
}

.lead-modal-head h2 {
  margin: 0;
  font-size: 24px;
  color: #07113a;
}

.lead-modal-head p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 14px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label span {
  color: #18264d;
  font-weight: 800;
  font-size: 14px;
}

.lead-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #dbe5f7;
  border-radius: 14px;
  padding: 0 15px;
  font: inherit;
  color: #07113a;
  outline: none;
}

.lead-form input:focus {
  border-color: #2878bf;
  box-shadow: 0 0 0 4px rgba(40, 120, 191, .11);
}

.lead-submit {
  margin-top: 8px;
  min-height: 54px;
  border: 0;
  border-radius: 15px;
  cursor: pointer;
  background: linear-gradient(135deg, #2878bf, #24a85a);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(40, 120, 191, .22);
}

@media (max-width: 840px) {
  .home-card {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding: 34px 22px;
  }

  .home-side {
    padding: 22px;
  }

  .home-stats {
    grid-template-columns: 1fr;
  }

  .home-lead {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .advisor-home {
    padding: 18px 12px;
  }

  .home-card {
    border-radius: 22px;
  }

  .home-hero h1 {
    font-size: 40px;
  }

  .home-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .home-btn,
  .home-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .lead-modal-panel {
    padding: 22px;
    border-radius: 20px;
  }
}

/* ================================
   DETAILS PAGE
================================ */

.details-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 14px;
  background:
    radial-gradient(circle at top, rgba(40,120,191,.13) 0, #f8fafc 44%, rgba(36,168,90,.08) 100%);
}

.details-card {
  width: min(960px, 100%);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(219,228,243,.9);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(15,23,42,.13);
  overflow: hidden;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
}

.details-side {
  background: linear-gradient(145deg, #07113a, #0b4f93);
  color: #fff;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.details-badge {
  display: inline-flex;
  width: max-content;
  gap: 8px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
}

.details-badge span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #24a85a;
}

.details-side h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 22px 0 14px;
}

.details-side p {
  color: #cbd5e1;
  line-height: 1.7;
}

.details-steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.details-step {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 14px;
  font-weight: 800;
}

.details-form-wrap {
  padding: 36px;
}

.details-discount {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(36,168,90,.12), rgba(255,204,0,.14));
  border: 1px solid rgba(36,168,90,.22);
  color: #075f34;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
}

.details-discount strong {
  color: #07833f;
  font-weight: 950;
}

.details-error {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #9f1239;
  padding: 14px;
  border-radius: 16px;
  margin-bottom: 18px;
}

.details-error strong {
  display: block;
  margin-bottom: 4px;
}

.details-error ul {
  margin: .35rem 0 0 1rem;
  padding: 0;
}

.details-grid {
  display: grid;
  gap: 14px;
}

.details-three {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}

.details-field label {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: #334155;
  margin: 0 0 7px;
}

.details-field input,
.details-field select {
  width: 100%;
  border: 1px solid #dbe5f7;
  background: #fff;
  border-radius: 15px;
  padding: 14px;
  font: inherit;
  color: #0f172a;
  outline: none;
  transition: .18s;
}

.details-field input:focus,
.details-field select:focus {
  border-color: #24a85a;
  box-shadow: 0 0 0 4px rgba(36,168,90,.13);
}

.details-btn {
  width: 100%;
  margin-top: 18px;
  appearance: none;
  border: 0;
  border-radius: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #0f8f47, #24a85a, #61c96f);
  color: #fff;
  font-weight: 950;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(36,168,90,.24);
  transition: .18s;
}

.details-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(36,168,90,.30);
}

.details-fine {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-top: 12px;
}

@media (max-width: 840px) {
  .details-card {
    grid-template-columns: 1fr;
  }

  .details-side {
    display: none;
  }

  .details-form-wrap {
    padding: 26px 18px;
  }

  .details-three {
    grid-template-columns: 1fr;
  }

  .details-discount {
    font-size: 16px;
  }
}