:root {
  --bg: #f5f1ee;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-dark: #1d1f1e;
  --surface-dark-2: #0c0920;
  --ink: #1d1f1e;
  --ink-soft: #5e615f;
  --ink-faint: #8b8f8c;
  --line: rgba(29, 31, 30, 0.12);
  --line-strong: rgba(29, 31, 30, 0.2);
  --accent: #be1b4c;
  --accent-strong: #f40742;
  --accent-soft: rgba(190, 27, 76, 0.08);
  --accent-glow: rgba(190, 27, 76, 0.28);
  --success: #1a8f5a;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shadow: 0 28px 70px rgba(12, 9, 32, 0.12);
  --shadow-soft: 0 14px 34px rgba(12, 9, 32, 0.08);
  --framer-font-family: "Figtree", "Figtree Placeholder", sans-serif;
  --font-display: "Figtree", "Figtree Placeholder", sans-serif;
  --font-body: "Figtree", "Figtree Placeholder", sans-serif;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(244, 7, 66, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #ebebeb 100%);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

body.welcome-lock {
  overflow: hidden;
  height: 100vh;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.hidden {
  display: none !important;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.site-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 9, 32, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 9, 32, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 88%);
}

.site-bg__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.65;
}

.site-bg__orb--one {
  width: 420px;
  height: 180px;
  left: -40px;
  top: 120px;
  background: linear-gradient(120deg, rgba(190, 27, 76, 0.38), rgba(244, 7, 66, 0.12));
  transform: rotate(-12deg);
}

.site-bg__orb--two {
  width: 300px;
  height: 300px;
  right: -80px;
  top: 240px;
  background: radial-gradient(circle, rgba(244, 7, 66, 0.18), transparent 72%);
}

.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background:
    linear-gradient(145deg, rgba(12, 9, 32, 0.94), rgba(29, 31, 30, 0.93)),
    radial-gradient(circle at top, rgba(190, 27, 76, 0.18), transparent 34%);
  transition: opacity 260ms ease, visibility 260ms ease;
}

.welcome-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.welcome-card {
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
  color: white;
}

.welcome-card__eyebrow,
.page-header__eyebrow,
.progress-shell__eyebrow,
.document-card__eyebrow,
.summary-panel__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.welcome-card__eyebrow,
.page-header__eyebrow,
.document-card__eyebrow,
.summary-panel__eyebrow {
  color: var(--accent);
}

.welcome-card__title,
.page-header__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.page-header__title {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
}

.welcome-card__title em,
.page-header__title em {
  color: var(--accent);
  font-style: normal;
}

.welcome-card__text,
.page-header__text,
.summary-panel__header p,
.feature-card p,
.field__hint,
.info-tile p,
.counter-card__text,
.toggle-card__text,
.success-panel .page-header__text,
.upload-dropzone span,
.upload-info__row span,
.check-card__copy,
.terms-list p,
.document-card__ref,
.summary-panel__note {
  color: var(--ink-soft);
}

.welcome-card__text {
  max-width: 680px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.language-card,
.option-card,
.sla-card,
.check-card,
.toggle-card {
  border: 1px solid transparent;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.language-card {
  display: grid;
  gap: 8px;
  padding: 18px 16px;
  color: white;
  text-align: left;
}

.language-card:hover,
.option-card:hover,
.sla-card:hover,
.check-card:hover,
.toggle-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
}

.language-card.is-selected {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(190, 27, 76, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 16px 44px rgba(0, 0, 0, 0.26);
}

.language-card__flag {
  font-size: 1.4rem;
}

.language-card__name {
  font-weight: 700;
}

.welcome-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.welcome-card__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.96rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(12, 9, 32, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brandmark__logo {
  display: block;
  height: 42px;
  width: auto;
  object-fit: contain;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  min-width: 0;
}

.topbar__contact a {
  text-decoration: none;
  overflow-wrap: anywhere;
}

.inline-languages {
  display: flex;
  gap: 8px;
}

.inline-languages button {
  min-width: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.inline-languages button.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.progress-shell {
  margin: 20px auto 0;
  width: min(1320px, calc(100% - 40px));
  padding: 26px 28px;
  border: 1px solid rgba(12, 9, 32, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.progress-shell__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.progress-shell__eyebrow {
  color: var(--ink-faint);
}

.progress-shell__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.progress-shell__counter {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
}

.progress-track {
  display: flex;
  align-items: center;
  min-width: 0;
}

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

.progress-step__bullet {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-faint);
  font-weight: 700;
  transition: all var(--transition);
}

.progress-step__bullet.active {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 7px rgba(190, 27, 76, 0.1);
}

.progress-step__bullet.done {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.progress-step__label {
  font-size: 0.92rem;
  color: var(--ink-faint);
  font-weight: 600;
}

.progress-step__label.active {
  color: var(--ink);
}

.progress-track__line {
  flex: 1;
  height: 1px;
  margin: 0 14px;
  background: var(--line);
}

.progress-track__line.done {
  background: var(--accent);
}

.app-shell {
  width: min(1320px, calc(100% - 40px));
  margin: 24px auto 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
}

.stage,
.summary-panel {
  border: 1px solid rgba(12, 9, 32, 0.08);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.stage {
  padding: 34px;
}

.page {
  animation: fade-up 220ms ease;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-strip,
.feature-grid,
.delivery-grid,
.operation-grid {
  display: grid;
  gap: 16px;
}

.hero-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0 30px;
}

.hero-strip__item,
.feature-card,
.info-tile {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(12, 9, 32, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.hero-strip__item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
}

.hero-strip__value {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
}

.hero-strip__label {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.section-label {
  margin: 34px 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 800;
}

.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.option-grid,
.sla-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.option-card,
.sla-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  text-align: left;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.option-card--selected,
.option-card.is-selected,
.sla-card--selected,
.sla-card.is-selected,
.toggle-card.is-selected,
.check-card.is-selected {
  border-color: rgba(190, 27, 76, 0.42);
  background: linear-gradient(180deg, rgba(190, 27, 76, 0.11), rgba(255, 255, 255, 0.82));
  box-shadow: 0 0 0 5px rgba(190, 27, 76, 0.06);
}

.option-card__emoji {
  font-size: 1.8rem;
}

.option-card__title,
.feature-card h3,
.info-tile h3,
.summary-panel h2,
.document-card h2,
.counter-card__title,
.toggle-card__title,
.success-panel__reference strong {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.option-card__text,
.feature-card p,
.info-tile p {
  margin: 0;
}

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

.counter-card,
.toggle-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.counter-card__title,
.toggle-card__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(29, 31, 30, 0.08);
  color: var(--ink-soft);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
}

.pill--accent {
  background: rgba(190, 27, 76, 0.12);
  color: var(--accent);
}

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

.counter-control--fixed {
  justify-content: flex-end;
}

.counter-control__btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 1.15rem;
}

.counter-control__btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.counter-control__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.counter-control__value,
.counter-card__price,
.summary-line strong,
.mobile-total-bar__value {
  font-family: var(--font-display);
}

.counter-control__value {
  min-width: 30px;
  text-align: center;
  font-size: 1.2rem;
}

.counter-card__price {
  font-size: 1rem;
  white-space: nowrap;
}

.toggle-card {
  width: 100%;
  text-align: left;
}

.toggle-card__switch {
  width: 52px;
  height: 30px;
  position: relative;
  border-radius: 999px;
  background: rgba(29, 31, 30, 0.18);
  transition: background var(--transition);
}

.toggle-card__switch::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.14);
  transition: transform var(--transition);
}

.toggle-card.is-selected .toggle-card__switch {
  background: var(--accent);
}

.toggle-card.is-selected .toggle-card__switch::after {
  transform: translateX(22px);
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card h3,
.info-tile h3 {
  margin-bottom: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.field__label {
  font-size: 0.95rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(190, 27, 76, 0.4);
  box-shadow: 0 0 0 5px rgba(190, 27, 76, 0.08);
}

.field__readonly {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-weight: 700;
}

.field__hint {
  margin: 0;
  font-size: 0.88rem;
}

.field__error {
  display: none;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.field__error.is-visible,
.field__error--block.is-visible {
  display: block;
}

.field__error--block {
  margin: 10px 0 0;
}

.operation-grid,
.delivery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.counter-card--compact {
  grid-template-columns: minmax(0, 1fr) auto;
}

.sla-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sla-card {
  position: relative;
  min-height: 100%;
}

.sla-card__head p,
.sla-card__list {
  margin: 0;
}

.sla-card__head p {
  color: var(--accent);
  font-weight: 800;
}

.sla-card__list {
  padding-left: 18px;
  color: var(--ink-soft);
}

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

.sla-card__flag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.document-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.document-stack {
  display: grid;
  gap: 16px;
}

.document-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.document-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  background: linear-gradient(140deg, rgba(29, 31, 30, 0.98), rgba(12, 9, 32, 0.98));
  color: white;
}

.document-card__eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.document-card__ref {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.document-card__body,
.terms-list {
  padding: 22px 24px;
}

.document-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(12, 9, 32, 0.08);
}

.document-row:last-child {
  border-bottom: 0;
}

.document-row__label {
  color: var(--ink-soft);
}

.document-row__value {
  max-width: 56%;
  text-align: right;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.terms-item + .terms-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(12, 9, 32, 0.08);
}

.terms-list h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.terms-list p {
  margin: 0;
}

.checkbox-stack {
  display: grid;
  gap: 12px;
}

.check-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.check-card input {
  margin-top: 2px;
  accent-color: var(--accent);
}

.check-card__copy strong {
  color: var(--ink);
}

.signature-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
}

.signature-box__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.signature-pad {
  position: relative;
  height: 220px;
  border: 1px dashed rgba(29, 31, 30, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 247, 0.9));
  overflow: hidden;
}

.signature-pad.is-signed {
  border-style: solid;
  border-color: rgba(190, 27, 76, 0.36);
}

#signatureCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.signature-pad__hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 6px;
  text-align: center;
  color: var(--ink-faint);
  pointer-events: none;
}

.signature-pad__icon {
  font-size: 1.8rem;
}

.btn,
.btn-text {
  border: 0;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition), box-shadow var(--transition);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
  box-shadow: 0 16px 34px rgba(190, 27, 76, 0.26);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
}

.btn-primary:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: rgba(190, 27, 76, 0.28);
  color: var(--accent);
}

.btn--small {
  min-height: 44px;
  font-size: 0.92rem;
}

.btn-text {
  padding: 0;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 700;
}

.btn-text:hover {
  color: var(--accent);
}

.btn-arrow {
  display: inline-block;
}

.btn-arrow--left {
  order: -1;
}

.page-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(12, 9, 32, 0.08);
}

.page-actions--right {
  justify-content: flex-end;
}

.upload-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 16px;
}

.upload-dropzone {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 220px;
  padding: 20px;
  border: 1px dashed rgba(29, 31, 30, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.upload-dropzone input {
  display: none;
}

.upload-dropzone__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(190, 27, 76, 0.1);
  color: var(--accent);
  font-size: 1.6rem;
}

.upload-info,
.upload-list,
.success-panel__reference {
  border: 1px solid rgba(12, 9, 32, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.upload-info {
  padding: 18px;
}

.upload-info__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}

.upload-info__row + .upload-info__row {
  border-top: 1px solid rgba(12, 9, 32, 0.08);
}

.upload-list {
  display: grid;
  gap: 10px;
  padding: 18px;
  margin-top: 16px;
}

.upload-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(12, 9, 32, 0.08);
}

.upload-item:last-child {
  border-bottom: 0;
}

.upload-item__name {
  font-weight: 700;
  overflow-wrap: anywhere;
}

.upload-item__meta {
  color: var(--ink-faint);
  font-size: 0.88rem;
}

.success-panel {
  text-align: center;
  padding: 24px 0 8px;
}

.success-panel__icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: rgba(26, 143, 90, 0.12);
  color: var(--success);
  font-size: 2rem;
  font-weight: 800;
}

.success-panel__reference {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  margin-top: 16px;
}

.success-panel__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 8px;
  flex-wrap: wrap;
}

.summary-panel {
  position: sticky;
  top: 160px;
  height: fit-content;
  padding: 26px;
}

.summary-panel__header p {
  margin: 10px 0 0;
}

.summary-group,
.summary-breakdown {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(12, 9, 32, 0.08);
}

.summary-row,
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
}

.summary-row span,
.summary-line span {
  color: var(--ink-soft);
  min-width: 0;
  overflow-wrap: anywhere;
}

.summary-line--border {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(12, 9, 32, 0.08);
}

.summary-line--accent strong,
.summary-line--accent span {
  color: var(--accent);
}

.summary-line strong {
  font-size: 1.2rem;
}

.summary-panel__note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(12, 9, 32, 0.04);
  font-size: 0.92rem;
}

.mobile-total-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 8;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(12, 9, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(12, 9, 32, 0.16);
  backdrop-filter: blur(14px);
}

.mobile-total-bar__label {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    position: static;
  }
}

@media (max-width: 900px) {
  .language-grid,
  .option-grid,
  .hero-strip,
  .feature-grid,
  .form-grid,
  .operation-grid,
  .delivery-grid,
  .upload-shell {
    grid-template-columns: 1fr;
  }

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

  .counter-card,
  .toggle-card,
  .counter-card--compact {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .counter-card__price,
  .counter-control {
    justify-self: start;
  }

  .welcome-card {
    padding: 28px 24px;
  }

  .welcome-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

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

  .topbar__actions,
  .topbar__contact {
    flex-wrap: wrap;
  }

  .progress-track {
    overflow-x: auto;
    padding-bottom: 6px;
  }
}

@media (max-width: 720px) {
  .progress-step__label {
    display: none;
  }

  .progress-track__line {
    margin: 0 8px;
  }

  .progress-shell,
  .app-shell {
    width: calc(100% - 24px);
  }

  .stage {
    padding: 24px 18px;
  }

  .topbar {
    padding: 14px 12px;
    gap: 12px;
  }

  .brandmark__logo {
    height: 34px;
  }

  .progress-shell {
    padding: 18px 14px;
  }

  .progress-shell__title {
    font-size: 1.08rem;
  }

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

  .btn {
    width: 100%;
  }

  .summary-panel {
    display: none;
  }

  .mobile-total-bar {
    display: flex;
  }
}

@media (max-width: 480px) {
  .welcome-overlay {
    padding: 12px;
  }

  .welcome-card {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .welcome-card__title {
    font-size: clamp(1.8rem, 9vw, 2.3rem);
    line-height: 1.05;
  }

  .stage {
    padding: 20px 14px;
    border-radius: 24px;
  }

  .page-header__title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    line-height: 1.06;
  }
}
