﻿:root {
  color-scheme: light;
  --bg: #f2f8fb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --line: rgba(18, 67, 88, 0.12);
  --text: #16323f;
  --muted: #56717d;
  --brand: #0b89b9;
  --brand-deep: #0c5f7d;
  --brand-soft: #dff5fb;
  --accent: #ff8a3d;
  --success: #217a52;
  --shadow: 0 24px 60px rgba(22, 50, 63, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(11, 137, 185, 0.11), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 138, 61, 0.1), transparent 24%),
    linear-gradient(180deg, #f7fbfd 0%, #eef7fb 46%, #f7fbfd 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(20px);
}

body::before {
  width: 320px;
  height: 320px;
  top: -90px;
  right: -70px;
  background: rgba(11, 137, 185, 0.18);
}

body::after {
  width: 260px;
  height: 260px;
  left: -60px;
  bottom: 8%;
  background: rgba(255, 138, 61, 0.16);
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 22px;
  align-items: stretch;
  padding: 28px 0;
}

.hero-panel,
.form-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 840px;
  border: 1px solid var(--line);
  border-radius: 32px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel {
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(150deg, rgba(9, 118, 158, 0.98), rgba(9, 89, 118, 0.98)),
    linear-gradient(180deg, #0d6f94, #0a5874);
  color: #f5fcff;
  justify-content: flex-start;
  gap: 18px;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -18% -28% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), transparent 60%);
}

.hero-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  animation: fade-up 700ms ease both;
}

.brand-logo {
  width: auto;
  max-width: 176px;
  max-height: 52px;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 14px 24px rgba(6, 35, 46, 0.24))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.08));
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-copy-block {
  display: grid;
  gap: 12px;
  animation: fade-up 780ms ease both;
  animation-delay: 60ms;
}

.eyebrow,
.progress-label,
.hero-card__kicker {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin-top: 0;
  color: rgba(245, 252, 255, 0.72);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.35rem);
  line-height: 1.03;
  max-width: 13ch;
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 37ch;
  font-size: 0.98rem;
  line-height: 1.68;
  margin: 0;
  color: rgba(245, 252, 255, 0.82);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  animation: fade-up 860ms ease both;
  animation-delay: 120ms;
}

.hero-metric {
  display: grid;
  gap: 6px;
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.hero-metric__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #effcff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: icon-bob 4.8s ease-in-out infinite;
}

.hero-metric:nth-child(2) .hero-metric__icon {
  animation-delay: 0.35s;
}

.hero-metric:nth-child(3) .hero-metric__icon {
  animation-delay: 0.7s;
}

.hero-metric__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-metric__value {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  padding-right: 4px;
}

.hero-metric__label {
  font-size: 0.84rem;
  line-height: 1.45;
  padding-right: 4px;
  color: rgba(245, 252, 255, 0.76);
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1.34fr 0.66fr;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.09));
  animation: fade-up 940ms ease both;
  animation-delay: 180ms;
}

.hero-showcase__content {
  display: grid;
  gap: 10px;
}

.hero-showcase__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 252, 255, 0.66);
}

.hero-showcase__content strong {
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.32;
}

.hero-showcase__content p {
  margin: 0;
  line-height: 1.52;
  font-size: 0.92rem;
  color: rgba(245, 252, 255, 0.74);
}

.hero-showcase__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-showcase__tags span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #dff7ff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-showcase__image {
  width: min(100%, 150px);
  justify-self: center;
  border-radius: 20px;
  filter: drop-shadow(0 28px 38px rgba(6, 35, 46, 0.2));
  animation: float-product 6s ease-in-out infinite;
}

.hero-note,
.summary-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero-note {
  margin-top: auto;
  padding: 14px 16px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(245, 252, 255, 0.78);
  animation: fade-up 1020ms ease both;
  animation-delay: 240ms;
}

.form-panel {
  background: var(--surface);
  padding: 32px;
  overflow: hidden;
}

.progress-head {
  display: grid;
  gap: 16px;
}

.progress-label {
  color: var(--brand);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.55rem);
}

.progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(11, 137, 185, 0.1);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #55c9f2);
  transition: width 220ms ease;
}

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

.stepper__item {
  border: 1px solid rgba(11, 137, 185, 0.12);
  border-radius: 18px;
  padding: 11px 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.stepper__item:hover,
.stepper__item:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(11, 137, 185, 0.28);
}

.stepper__item.is-active {
  color: var(--brand-deep);
  border-color: rgba(11, 137, 185, 0.42);
  background: rgba(223, 245, 251, 0.86);
}

.stepper__item.is-complete {
  color: var(--success);
  border-color: rgba(33, 122, 82, 0.28);
  background: rgba(224, 245, 232, 0.72);
}

.stepper__number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--brand), #1eb6e7);
}

.stepper__item.is-complete .stepper__number {
  background: linear-gradient(135deg, var(--success), #46ad7d);
}

.stepper__label {
  font-size: 0.85rem;
  font-weight: 700;
}

#signup-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.step {
  display: none;
  animation: rise 220ms ease;
}

.step.is-active {
  display: block;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

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

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

@keyframes float-product {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes icon-bob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.02);
  }
}

.step h3 {
  font-size: 1.6rem;
}

.step-copy {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.choice-grid,
.plan-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

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

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

.choice-card,
.plan-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, rgba(248, 252, 254, 0.98));
  padding: 18px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}

.choice-card::before,
.plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(11, 137, 185, 0), rgba(11, 137, 185, 0.58), rgba(11, 137, 185, 0));
  opacity: 0;
  transition: opacity 180ms ease;
}

.choice-card:hover,
.plan-card:hover,
.choice-card:has(input:checked),
.plan-card:has(input:checked) {
  transform: translateY(-2px);
  border-color: rgba(11, 137, 185, 0.42);
  box-shadow: 0 18px 34px rgba(11, 137, 185, 0.12);
  background: linear-gradient(180deg, #ffffff, rgba(239, 249, 253, 0.98));
}

.choice-card:hover::before,
.plan-card:hover::before,
.choice-card:has(input:checked)::before,
.plan-card:has(input:checked)::before {
  opacity: 1;
}

.choice-card input[type="radio"],
.plan-card input[type="radio"],
.checkbox input {
  accent-color: var(--brand);
}

.choice-card input[type="radio"],
.plan-card input[type="radio"] {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 18px;
  height: 18px;
  margin: 0;
}

.choice-card__title {
  padding-right: 28px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.choice-card__meta {
  padding-right: 12px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.plan-card {
  gap: 12px;
}

.plan-card__title {
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.3;
  padding-right: 28px;
}

.plan-card__badge {
  justify-self: start;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: rgba(223, 245, 251, 0.95);
}

.plan-card__media {
  display: grid;
  place-items: center;
  min-height: 172px;
  margin-top: 4px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(143, 214, 238, 0.3), transparent 48%),
    linear-gradient(180deg, rgba(223, 245, 251, 0.8), rgba(255, 255, 255, 0.98));
  overflow: hidden;
}

.plan-card__media img {
  width: 100%;
  max-width: 160px;
  max-height: 176px;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.plan-card:hover .plan-card__media img,
.plan-card:has(input:checked) .plan-card__media img {
  transform: translateY(-4px) scale(1.02);
}

.plan-card__meta {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
  min-height: 4.8em;
}

.plan-card__unit-price {
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.quantity-picker {
  display: inline-grid;
  grid-template-columns: 42px minmax(56px, 72px) 42px;
  gap: 0;
  align-items: center;
  justify-self: start;
  margin-top: 2px;
  border-radius: 999px;
  border: 1px solid rgba(11, 137, 185, 0.22);
  background: #f4fbfe;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.quantity-picker__button {
  border: 0;
  border-radius: 0;
  padding: 11px 0;
  background: transparent;
  color: var(--brand-deep);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: none;
  transition: background 160ms ease, color 160ms ease;
}

.quantity-picker__button:hover,
.quantity-picker__button:focus-visible {
  background: rgba(11, 137, 185, 0.1);
  transform: none;
  box-shadow: none;
}

.quantity-picker__input {
  border: 0;
  border-left: 1px solid rgba(11, 137, 185, 0.14);
  border-right: 1px solid rgba(11, 137, 185, 0.14);
  border-radius: 0;
  padding: 11px 6px;
  text-align: center;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.quantity-picker__input:focus {
  box-shadow: none;
}

.quantity-picker__input::-webkit-outer-spin-button,
.quantity-picker__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-picker__input[type="number"] {
  -moz-appearance: textfield;
}

.plan-card__footer {
  margin-top: auto;
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(18, 67, 88, 0.08);
}

.plan-card__price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.plan-card__price {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.plan-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 62ch;
}

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

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

.field--full {
  grid-column: 1 / -1;
}

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

.address-autocomplete {
  position: relative;
}

.address-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 30;
  max-height: 268px;
  overflow-y: auto;
  border: 1px solid rgba(18, 67, 88, 0.18);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(18, 67, 88, 0.14);
}

.address-suggestions.is-hidden {
  display: none;
}

.address-suggestions__item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(18, 67, 88, 0.09);
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 11px 12px;
  font: inherit;
  cursor: pointer;
  display: grid;
  gap: 2px;
}

.address-suggestions__item:last-child {
  border-bottom: 0;
}

.address-suggestions__item:hover,
.address-suggestions__item.is-active,
.address-suggestions__item:focus-visible {
  background: rgba(223, 245, 251, 0.7);
  outline: none;
}

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

.address-suggestions__secondary {
  color: var(--muted);
  font-size: 0.86rem;
}

input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 67, 88, 0.16);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

input:not([type="checkbox"]):not([type="radio"]):focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(11, 137, 185, 0.54);
  box-shadow: 0 0 0 4px rgba(11, 137, 185, 0.12);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--brand-soft);
  color: var(--brand-deep);
}

.checkbox input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 3px 0 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
}

.checkbox span {
  flex: 1;
  min-width: 0;
  line-height: 1.5;
}

.summary-card {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(11, 137, 185, 0.16);
  background: linear-gradient(180deg, rgba(223, 245, 251, 0.8), rgba(255, 255, 255, 0.96));
}

.summary-card p {
  margin: 0;
}

.summary-card dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}

.summary-card dt {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.summary-card dd {
  margin: 6px 0 0;
  font-weight: 700;
}

.form-message {
  min-height: 24px;
  margin: 22px 0 0;
  color: #b64531;
  font-weight: 600;
}

.form-message.is-success {
  color: var(--success);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
}

.button {
  position: relative;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  min-width: 160px;
  overflow: hidden;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, var(--brand), #1eb6e7);
  box-shadow: 0 18px 32px rgba(11, 137, 185, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: skewX(-18deg);
  transition: transform 260ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(11, 137, 185, 0.3);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(320%) skewX(-18deg);
}

.button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button--ghost {
  color: var(--text);
  background: rgba(18, 67, 88, 0.08);
  box-shadow: none;
}

.button--accent {
  background: linear-gradient(135deg, var(--accent), #ffab72);
  box-shadow: 0 18px 32px rgba(255, 138, 61, 0.28);
}

.is-hidden {
  display: none;
}

.ideamos-credit {
  margin: 40px 0 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 67, 88, 0.12);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(86, 113, 125, 0.9);
}

.ideamos-credit a {
  color: var(--brand-deep);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(12, 95, 125, 0.22);
  transition: color 140ms ease, border-color 140ms ease;
}

.ideamos-credit a:hover,
.ideamos-credit a:focus-visible {
  color: var(--brand);
  border-color: rgba(11, 137, 185, 0.45);
}

@media (max-width: 1180px) {
  .choice-grid,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .page-shell {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 24px));
  }

  .hero-showcase,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

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

  .hero-panel,
  .form-panel {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100%, calc(100% - 16px));
    padding: 16px 0;
  }

  .hero-panel,
  .form-panel {
    padding: 22px;
    border-radius: 24px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .field-grid,
  .summary-card dl,
  .form-actions,
  .choice-grid,
  .plan-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

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

  .form-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}


.page-shell--customers {
  grid-template-columns: 0.95fr 1.05fr;
}

.page-shell--customers .hero-panel,
.page-shell--customers .form-panel {
  min-height: 820px;
}

.hero-showcase--customers {
  grid-template-columns: 1.22fr 0.78fr;
}

.stepper--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 8px;
}

.page-shell--customers .step h3 {
  margin-top: 10px;
}

.customer-lookup {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.button--lookup {
  min-width: 180px;
  padding-inline: 20px;
}

.lookup-message {
  margin: 14px 0 0;
  min-height: 22px;
  color: #b64531;
  font-weight: 600;
}

.lookup-message.is-success {
  color: var(--success);
}

.customer-card {
  margin-top: 12px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(11, 137, 185, 0.2);
  background: linear-gradient(180deg, rgba(223, 245, 251, 0.86), rgba(255, 255, 255, 0.94));
}

.customer-card h4 {
  margin: 0;
  font-size: 1rem;
  font-family: "Sora", "Manrope", sans-serif;
}

.customer-card .field-grid {
  margin-top: 14px;
}

.customer-card input[readonly] {
  background: rgba(255, 255, 255, 0.75);
  color: var(--brand-deep);
  font-weight: 600;
}

@media (max-width: 1180px) {
  .customer-lookup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button--lookup {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 980px) {
  .page-shell--customers {
    grid-template-columns: 1fr;
  }
}

