:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.12);
  --card: rgba(255, 255, 255, 0.9);
  --primary: #00b7ff;
  --primary-hover: #009fdf;
  --primary-ink: #ffffff;
  --secondary: rgba(2, 132, 199, 0.08);
  --shadow: 0 20px 50px rgba(2, 8, 23, 0.08);
  --radius: 20px;
}

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

[hidden] {
  display: none !important;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

svg {
  display: block;
}

.btn svg,
.icon-btn svg,
.back svg,
.secure svg {
  flex-shrink: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header__inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.brand__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0, 183, 255, 0.25);
}

.brand__icon--lg {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.brand__text {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 20px;
}

.brand__text--footer {
  color: #ffffff;
  font-size: 22px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 160ms ease;
}

.nav__link:hover {
  color: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  border: 2px solid transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease,
    border-color 160ms ease, color 160ms ease;
  user-select: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-ink);
  box-shadow: 0 16px 40px rgba(0, 183, 255, 0.22);
}

.btn--primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 22px 52px rgba(0, 183, 255, 0.25);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  border-color: rgba(0, 183, 255, 0.35);
  color: var(--primary);
}

.btn--outline:hover {
  background: rgba(0, 183, 255, 0.08);
  border-color: rgba(0, 183, 255, 0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--muted);
}

.btn--ghost:hover {
  background: rgba(15, 23, 42, 0.05);
  color: var(--text);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--text);
  cursor: pointer;
}

.icon-btn:hover {
  background: rgba(15, 23, 42, 0.06);
}

.nav--mobile {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: 20px 0 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.nav__link--mobile {
  font-size: 16px;
  padding: 8px 8px;
}

.nav__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
}

.app {
  padding-top: 80px;
}

.section {
  padding: 80px 0;
}

.section--soft {
  background: rgba(2, 132, 199, 0.06);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: radial-gradient(
      1200px 700px at 70% 55%,
      rgba(0, 183, 255, 0.11),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(0, 183, 255, 0.08), #ffffff 60%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding: 92px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 183, 255, 0.12);
  color: var(--primary-hover);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0, 183, 255, 0.18);
  color: var(--primary);
  flex: 0 0 auto;
}

.h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 74px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.h1 .accent {
  color: var(--primary);
}

.lead {
  margin: 14px 0 0;
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}

.bullet {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  color: var(--muted);
}

.bullet strong {
  color: var(--text);
}

.check {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.14);
  color: #059669;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__media {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.phone {
  width: min(380px, 100%);
  border-radius: 44px;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 42px 90px rgba(2, 8, 23, 0.22);
  background: #ffffff;
}

.phone img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 800ms ease;
}

.phone:hover img {
  transform: scale(1.08);
}

.hero__glow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 140%;
  height: 140%;
  border-radius: 999px;
  background: rgba(0, 183, 255, 0.08);
  filter: blur(60px);
  z-index: -1;
}

.floating {
  position: absolute;
  right: 48px;
  bottom: -18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 183, 255, 0.18);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 28px 60px rgba(2, 8, 23, 0.18);
}

.floating__icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(0, 183, 255, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
}

.floating__kicker {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--primary-hover);
}

.floating__title {
  margin-top: 2px;
  font-weight: 800;
  color: var(--text);
}

.kicker {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.h2 {
  font-size: clamp(28px, 3vw, 44px);
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.subtitle {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 70ch;
}

.center {
  text-align: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: 0 10px 40px rgba(2, 8, 23, 0.04);
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 183, 255, 0.28);
  box-shadow: 0 18px 54px rgba(2, 8, 23, 0.08);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 22px;
  background: rgba(0, 183, 255, 0.12);
  display: grid;
  place-items: center;
  color: var(--primary);
  margin-bottom: 18px;
  transition: background 200ms ease, color 200ms ease;
}

.card:hover .card__icon {
  background: var(--primary);
  color: #ffffff;
}

.card__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
}

.card__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.steps {
  max-width: 980px;
  margin: 48px auto 0;
  position: relative;
}

.steps__line {
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0, 183, 255, 0.18),
    rgba(0, 183, 255, 0.55),
    rgba(0, 183, 255, 0.18)
  );
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.step {
  text-align: center;
  position: relative;
}

.step__bubble {
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 4px solid rgba(0, 183, 255, 0.18);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  box-shadow: 0 18px 44px rgba(2, 8, 23, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.step__inner {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: rgba(0, 183, 255, 0.12);
  display: grid;
  place-items: center;
  color: var(--primary);
}

.step__num {
  position: absolute;
  right: calc(50% - 56px);
  top: -8px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(0, 183, 255, 0.22);
  transition: transform 180ms ease;
}

.step:hover .step__bubble {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(0, 183, 255, 0.34);
}

.step:hover .step__num {
  transform: translateY(-2px);
}

.step__title {
  margin: 8px 0 8px;
  font-size: 20px;
  font-weight: 900;
  transition: color 180ms ease;
}

.step:hover .step__title {
  color: var(--primary);
}

.step__desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.reviews {
  max-width: 980px;
  margin: 44px auto 0;
  position: relative;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.dot {
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
  width: 10px;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.dot--active {
  width: 34px;
  background: rgba(15, 23, 42, 0.85);
}

.carousel {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform 500ms ease;
}

.review-card {
  flex: 0 0 100%;
  padding: 0 18px;
}

.review-card .card {
  border-radius: 34px;
  padding: 42px 34px;
  text-align: center;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #facc15;
}

.quote {
  margin: 22px auto 0;
  color: #475569;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  max-width: 70ch;
  font-style: italic;
  font-weight: 600;
}

.reviewer {
  margin-top: 24px;
  display: grid;
  place-items: center;
  gap: 6px;
}

.reviewer strong {
  font-size: 20px;
}

.reviewer span {
  color: var(--muted);
  font-size: 14px;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-35%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(2, 8, 23, 0.08);
  cursor: pointer;
  z-index: 3;
}

.carousel__btn:hover {
  background: rgba(15, 23, 42, 0.04);
}

.carousel__btn--prev {
  left: 0;
}

.carousel__btn--next {
  right: 0;
}

.faq {
  max-width: 860px;
  margin: 44px auto 0;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(2, 8, 23, 0.04);
  overflow: hidden;
  transition: box-shadow 180ms ease, background 180ms ease;
}

.faq-item[open] {
  box-shadow: 0 14px 40px rgba(2, 8, 23, 0.08);
}

.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-a {
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  background: #0b1120;
  color: rgba(226, 232, 240, 0.86);
  padding: 80px 0 44px;
  position: relative;
  overflow: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.footer__desc {
  margin: 18px 0 0;
  color: rgba(148, 163, 184, 0.9);
  line-height: 1.7;
  max-width: 46ch;
}

.footer__title {
  margin: 0 0 16px;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 12px;
  text-transform: uppercase;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.78);
}

.footer__nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__nav a svg {
  opacity: 0.9;
}

.footer__nav a:hover {
  color: var(--primary);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: rgba(226, 232, 240, 0.92);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.social:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-1px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright {
  margin: 0;
  color: rgba(148, 163, 184, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.footer__badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.9);
}

.mini-card {
  width: 34px;
  height: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(226, 232, 240, 0.92);
  font-size: 13px;
}

.scroll-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  background: var(--primary);
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 0 20px rgba(0, 183, 255, 0.4);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
  opacity: 0;
  pointer-events: none;
  z-index: 55;
}

.scroll-top:hover {
  background: var(--primary-hover);
  transform: scale(1.06);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.page {
  padding: 52px 0 90px;
  background: #f8fafc;
  min-height: calc(100vh - 80px);
}

.page__container {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 44px;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.back:hover {
  color: var(--primary);
}

.page__title {
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #0f172a;
}

.secure {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: #94a3b8;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
}

.progress {
  width: 200px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.progress > div {
  height: 100%;
  width: 0%;
  background: var(--primary);
  transition: width 500ms ease;
}

.form-card {
  margin-top: 26px;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(2, 8, 23, 0.06);
  padding: 28px;
}

.stepper {
  margin-top: 32px;
}

.stepper__track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  --stepper-inset: 44px;
  --stepper-top: 20px;
  padding: 0 10px;
  margin-bottom: 44px;
}

.stepper__track::before {
  content: "";
  position: absolute;
  top: var(--stepper-top);
  left: var(--stepper-inset);
  right: var(--stepper-inset);
  height: 2px;
  background: rgba(15, 23, 42, 0.08);
  z-index: 0;
}

.stepper__bar {
  content: "";
  position: absolute;
  top: var(--stepper-top);
  left: var(--stepper-inset);
  right: var(--stepper-inset);
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms ease;
  z-index: 0;
}

.stepper__item {
  position: relative;
  display: grid;
  place-items: center;
  z-index: 1;
}

.stepper__dot {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid rgba(15, 23, 42, 0.16);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.35);
  transition: all 200ms ease;
}

.stepper__dot.is-active {
  border: 4px solid var(--primary);
  color: var(--primary);
  transform: scale(1.08);
  box-shadow: 0 18px 30px rgba(0, 183, 255, 0.12);
}

.stepper__dot.is-done {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.stepper__label {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  text-align: center;
  white-space: normal;
  line-height: 1.15;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(100, 116, 139, 0.7);
}

.stepper__label.is-active {
  color: var(--primary);
  opacity: 1;
}

.fieldset {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.step-head {
  display: grid;
  gap: 6px;
  text-align: left;
  margin-top: 6px;
}

.step-head.center {
  text-align: center;
}

.step-title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.step-subtitle {
  margin: 0;
  color: rgba(100, 116, 139, 0.92);
  font-weight: 700;
  font-size: 14px;
}

.choice-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  margin-top: 14px;
}

.choice-card {
  display: grid;
  grid-template-columns: 44px 1fr 26px;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 2px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 26px rgba(2, 8, 23, 0.04);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 183, 255, 0.35);
  box-shadow: 0 16px 34px rgba(2, 8, 23, 0.06);
}

.choice-card.is-selected {
  border-color: rgba(0, 183, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(0, 183, 255, 0.14);
}

.choice-card__left {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: rgba(15, 23, 42, 0.6);
  background: rgba(2, 132, 199, 0.08);
}

.choice-card__label {
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.choice-card__radio {
  display: grid;
  place-items: center;
}

.choice-card__radio {
  position: relative;
}

.choice-card__ring {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 0.14);
  background: #ffffff;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.choice-card__check {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  color: #ffffff;
  transition: opacity 160ms ease;
}

.choice-card.is-selected .choice-card__ring {
  border-color: rgba(0, 183, 255, 0.95);
  background: rgba(0, 183, 255, 0.95);
  box-shadow: none;
}

.choice-card.is-selected .choice-card__check {
  opacity: 1;
}

.segmented {
  display: inline-flex;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.8);
}

.seg-btn {
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  font-weight: 900;
  color: rgba(100, 116, 139, 0.95);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.seg-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 183, 255, 0.3);
}

.seg-btn.is-active {
  background: rgba(0, 183, 255, 0.18);
  border-color: rgba(0, 183, 255, 0.75);
  color: rgba(2, 132, 199, 1);
  box-shadow: 0 12px 22px rgba(2, 8, 23, 0.06);
}

.prompt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(2, 132, 199, 0.9);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  justify-content: center;
}

.prompt__icon {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(0, 183, 255, 0.12);
  color: rgba(2, 132, 199, 1);
  display: grid;
  place-items: center;
}

.prompt__text {
  color: rgba(2, 132, 199, 0.9);
}

.divider {
  margin-top: 8px;
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.list li + li {
  margin-top: 8px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 760px;
}

.chip {
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.95);
  font-weight: 900;
  color: rgba(100, 116, 139, 0.95);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 183, 255, 0.28);
  box-shadow: 0 10px 20px rgba(2, 8, 23, 0.04);
}

.chip.is-selected {
  border-color: rgba(0, 183, 255, 0.85);
  background: rgba(0, 183, 255, 0.12);
  color: rgba(2, 132, 199, 1);
}

.quick-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.quick-date {
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.95);
  font-weight: 900;
  color: rgba(100, 116, 139, 0.95);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.quick-date.is-selected {
  border-color: rgba(0, 183, 255, 0.95);
  background: rgba(0, 183, 255, 0.14);
  color: rgba(2, 132, 199, 1);
}

.days-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.day-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px;
  border-radius: 18px;
  border: 2px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.98);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.day-card:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 183, 255, 0.35);
  box-shadow: 0 16px 32px rgba(2, 8, 23, 0.05);
}

.day-card.is-selected {
  border-color: rgba(0, 183, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(0, 183, 255, 0.14);
}

.day-card__price {
  font-weight: 1000;
  color: rgba(2, 132, 199, 1);
}

.note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0, 183, 255, 0.22);
  background: rgba(0, 183, 255, 0.06);
  color: rgba(2, 132, 199, 0.95);
  font-weight: 800;
  font-size: 13px;
  margin-top: 12px;
}

.note__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 183, 255, 0.16);
  color: rgba(2, 132, 199, 1);
}

.section-title {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.hospital-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  margin-top: 12px;
}

.hospital-card {
  display: grid;
  gap: 12px;
  place-items: center;
  padding: 18px 16px;
  border-radius: 18px;
  border: 2px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.98);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.hospital-card:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 183, 255, 0.35);
  box-shadow: 0 16px 30px rgba(2, 8, 23, 0.05);
}

.hospital-card.is-selected {
  border-color: rgba(0, 183, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(0, 183, 255, 0.14);
}

.hospital-logo {
  width: 92px;
  height: 40px;
  display: grid;
  place-items: center;
}

.hospital-img {
  max-width: 92px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hospital-mark {
  font-weight: 1000;
  letter-spacing: 0.08em;
  color: rgba(100, 116, 139, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  padding: 8px 10px;
  background: rgba(248, 250, 252, 0.9);
}

.hospital-label {
  text-align: center;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.9);
}

.hospital-custom {
  grid-column: 1 / -1;
  border-radius: 18px;
  border: 1px dashed rgba(15, 23, 42, 0.18);
  background: rgba(248, 250, 252, 0.7);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.hospital-custom__title {
  font-weight: 900;
  color: rgba(100, 116, 139, 0.9);
}

.paytabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.paytab {
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.95);
  font-weight: 1000;
  color: rgba(100, 116, 139, 0.95);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.paytab.is-active {
  border-color: rgba(0, 183, 255, 0.85);
  background: rgba(0, 183, 255, 0.14);
  color: rgba(2, 132, 199, 1);
}

.paybody {
  margin-top: 14px;
}

.cardpay {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(248, 250, 252, 0.65);
  padding: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field__error {
  color: #dc2626;
  font-weight: 800;
  font-size: 12px;
}

.field.is-error label {
  color: #b91c1c;
}

.field.is-error .input,
.field.is-error .select,
.field.is-error .textarea {
  border-color: rgba(220, 38, 38, 0.75);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.field label {
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.input,
.select,
.textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 14px 14px;
  background: #ffffff;
  color: #0f172a;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(0, 183, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(0, 183, 255, 0.16);
}

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

.upsell-area {
  border-radius: 20px;
  border: 1px solid #fcd34d;
  background: #fffbeb;
  padding: 16px;
}

.upsell-area__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.upsell-area__title {
  margin: 0;
  font-weight: 1000;
}

.upsell-area__subtitle {
  margin: 6px 0 0;
  color: rgba(100, 116, 139, 0.95);
  font-size: 14px;
  line-height: 1.45;
}

.upsell-area .option-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(2, 8, 23, 0.1);
}

.upsell-area .option-card:hover {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 12px 24px rgba(2, 8, 23, 0.06);
}

.upsell-area .option-card.is-selected {
  border-color: rgba(245, 158, 11, 0.95);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
  background: rgba(255, 255, 255, 0.98);
}

.upsell-area .option-card__icon {
  background: rgba(245, 158, 11, 0.12);
}

.upsell-area .option-card.is-selected .option-card__icon {
  background: rgba(245, 158, 11, 0.95);
}

.upsell-area .option-card.is-selected .option-card__tick {
  background: rgba(245, 158, 11, 0.95);
  border-color: rgba(245, 158, 11, 0.95);
}

.option-card {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.88);
  padding: 16px;
  display: grid;
  grid-template-columns: 42px 1fr 26px;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease,
    background 160ms ease;
}

.option-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 183, 255, 0.38);
  box-shadow: 0 12px 24px rgba(2, 8, 23, 0.06);
}

.option-card.is-selected {
  border-color: rgba(0, 183, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(0, 183, 255, 0.18);
  background: rgba(0, 183, 255, 0.08);
}

.option-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(2, 132, 199, 0.08);
  color: rgba(100, 116, 139, 0.9);
}

.option-card.is-selected .option-card__icon {
  background: var(--primary);
  color: #ffffff;
}

.option-card__title {
  font-weight: 900;
  margin: 0;
}

.option-card__desc {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.option-card__tick {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 0.14);
  display: grid;
  place-items: center;
  color: transparent;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.option-card.is-selected .option-card__tick {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.helper-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: rgba(100, 116, 139, 0.9);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
}

.alert {
  border-radius: 18px;
  border: 1px solid rgba(239, 68, 68, 0.26);
  background: rgba(239, 68, 68, 0.06);
  color: #b91c1c;
  padding: 14px 16px;
  font-weight: 800;
  display: none;
}

.alert.is-visible {
  display: block;
}

.inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-weight: 800;
  color: #0f172a;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  user-select: none;
}

.tag input {
  accent-color: var(--primary);
}

.tag:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 183, 255, 0.38);
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.06);
}

.total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(2, 132, 199, 0.06);
  margin-top: 18px;
}

.total strong {
  font-size: 20px;
}

.page--final .form-card {
  background: #fffbeb;
  border-color: #fef3c7;
}

.form-actions.is-final {
  margin-top: 24px;
  border-top: 1px dashed rgba(146, 64, 14, 0.35);
  padding-top: 18px;
}

.final {
  display: grid;
  gap: 18px;
}

.final-hello__title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 4px;
}

.final-hello__subtitle {
  color: #92400e;
  font-size: 14px;
}

.final-up {
  border-radius: 18px;
  border: 1px solid #fed7aa;
  background: #fffbeb;
  padding: 14px 14px 10px;
}

.final-up__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.final-up__headtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #92400e;
}

.final-up__headicon {
  font-size: 18px;
}

.final-up__list {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.final-up__row {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 64, 14, 0.14);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  max-width: 100%;
  overflow: hidden;
}

.final-up__row:hover {
  transform: translateY(-1px);
  border-color: rgba(148, 64, 14, 0.4);
  box-shadow: 0 10px 26px rgba(146, 64, 14, 0.14);
}

.final-up__row.is-selected {
  border-color: #ea580c;
  background: #fff7ed;
}

.final-up__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(248, 113, 113, 0.8);
}

.final-up__icon {
  font-size: 20px;
}

.final-up__texts {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.final-up__title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: #7c2d12;
  flex-wrap: wrap;
  min-width: 0;
}

.final-up__badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: #f97316;
  color: #fffbeb;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.final-up__desc {
  font-size: 13px;
  color: #92400e;
  word-break: break-word;
}

.final-up__price {
  font-weight: 800;
  color: #7c2d12;
  white-space: nowrap;
}

.final-summary {
  border-radius: 18px;
  border: 1px dashed rgba(148, 64, 14, 0.4);
  padding: 14px 14px 12px;
  background: rgba(255, 247, 237, 0.9);
}

.final-summary__head {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b45309;
  margin-bottom: 8px;
}

.final-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
}

.final-summary__name {
  font-weight: 900;
  color: #7c2d12;
}

.final-summary__sub {
  font-size: 13px;
  color: #92400e;
}

.final-summary__totalrow {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.final-summary__totallabel {
  font-weight: 800;
  color: #7c2d12;
}

.final-summary__total {
  font-size: 22px;
  font-weight: 900;
  color: #7c2d12;
}

.final-info {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(254, 243, 199, 0.9);
  border: 1px dashed rgba(180, 83, 9, 0.5);
}

.final-info__icon {
  font-size: 18px;
}

.final-info__title {
  font-weight: 800;
  color: #7c2d12;
}

.final-info__text {
  font-size: 13px;
  color: #92400e;
}

.final-pay {
  display: grid;
  gap: 8px;
}

.final-pay__title {
  font-size: 13px;
  font-weight: 800;
  color: #7c2d12;
  text-transform: uppercase;
}

.final-pay__card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(248, 113, 113, 0.26);
  background: rgba(248, 250, 252, 0.86);
}

.final-pay__card.is-selected {
  background: #f97316;
  border-color: #ea580c;
  color: #fffbeb;
}

.final-pay__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(254, 243, 199, 0.9);
  box-shadow: 0 0 0 3px rgba(248, 250, 252, 0.6);
}

.final-pay__label {
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.final-pay__pixicon {
  font-size: 14px;
  line-height: 1;
}

.final-pay__badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.final-terms {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.final-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #7c2d12;
}

.final-check input {
  margin-top: 2px;
  accent-color: #f97316;
}

.final-check__text a {
  color: #c2410c;
  text-decoration: underline;
}

.final-check--soft {
  color: #92400e;
}

.muted {
  color: var(--muted);
}

.pix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.pix__qr {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 40px rgba(2, 8, 23, 0.06);
  max-width: 100%;
  overflow: hidden;
}

.pix__img {
  width: min(240px, 100%);
  height: auto;
  object-fit: contain;
  display: block;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
}

.pix__qr canvas {
  width: min(240px, 100%);
  height: auto;
  display: block;
}

.pix__code {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 18px;
  box-shadow: 0 12px 40px rgba(2, 8, 23, 0.06);
  display: grid;
  gap: 12px;
}

.codebox {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 12px 12px;
  background: rgba(248, 250, 252, 0.8);
  color: #0f172a;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  overflow: auto;
  max-height: 130px;
  word-break: break-all;
}

.pill2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
}

.pill2--warn {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
}

.pill2--ok {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}

.pay {
  display: grid;
  gap: 16px;
}

.pay__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pay__title {
  font-size: 18px;
  font-weight: 900;
}

.pay__subtitle {
  color: #64748b;
  font-size: 14px;
}

.pay__meta {
  color: rgba(100, 116, 139, 0.9);
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}

.pay__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 4px;
}

.pay-card {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f9fafb;
  padding: 16px;
  display: grid;
  gap: 12px;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.pay-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pay-card__icon {
  font-size: 18px;
}

.pay-card__title {
  font-weight: 800;
  color: #0f172a;
}

.pay-card__qr {
  display: grid;
  place-items: center;
}

.pay-card__amount {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.pay-code {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.pay__copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.pay__btn {
  flex: 1;
}

.pay__btn--proof {
  height: auto;
  padding: 12px 18px;
  white-space: normal;
  line-height: 1.2;
}

.pay-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.pay-actions .pay__btn {
  flex: 1 1 220px;
}

.admin-table {
  display: grid;
  grid-template-columns: 90px 1.3fr 90px 90px 1.2fr 110px;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.admin-table--head {
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(100, 116, 139, 0.95);
}

.admin-table--body {
  display: grid;
  gap: 10px;
}

.admin-row {
  display: grid;
  grid-template-columns: 90px 1.3fr 90px 90px 1.2fr 110px;
  gap: 10px;
  align-items: start;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.7);
  padding: 10px 12px;
}

.admin-cell {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-client {
  font-weight: 900;
}

.admin-link {
  font-weight: 900;
  color: rgba(2, 132, 199, 1);
}

@media (max-width: 980px) {
  .admin-table,
  .admin-row {
    grid-template-columns: 1fr;
  }
  .admin-table--head {
    display: none;
  }
  .admin-row {
    gap: 6px;
  }
}

.pay-how {
  border-radius: 14px;
  background: #e0f2fe;
  padding: 10px 12px;
  display: grid;
  gap: 6px;
}

.pay-how__title {
  font-size: 13px;
  font-weight: 800;
  color: #075985;
}

.pay-how__step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #0f172a;
}

.pay-how__n {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #0ea5e9;
  color: #e0f2fe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  flex: 0 0 auto;
  margin-top: 2px;
}

.pay__left,
.pay__right {
  display: grid;
  min-width: 0;
}

.doc {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 22px;
  box-shadow: 0 12px 40px rgba(2, 8, 23, 0.06);
  margin-top: 18px;
}

.doc h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 900;
}

.doc p {
  margin: 8px 0;
  color: #334155;
  line-height: 1.7;
}

.doc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.doc__kv {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 12px 12px;
  background: rgba(248, 250, 252, 0.7);
}

.doc__kv small {
  display: block;
  color: rgba(100, 116, 139, 0.9);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 10px;
}

.doc__kv strong {
  display: block;
  margin-top: 6px;
  color: #0f172a;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 84px 0;
  }
  .hero__media {
    justify-content: flex-start;
  }
  .floating {
    right: 16px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .step-grid {
    grid-template-columns: 1fr;
  }
  .steps__line {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .pix,
  .pay__grid {
    grid-template-columns: 1fr;
  }
  .doc__grid {
    grid-template-columns: 1fr;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .hospital-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav--desktop,
  .header__actions--desktop {
    display: none;
  }
  .nav--mobile {
    display: flex;
  }
}

@media (max-width: 520px) {
  .form-card {
    padding: 18px;
    border-radius: 28px;
  }

  .stepper__track {
    padding: 0;
    --stepper-inset: 38px;
    --stepper-top: 18px;
    margin-bottom: 44px;
  }

  .stepper__dot {
    width: 36px;
    height: 36px;
  }

  .stepper__track::before,
  .stepper__bar {
    top: var(--stepper-top);
    left: var(--stepper-inset);
    right: var(--stepper-inset);
  }

  .stepper__label {
    display: none;
  }

  .stepper__label.is-active {
    display: block;
    width: 180px;
    top: 50px;
    letter-spacing: 0.14em;
  }

  .form-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

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

  .pay-code {
    grid-template-columns: 1fr;
  }

  .pay__copy {
    width: 100%;
  }

  .pay-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer__badges {
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .brand {
    min-width: 0;
  }
  .brand__text {
    font-size: 18px;
  }
}

@media print {
  body {
    background: #ffffff;
  }
  .header,
  .footer,
  .scroll-top {
    display: none !important;
  }
  .app {
    padding-top: 0;
  }
  .page {
    background: #ffffff;
    padding: 0;
  }
  .form-card {
    box-shadow: none;
    border: 0;
    padding: 0;
  }
}
