:root {
  --primary: #005a9c;
  --primary-dark: #003f74;
  --accent: #ffd52c;
  --accent-dark: #f2bc00;
  --ink: #172033;
  --muted: #667085;
  --line: #d9e2ef;
  --soft: #f7f9fb;
  --brand-soft: #fff7c7;
  --white: #ffffff;
  --success: #138a55;
  --warning: #b45309;
  --shadow: 0 14px 36px rgba(0, 90, 156, 0.14);
  --radius: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.no-hero {
  background: var(--soft);
}

img {
  display: block;
  max-width: 100%;
}

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 226, 239, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-dark);
  white-space: nowrap;
}

.brand-logo-img {
  width: 74px;
  height: 42px;
  border: 1px solid rgba(0, 90, 156, 0.16);
  border-radius: 8px;
  background: var(--accent);
  object-fit: cover;
  object-position: center;
}

.brand-text {
  color: var(--primary-dark);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav a,
.auth-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 6px;
  color: #344054;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--brand-soft);
  color: var(--primary-dark);
}

.auth-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-links .register-link {
  background: var(--accent);
  color: var(--primary-dark);
}

.auth-links .register-link:hover {
  background: var(--accent-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--primary-dark);
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-slides,
.hero-slide {
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: none;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
}

.hero-content {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ed2ff;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 54px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-kicker {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
}

.hero-copy {
  max-width: 640px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 36px 0 0;
  padding: 0;
}

.hero-metrics div {
  min-width: 128px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.hero-metrics dt {
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-dots {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 28px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 10px 24px rgba(255, 213, 44, 0.28);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--primary-dark);
}

.btn-small {
  min-height: 34px;
  padding: 0 12px;
  background: var(--brand-soft);
  color: var(--primary-dark);
  font-size: 14px;
}

.section {
  padding: 74px 0;
}

.section.alt {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2,
.page-title h1 {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.25;
}

.section-head p:last-child,
.page-title p {
  max-width: 640px;
  margin: 8px 0 0;
  color: var(--muted);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.vehicle-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vehicle-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf4ff, #f7fafc);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-fallback-label {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--primary-dark);
  font-weight: 800;
  text-align: center;
}

.image-frame.is-fallback .image-fallback-label {
  display: flex;
}

.vehicle-image {
  display: block;
  aspect-ratio: 4 / 3;
}

.vehicle-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(13, 71, 161, 0.9);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.vehicle-body {
  padding: 16px;
}

.vehicle-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.vehicle-title-row h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.vehicle-title-row span {
  flex: 0 0 auto;
  padding: 2px 8px;
  border-radius: 999px;
  background: #fff4e6;
  color: var(--warning);
  font-size: 12px;
  font-weight: 800;
}

.vehicle-body p {
  min-height: 44px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.vehicle-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 14px 0;
  padding: 0;
}

.vehicle-meta div {
  padding: 10px;
  border-radius: 6px;
  background: var(--soft);
}

.vehicle-meta dt {
  color: #7b8794;
  font-size: 12px;
}

.vehicle-meta dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.vehicle-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vehicle-bottom strong {
  color: #d9480f;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

.advantage-grid,
.steps-grid,
.qualification-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.advantage-item,
.step-item,
.qualification-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.advantage-icon,
.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--primary-dark);
  font-weight: 900;
}

.advantage-item h3,
.step-item h3,
.qualification-item h3 {
  margin: 16px 0 8px;
  font-size: 20px;
}

.advantage-item p,
.step-item p,
.qualification-item p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-radius: 8px;
  background: var(--primary-dark);
  color: var(--white);
}

.cta-band h2 {
  margin: 0;
  font-size: 30px;
}

.cta-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: 58px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

.page-hero h1 {
  margin: 0;
  font-size: 40px;
  color: var(--white);
}

.page-hero p {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.filter-panel {
  margin-top: -28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
}

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

.form-field label {
  color: #344054;
  font-size: 14px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfd8e6;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 9px 12px;
  outline: none;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.12);
}

.input-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.input-action .btn {
  min-height: 44px;
}

.radio-row,
.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.radio-row label,
.checkbox-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 34px 0 20px;
}

.list-toolbar strong {
  color: var(--primary-dark);
}

.empty-state {
  padding: 42px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.pagination button {
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.pagination button.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 36px;
  padding: 48px 0 28px;
}

.detail-main-image {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.thumb-row button {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--soft);
  cursor: pointer;
}

.thumb-row button.is-active {
  border-color: var(--accent);
}

.thumb-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-summary {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
}

.detail-summary h1 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.28;
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-line span {
  color: var(--muted);
}

.price-line strong {
  color: #d9480f;
  font-size: 34px;
  line-height: 1;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
  padding: 0;
}

.spec-grid div {
  padding: 12px;
  border-radius: 6px;
  background: var(--soft);
}

.spec-grid dt {
  color: var(--muted);
  font-size: 13px;
}

.spec-grid dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.summary-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.detail-section {
  padding-top: 38px;
}

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

.inspection-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.inspection-item strong {
  color: var(--success);
}

.detail-description {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #344054;
}

.join-layout,
.contact-layout,
.auth-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.info-panel,
.form-panel,
.auth-panel,
.about-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.info-panel h2,
.form-panel h2,
.auth-panel h1,
.about-panel h2 {
  margin: 0 0 16px;
  font-size: 26px;
}

.benefit-list,
.commitment-list,
.contact-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li,
.commitment-list li,
.contact-list li {
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--soft);
}

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

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

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.form-error {
  margin: 0;
  color: #b42318;
  font-size: 14px;
  font-weight: 700;
}

.about-copy {
  margin: 0;
  color: #344054;
}

.about-copy + .about-copy {
  margin-top: 14px;
}

.qualification-item {
  min-height: 168px;
}

.qualification-item .doc-stamp {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8f5ee;
  color: var(--success);
  font-size: 13px;
  font-weight: 800;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.doc-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.doc-card a {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--soft);
}

.doc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-card div {
  padding: 16px;
}

.doc-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.doc-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-map {
  min-height: 220px;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(30, 136, 229, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(30, 136, 229, 0.08) 1px, transparent 1px),
    #f8fbff;
  background-size: 28px 28px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  font-weight: 800;
  text-align: center;
}

.auth-page {
  min-height: calc(100vh - 72px);
  padding: 58px 0;
}

.auth-layout {
  grid-template-columns: 1fr 460px;
}

.auth-aside {
  min-height: 520px;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  color: var(--white);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.auth-aside h2 {
  max-width: 520px;
  margin: 0;
  font-size: 34px;
}

.auth-aside p {
  max-width: 520px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.auth-panel {
  align-self: center;
}

.auth-links-line {
  margin: 18px 0 0;
  color: var(--muted);
}

.auth-links-line a {
  color: var(--primary-dark);
  font-weight: 800;
}

.site-footer {
  background: #071d39;
  color: rgba(255, 255, 255, 0.76);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
  padding: 34px 0;
}

.footer-main h2,
.footer-main h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.footer-main p {
  margin: 0 0 8px;
}

.footer-main a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(7, 29, 57, 0.56);
}

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

.modal-panel {
  width: min(100%, 560px);
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px;
  box-shadow: 0 24px 70px rgba(7, 29, 57, 0.28);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.modal-head h2 {
  margin: 0;
  font-size: 24px;
}

.modal-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 120;
  max-width: min(90vw, 520px);
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  border-radius: 8px;
  background: #172033;
  color: var(--white);
  padding: 12px 18px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.22);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (max-width: 1024px) {
  .vehicle-grid,
  .vehicle-grid.compact,
  .advantage-grid,
  .steps-grid,
  .qualification-grid,
  .doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-grid,
  .detail-layout,
  .join-layout,
  .contact-layout,
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-aside {
    min-height: 360px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .nav-wrap {
    min-height: 64px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    flex: 1 0 100%;
    order: 3;
    align-items: stretch;
    flex-direction: column;
    margin-left: 0;
    padding: 10px 0 16px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .auth-links {
    margin-left: auto;
  }

  .hero-slides,
  .hero-slide {
    min-height: 520px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-kicker {
    font-size: 20px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head,
  .list-toolbar,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .detail-summary h1 {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    font-size: 19px;
  }

  .brand-logo-img {
    width: 58px;
    height: 34px;
  }

  .auth-links a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 14px;
  }

  .hero-slides,
  .hero-slide {
    min-height: 500px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-actions,
  .detail-actions,
  .form-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .input-action {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    gap: 10px;
  }

  .hero-metrics div {
    flex: 1 1 100px;
    min-width: 0;
  }

  .hero-dots {
    left: 14px;
    right: auto;
  }

  .vehicle-grid,
  .vehicle-grid.compact,
  .advantage-grid,
  .steps-grid,
  .qualification-grid,
  .doc-grid,
  .inspection-grid,
  .spec-grid,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    padding: 16px;
  }

  .price-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-line strong {
    font-size: 30px;
  }

  .info-panel,
  .form-panel,
  .auth-panel,
  .about-panel,
  .detail-summary {
    padding: 22px;
  }

  .auth-aside {
    min-height: 300px;
    padding: 24px;
  }

  .auth-aside h2 {
    font-size: 28px;
  }
}
