@charset "UTF-8";
/* line 1, app/assets/stylesheets/frontend/_global.scss */
.vd-dialog, .dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* line 12, app/assets/stylesheets/frontend/_global.scss */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
}

/* line 19, app/assets/stylesheets/frontend/_global.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* line 32, app/assets/stylesheets/frontend/_global.scss */
body {
  font-family: "Inter", sans-serif;
  color: #0f172a;
  background: #f8fafc;
  overflow-x: hidden;
}

/* line 39, app/assets/stylesheets/frontend/_global.scss */
body:has(dialog:modal),
body:has(.dialog-overlay.open) {
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* line 68, app/assets/stylesheets/frontend/_global.scss */
.btn-primary:hover,
.auth-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* line 74, app/assets/stylesheets/frontend/_global.scss */
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

/* line 78, app/assets/stylesheets/frontend/_global.scss */
::placeholder {
  color: #99a0ae;
}

/* line 82, app/assets/stylesheets/frontend/_global.scss */
sub {
  font-size: 0.7em;
  vertical-align: sub;
}

/* Dialog overlay */
/* line 88, app/assets/stylesheets/frontend/_global.scss */
.dialog-overlay {
  z-index: 1000;
}

/* line 92, app/assets/stylesheets/frontend/_global.scss */
.dialog-overlay.open {
  display: flex;
}

/* line 100, app/assets/stylesheets/frontend/_global.scss */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 12px;
  padding-inline: 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
}

/* line 113, app/assets/stylesheets/frontend/_global.scss */
.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* line 118, app/assets/stylesheets/frontend/_global.scss */
.btn--sm {
  padding-block: 10px;
  padding-inline: 20px;
  font-size: 13px;
}

/* line 124, app/assets/stylesheets/frontend/_global.scss */
.btn--primary {
  background: #0d63d1;
  color: #FAF8FF;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

/* line 131, app/assets/stylesheets/frontend/_global.scss */
.btn--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* line 137, app/assets/stylesheets/frontend/_global.scss */
.btn--destructive {
  background: #dc2626;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* line 144, app/assets/stylesheets/frontend/_global.scss */
.btn--destructive:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #fff;
}

/* line 150, app/assets/stylesheets/frontend/_global.scss */
.btn--destructive:disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* line 156, app/assets/stylesheets/frontend/_global.scss */
.btn--destructive-outline {
  background: transparent;
  color: #dc2626;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #dc2626;
}

/* line 164, app/assets/stylesheets/frontend/_global.scss */
.btn--destructive-outline:hover {
  transform: translateY(-1px);
}

/* line 168, app/assets/stylesheets/frontend/_global.scss */
.btn--destructive-outline:disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* line 174, app/assets/stylesheets/frontend/_global.scss */
.btn--outline {
  background: transparent;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #D1D5DB;
}

/* line 182, app/assets/stylesheets/frontend/_global.scss */
.btn--outline:hover {
  background: #F9FAFB;
  transform: translateY(-1px);
}

/* line 187, app/assets/stylesheets/frontend/_global.scss */
.btn--outline:disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* line 195, app/assets/stylesheets/frontend/_global.scss */
.confirm-dialog {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.45);
  padding: 20px;
  font-family: Inter, sans-serif;
}

/* line 206, app/assets/stylesheets/frontend/_global.scss */
.confirm-dialog[hidden] {
  display: none;
}

/* line 210, app/assets/stylesheets/frontend/_global.scss */
.confirm-dialog__card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 440px;
  padding: 24px 28px;
}

/* line 219, app/assets/stylesheets/frontend/_global.scss */
.confirm-dialog__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

/* line 227, app/assets/stylesheets/frontend/_global.scss */
.confirm-dialog__title {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  line-height: 1.3;
}

/* line 235, app/assets/stylesheets/frontend/_global.scss */
.confirm-dialog__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #94A3B8;
  display: flex;
  flex-shrink: 0;
}

/* line 244, app/assets/stylesheets/frontend/_global.scss */
.confirm-dialog__close:hover {
  color: #0F172A;
}

/* line 249, app/assets/stylesheets/frontend/_global.scss */
.confirm-dialog__body {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.55;
  margin: 0 0 22px;
}

/* line 256, app/assets/stylesheets/frontend/_global.scss */
.confirm-dialog__footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* line 3, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-section {
  position: relative;
  min-height: 100dvh;
  background: #020C21;
  overflow: hidden;
  padding: 0 24px;
}

/* line 10, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* line 16, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 22, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-section__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(275deg, rgba(2, 12, 33, 0.3) -14%, #020C21 105%);
}

/* line 29, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 0;
}

/* line 41, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 64px;
  padding-top: 0;
  padding-bottom: 16px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1025px) {
  /* line 55, app/assets/stylesheets/frontend/landing/_hero.scss */
  .hero-section {
    display: grid;
    grid-template-rows: auto 1fr;
  }
  /* line 59, app/assets/stylesheets/frontend/landing/_hero.scss */
  .hero-content {
    align-items: center;
  }
}

/* line 64, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-grid {
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7.5px);
  border-radius: 32px;
  padding: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 420px;
  gap: 36px;
  flex: 1;
  align-items: start;
}

/* line 76, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-grid__left {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 84, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-h1 {
  max-width: 732px;
  font-size: 56px;
  font-weight: 700;
  line-height: 69px;
  letter-spacing: -2px;
  color: rgba(255, 255, 255, 0.95);
}

/* line 94, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 99, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-rating__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 105, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-rating__stars {
  display: flex;
}

/* line 109, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-rating__score {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* line 115, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-rating__separator {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 6px;
}

/* line 121, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-rating__count {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

/* line 127, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-subtext {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

/* line 134, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-price-box {
  background: rgba(0, 0, 0, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 22px;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 144, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-price-box__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 150, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-price-box__item-icon {
  flex-shrink: 0;
}

/* line 154, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-price-box__item-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 161, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-price-box__item-value {
  font-size: 22px;
  font-weight: 700;
  color: white;
}

/* line 166, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-price-box__item-value--total {
  font-size: 32px;
}

/* line 171, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-price-box__operator {
  font-size: 32px;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.4);
}

/* line 177, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-price-box__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* line 183, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-price-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* line 189, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-price-features {
  display: flex;
  gap: 40px;
}

/* line 194, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-price-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 199, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-price-feature span {
  font-size: 14px;
  color: white;
}

/* line 206, app/assets/stylesheets/frontend/landing/_hero.scss */
.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border: 1.2px solid white;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  color: white;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  width: fit-content;
}

/* line 224, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-features-row {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

/* line 230, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 235, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-feature__icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 0.9px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 247, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-feature__title {
  font-size: 12px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
}

/* line 254, app/assets/stylesheets/frontend/landing/_hero.scss */
.hero-feature__subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/* line 3, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-section {
  padding: 140px 24px;
  position: relative;
  background: #f8fafc;
}

/* line 8, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(73% 68% at 50% 50%, rgba(29, 102, 219, 0.05) 0%, transparent 70%);
}

/* line 14, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-section__inner {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* line 24, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

/* line 29, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-tabs__wrapper {
  display: flex;
  background: white;
  border: 1.125px solid #e2e8f0;
  border-radius: 18px;
  padding: 4.5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* line 39, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-tabs__thumb {
  position: absolute;
  top: 4.5px;
  left: 0;
  height: calc(100% - 9px);
  width: 0;
  background: rgba(13, 99, 209, 0.06);
  box-shadow: inset 0 0 0 2px #0d63d1;
  border-radius: 16px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

/* line 53, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-tabs__tab {
  padding: 14px 32px;
  border-radius: 16px;
  border: none;
  background: transparent;
  color: #0f172a;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.28s ease;
  position: relative;
  z-index: 1;
}

/* line 66, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-tabs__tab--active {
  color: #0d63d1;
}

/* line 74, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

/* line 82, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-subtitle {
  font-size: 20px;
  text-align: center;
  color: #0f172a;
  margin-bottom: 40px;
  font-family: Plus Jakarta Sans, sans-serif;
}

/* line 92, app/assets/stylesheets/frontend/landing/_pricing.scss */
.vehicle-selector {
  display: flex;
  flex-wrap: nowrap;
  margin: 0 auto;
}

/* line 97, app/assets/stylesheets/frontend/landing/_pricing.scss */
.vehicle-selector__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 9px 18px;
  border: 1.125px solid #cbd5e1;
  background: transparent;
  color: #0f172a;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}

/* line 113, app/assets/stylesheets/frontend/landing/_pricing.scss */
.vehicle-selector__btn:first-child {
  border-radius: 14px 0 0 14px;
}

/* line 117, app/assets/stylesheets/frontend/landing/_pricing.scss */
.vehicle-selector__btn:last-child {
  border-radius: 0 14px 14px 0;
}

/* line 121, app/assets/stylesheets/frontend/landing/_pricing.scss */
.vehicle-selector__btn:only-child {
  border-radius: 14px;
  cursor: default;
}

/* line 126, app/assets/stylesheets/frontend/landing/_pricing.scss */
.vehicle-selector__btn:not(:first-child) {
  margin-left: -1px;
}

/* line 130, app/assets/stylesheets/frontend/landing/_pricing.scss */
.vehicle-selector__btn--active {
  border-color: rgba(13, 99, 209, 0.2);
  background: white;
  color: #0d63d1;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* line 138, app/assets/stylesheets/frontend/landing/_pricing.scss */
.vehicle-selector__btn svg {
  color: inherit;
}

/* line 147, app/assets/stylesheets/frontend/landing/_pricing.scss */
.vehicle-selector__spacer {
  height: 66px;
}

/* line 152, app/assets/stylesheets/frontend/landing/_pricing.scss */
.vehicle-selector-wrap {
  display: flex;
  margin-bottom: 40px;
  overflow-x: auto;
}

/* line 160, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-business-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 40px;
  max-width: 560px;
  min-height: 66px;
  padding: 14px 20px;
  background: rgba(13, 99, 209, 0.06);
  border: 1px solid rgba(13, 99, 209, 0.18);
  border-radius: 14px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

/* line 177, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-business-notice svg {
  flex-shrink: 0;
}

/* line 184, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
}

/* line 190, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card {
  width: 492px;
  background: white;
  border-radius: 32px;
  padding: 32px 36px;
  position: relative;
  border: 1px solid #e2e8f0;
}

/* line 198, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card--featured {
  border: 5px solid #0d63d1;
  box-shadow: 0 4px 40px -1px rgba(0, 0, 0, 0.14), 0 20px 25px -5px rgba(37, 99, 235, 0.05);
}

/* line 204, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d63d1;
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 219, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__header {
  text-align: center;
  margin-bottom: 20px;
}

/* line 224, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__plan-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* line 232, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
}

/* line 239, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__price-value {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
}

/* line 246, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__price-unit {
  font-size: 26px;
  font-weight: 600;
}

/* line 251, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__price-desc {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 6px;
}

/* line 261, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 18px;
}

/* line 269, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__breakdown-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 275, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__breakdown-badge {
  background: #E6EDF5;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 500;
  font-size: 16px;
  min-width: 76px;
  text-align: center;
}

/* line 285, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__breakdown-label {
  font-weight: 500;
  font-size: 16px;
}

/* line 291, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}

/* line 298, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 304, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(13, 99, 209, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 315, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__feature-text {
  font-weight: 500;
  font-size: 15px;
}

/* line 321, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__cta {
  width: 100%;
  padding: 16px;
  background: #0d63d1;
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}

/* line 333, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__cta--standard {
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.2);
}

/* line 337, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__cta--sofort {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* line 342, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-card__prereq-link {
  display: block;
  margin: 12px auto 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #64748b;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

/* line 358, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-info {
  background: rgba(0, 0, 0, 0.03);
  border: 1.5px solid rgba(0, 0, 0, 0.04);
  border-radius: 22px;
  padding: 22px;
  margin-top: 40px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

/* line 368, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-info__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* line 373, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-info__content {
  flex: 1;
}

/* line 377, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-info__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

/* line 384, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-info__text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* line 390, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-info__link-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 396, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-info__link {
  font-size: 16px;
  font-weight: 500;
  color: #0d63d1;
  text-decoration: underline;
}

/* line 403, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-info__chart {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/* line 411, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-info__chart-legend {
  display: flex;
  gap: 16px;
}

/* line 415, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-info__chart-legend span {
  font-size: 12px;
}

/* line 418, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-info__chart-legend span:first-child {
  color: rgba(15, 23, 42, 0.7);
}

/* line 422, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-info__chart-legend span:last-child {
  color: #0d63d1;
}

/* line 431, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-decision {
  text-align: center;
  margin-top: 40px;
}

/* line 435, app/assets/stylesheets/frontend/landing/_pricing.scss */
.pricing-decision__line {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

/* line 444, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-content {
  display: none;
}

/* line 448, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-card {
  max-width: 492px;
  margin: 0 auto;
  background: white;
  border-radius: 32px;
  padding: 48px;
  position: relative;
  border: 5px solid #0d63d1;
  box-shadow: 0 4px 40px -1px rgba(0, 0, 0, 0.14), 0 20px 25px -5px rgba(37, 99, 235, 0.05);
}

/* line 459, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-card__badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d63d1;
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 474, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-card__header {
  text-align: center;
  margin-bottom: 32px;
}

/* line 479, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-card__plan-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* line 487, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-card__price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
}

/* line 494, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-card__price-value {
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
}

/* line 501, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-card__price-unit {
  font-size: 30px;
  font-weight: 600;
}

/* line 506, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-card__price-kwh {
  font-size: 16px;
  color: #0d63d1;
  font-weight: 500;
  margin-top: 4px;
}

/* line 513, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-card__price-desc {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 4px;
}

/* line 519, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-card__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

/* line 526, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-card__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 532, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-card__feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(13, 99, 209, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 543, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-card__feature-text {
  font-weight: 500;
  font-size: 15px;
}

/* line 548, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-card__cta {
  width: 100%;
  padding: 18px;
  background: #0d63d1;
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.2);
  transition: all 0.15s;
}

/* line 562, app/assets/stylesheets/frontend/landing/_pricing.scss */
.lp-card__prereq-link {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #64748b;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

/* line 3, app/assets/stylesheets/frontend/landing/_info_cards.scss */
.info-cards-section {
  padding: 80px 40px;
  background: #E8EDF3;
}

/* line 8, app/assets/stylesheets/frontend/landing/_info_cards.scss */
.info-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

/* line 16, app/assets/stylesheets/frontend/landing/_info_cards.scss */
.info-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* line 23, app/assets/stylesheets/frontend/landing/_info_cards.scss */
.info-card__visual {
  height: 180px;
  background: linear-gradient(180deg, #F0F5FF 0%, #F8FAFC 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 31, app/assets/stylesheets/frontend/landing/_info_cards.scss */
.info-card__body {
  padding: 28px;
}

/* line 35, app/assets/stylesheets/frontend/landing/_info_cards.scss */
.info-card__title {
  font-size: 19px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -0.3px;
  color: #0f172a;
  margin: 0 0 8px;
}

/* line 44, app/assets/stylesheets/frontend/landing/_info_cards.scss */
.info-card__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgba(15, 23, 42, 0.75);
  margin: 0 0 12px;
}

/* line 52, app/assets/stylesheets/frontend/landing/_info_cards.scss */
.info-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 58, app/assets/stylesheets/frontend/landing/_info_cards.scss */
.info-card__feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 64, app/assets/stylesheets/frontend/landing/_info_cards.scss */
.info-card__feature-icon {
  flex-shrink: 0;
}

/* line 68, app/assets/stylesheets/frontend/landing/_info_cards.scss */
.info-card__feature-text {
  font-size: 14px;
  line-height: 20px;
  color: #0f172a;
}

/* line 74, app/assets/stylesheets/frontend/landing/_info_cards.scss */
.info-card__link {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #0d63d1;
  text-decoration: none;
}

/* line 3, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-section {
  padding: 120px;
  background: #fff;
}

/* line 7, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* line 16, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-section__header {
  text-align: center;
  max-width: 856px;
}

/* line 21, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-section__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.5px;
  color: #0f172a;
  margin: 0 0 20px;
}

/* line 30, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-section__subtitle {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.5px;
  color: #0f172a;
  margin: 0;
  font-family: Plus Jakarta Sans, sans-serif;
}

/* line 42, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-content {
  display: flex;
  align-items: center;
  gap: 90px;
  width: 100%;
  max-width: 990px;
}

/* line 52, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-chart {
  flex: 0 0 405px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 58, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-chart__legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 64, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-chart__legend-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* line 70, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-chart__legend-bar {
  width: 42px;
  height: 8px;
  background: #0d63d1;
  border-radius: 100px;
}

/* line 76, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-chart__legend-bar--muted {
  background: rgba(1, 77, 139, 0.1);
}

/* line 81, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-chart__legend-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.8);
}

/* line 87, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-chart svg {
  display: block;
}

/* line 91, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-chart__caption {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.5px;
  color: #0f172a;
  margin: 0;
  font-family: Plus Jakarta Sans, sans-serif;
}

/* line 99, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-chart__caption + .why-thg-chart__caption {
  font-size: 18px;
  line-height: 26px;
}

/* line 108, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-divider {
  width: 1px;
  height: 203px;
  background: rgba(15, 23, 42, 0.1);
  flex-shrink: 0;
}

/* line 117, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-explain {
  flex: 0 0 405px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* line 123, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-explain__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 129, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-explain__heading {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #0f172a;
  margin: 0;
}

/* line 138, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-explain__point {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 144, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-explain__point-text {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.5px;
  color: #0f172a;
  font-family: Plus Jakarta Sans, sans-serif;
}

/* line 152, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-explain__caption {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.5px;
  color: #0f172a;
  margin: 0;
  font-family: Plus Jakarta Sans, sans-serif;
}

/* line 163, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-explain__benefit-card {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 25px 25px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 172, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-explain__benefit-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #0f172a;
}

/* line 183, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-explain__benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* line 189, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-explain__benefit-check {
  flex-shrink: 0;
  margin-top: 1px;
}

/* line 194, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-explain__benefit-text {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.3px;
  color: #0f172a;
  font-family: Plus Jakarta Sans, sans-serif;
}

/* line 205, app/assets/stylesheets/frontend/landing/_why_thg.scss */
.why-thg-cta {
  width: 320px;
  padding: 20px 0;
  letter-spacing: -0.02em;
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.2), 0 8px 10px -6px rgba(59, 130, 246, 0.2);
}

/* line 3, app/assets/stylesheets/frontend/landing/_social_proof.scss */
.social-section {
  padding: 96px 120px;
  background: white;
  text-align: center;
}

/* line 8, app/assets/stylesheets/frontend/landing/_social_proof.scss */
.social-section__title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 12px;
}

/* line 16, app/assets/stylesheets/frontend/landing/_social_proof.scss */
.social-section__subtitle {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.5;
}

/* line 25, app/assets/stylesheets/frontend/landing/_social_proof.scss */
.press-logos__heading {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.5);
  margin: 0 0 36px;
}

/* line 35, app/assets/stylesheets/frontend/landing/_social_proof.scss */
.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 48px;
  margin: 0 auto 48px;
  max-width: 720px;
}

/* line 44, app/assets/stylesheets/frontend/landing/_social_proof.scss */
.press-logos__item {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* line 50, app/assets/stylesheets/frontend/landing/_social_proof.scss */
.press-logos__logo {
  max-height: 60px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: filter 0.2s ease, opacity 0.2s ease;
}

/* line 63, app/assets/stylesheets/frontend/landing/_social_proof.scss */
a.press-logos__item:hover .press-logos__logo, a.press-logos__item:focus-visible .press-logos__logo {
  filter: grayscale(0);
  opacity: 1;
}

/* line 70, app/assets/stylesheets/frontend/landing/_social_proof.scss */
.trust-points {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
}

/* line 77, app/assets/stylesheets/frontend/landing/_social_proof.scss */
.trust-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 82, app/assets/stylesheets/frontend/landing/_social_proof.scss */
.trust-point__text {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.5px;
  text-align: left;
  white-space: pre-line;
  line-height: 1.3;
}

/* line 92, app/assets/stylesheets/frontend/landing/_social_proof.scss */
.social-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* line 98, app/assets/stylesheets/frontend/landing/_social_proof.scss */
.social-rating__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 104, app/assets/stylesheets/frontend/landing/_social_proof.scss */
.social-rating__stars {
  display: flex;
}

/* line 108, app/assets/stylesheets/frontend/landing/_social_proof.scss */
.social-rating__score {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.5px;
}

/* line 114, app/assets/stylesheets/frontend/landing/_social_proof.scss */
.social-rating__count {
  font-size: 18px;
  color: #0f172a;
  margin: 0;
}

/* line 3, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-section {
  padding: 140px 24px 40px;
  background: #f8fafc;
}

/* line 7, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-section__inner {
  max-width: 1114px;
  margin: 0 auto;
}

/* line 12, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-section__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

/* line 20, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-section__subtitle {
  font-size: 17px;
  text-align: center;
  color: #64748b;
  margin-bottom: 40px;
}

/* line 30, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-popular-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

/* line 36, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-popular-v2__heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: left;
}

/* line 44, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-popular-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  color: #0f172a;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/* line 57, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-popular-card:hover {
  border-color: #0d63d1;
  box-shadow: 0 2px 8px rgba(13, 99, 209, 0.08);
}

/* line 62, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-popular-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(13, 99, 209, 0.08);
  color: #0d63d1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 74, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-popular-card__label {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

/* line 89, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-tabs-wrap {
  margin-bottom: 24px;
  overflow-x: auto;
}

/* line 94, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-tabs-v2 {
  display: flex;
  flex-wrap: nowrap;
  width: fit-content;
  margin: 0 auto;
}

/* line 101, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-tab-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
  background: #fff;
  border: 1.125px solid #cbd5e1;
  color: #64748b;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* line 117, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-tab-v2:first-child {
  border-radius: 14px 0 0 14px;
}

/* line 121, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-tab-v2:last-child {
  border-radius: 0 14px 14px 0;
}

/* line 126, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-tab-v2:not(:first-child) {
  margin-left: -1px;
}

/* line 130, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-tab-v2:hover {
  color: #0f172a;
}

/* line 134, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-tab-v2__icon {
  display: inline-flex;
}

/* line 138, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-tab-v2__label {
  white-space: nowrap;
}

/* line 145, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-section__cat-input {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

/* line 162, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 172, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-item {
  display: none;
}

/* line 180, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-section:has(#faq-cat-allgemein:checked) .faq-item--allgemein {
  display: block;
}

/* line 184, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-section:has(#faq-cat-allgemein:checked) [for="faq-cat-allgemein"] {
  border-color: rgba(13, 99, 209, 0.2);
  color: #0d63d1;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

/* line 180, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-section:has(#faq-cat-antrag:checked) .faq-item--antrag {
  display: block;
}

/* line 184, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-section:has(#faq-cat-antrag:checked) [for="faq-cat-antrag"] {
  border-color: rgba(13, 99, 209, 0.2);
  color: #0d63d1;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

/* line 180, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-section:has(#faq-cat-auszahlung:checked) .faq-item--auszahlung {
  display: block;
}

/* line 184, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-section:has(#faq-cat-auszahlung:checked) [for="faq-cat-auszahlung"] {
  border-color: rgba(13, 99, 209, 0.2);
  color: #0d63d1;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

/* line 180, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-section:has(#faq-cat-fahrzeuge:checked) .faq-item--fahrzeuge {
  display: block;
}

/* line 184, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-section:has(#faq-cat-fahrzeuge:checked) [for="faq-cat-fahrzeuge"] {
  border-color: rgba(13, 99, 209, 0.2);
  color: #0d63d1;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

/* line 180, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-section:has(#faq-cat-unternehmen:checked) .faq-item--unternehmen {
  display: block;
}

/* line 184, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-section:has(#faq-cat-unternehmen:checked) [for="faq-cat-unternehmen"] {
  border-color: rgba(13, 99, 209, 0.2);
  color: #0d63d1;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

/* line 197, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-empty {
  text-align: center;
  padding: 40px 20px;
  color: #94a3b8;
}

/* line 202, app/assets/stylesheets/frontend/landing/_faq.scss */
.faq-empty__title {
  font-size: 15px;
  font-weight: 500;
}

@media (max-width: 768px) {
  /* line 211, app/assets/stylesheets/frontend/landing/_faq.scss */
  .faq-popular-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  /* line 217, app/assets/stylesheets/frontend/landing/_faq.scss */
  .faq-popular-v2 {
    grid-template-columns: 1fr;
  }
}

/* line 3, app/assets/stylesheets/frontend/landing/_support.scss */
.support-section {
  padding: 60px 120px 0;
  background: #f8fafc;
}

/* line 7, app/assets/stylesheets/frontend/landing/_support.scss */
.support-section__inner {
  max-width: 1008px;
  margin: 0 auto;
  text-align: center;
}

/* line 13, app/assets/stylesheets/frontend/landing/_support.scss */
.support-section__title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

/* line 20, app/assets/stylesheets/frontend/landing/_support.scss */
.support-section__subtitle {
  font-size: 20px;
  margin-bottom: 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* line 26, app/assets/stylesheets/frontend/landing/_support.scss */
.support-section__search-form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 24px;
}

/* line 34, app/assets/stylesheets/frontend/landing/_support.scss */
.support-section__search {
  flex: 1;
  min-width: 0;
  padding: 14px 22px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-family: Inter, sans-serif;
}

/* line 44, app/assets/stylesheets/frontend/landing/_support.scss */
.support-section__search:focus {
  outline: none;
  border-color: #0d63d1;
}

/* line 50, app/assets/stylesheets/frontend/landing/_support.scss */
.support-section__search-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  background: #0d63d1;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: background 0.15s;
}

/* line 64, app/assets/stylesheets/frontend/landing/_support.scss */
.support-section__search-btn:hover {
  background: #0b52ad;
}

/* line 69, app/assets/stylesheets/frontend/landing/_support.scss */
.support-section__cta {
  display: inline-block;
  padding: 20px 32px;
  background: #0d63d1;
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.15s;
}

/* line 84, app/assets/stylesheets/frontend/landing/_support.scss */
.support-section__hint {
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 48px;
}

/* line 90, app/assets/stylesheets/frontend/landing/_support.scss */
.support-section__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 48px;
}

/* line 97, app/assets/stylesheets/frontend/landing/_support.scss */
.support-cols {
  display: flex;
  justify-content: center;
  gap: 90px;
  text-align: left;
  margin-bottom: 48px;
}

/* line 105, app/assets/stylesheets/frontend/landing/_support.scss */
.support-divider-v {
  width: 1px;
  background: rgba(15, 23, 42, 0.1);
}

/* line 111, app/assets/stylesheets/frontend/landing/_support.scss */
.support-contact__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

/* line 118, app/assets/stylesheets/frontend/landing/_support.scss */
.support-contact__text {
  font-size: 18px;
  color: rgba(15, 23, 42, 0.8);
  line-height: 1.4;
  margin-bottom: 16px;
}

/* line 126, app/assets/stylesheets/frontend/landing/_support.scss */
.support-availability {
  background: rgba(1, 77, 139, 0.05);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

/* line 137, app/assets/stylesheets/frontend/landing/_support.scss */
.support-channel {
  margin-bottom: 24px;
}

/* line 140, app/assets/stylesheets/frontend/landing/_support.scss */
.support-channel__label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(15, 23, 42, 0.8);
  margin-bottom: 8px;
}

/* line 148, app/assets/stylesheets/frontend/landing/_support.scss */
.support-channel__link {
  font-size: 20px;
  font-weight: 500;
  color: #0d63d1;
  letter-spacing: -0.5px;
  text-decoration: none;
}

/* line 157, app/assets/stylesheets/frontend/landing/_support.scss */
.support-form-btn {
  padding: 20px 26px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  background: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
}

/* line 3, app/assets/stylesheets/frontend/landing/_footer.scss */
.footer {
  padding: 70px 30px 60px;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 8, app/assets/stylesheets/frontend/landing/_footer.scss */
.footer__inner {
  max-width: 1172px;
  margin: 0 auto;
}

/* line 13, app/assets/stylesheets/frontend/landing/_footer.scss */
.footer__divider {
  height: 1px;
  background: rgba(13, 99, 209, 0.1);
  margin-bottom: 20px;
}

/* line 19, app/assets/stylesheets/frontend/landing/_footer.scss */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  /* line 19, app/assets/stylesheets/frontend/landing/_footer.scss */
  .footer__bottom {
    flex-direction: column;
    gap: 20px;
  }
}

/* line 30, app/assets/stylesheets/frontend/landing/_footer.scss */
.footer__copyright-row {
  margin-top: 24px;
  text-align: center;
}

/* line 35, app/assets/stylesheets/frontend/landing/_footer.scss */
.footer__copyright {
  font-size: 14px;
  color: #0f172a;
}

/* line 40, app/assets/stylesheets/frontend/landing/_footer.scss */
.footer__social {
  display: flex;
  gap: 12px;
}

/* line 45, app/assets/stylesheets/frontend/landing/_footer.scss */
.footer__social-icon {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  border: 1px solid rgba(13, 99, 209, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0d63d1;
  text-decoration: none;
}

/* line 59, app/assets/stylesheets/frontend/landing/_footer.scss */
.footer-cols {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* line 65, app/assets/stylesheets/frontend/landing/_footer.scss */
.footer-heading {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* line 72, app/assets/stylesheets/frontend/landing/_footer.scss */
.footer-link {
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #A3A3A3;
  text-decoration: none;
}

/* line 79, app/assets/stylesheets/frontend/landing/_footer.scss */
.footer-link:hover {
  text-decoration: underline;
}

/* line 84, app/assets/stylesheets/frontend/landing/_footer.scss */
.footer-item {
  font-size: 16px;
  line-height: 30px;
  color: #0f172a;
  opacity: 0.8;
  cursor: pointer;
}

/* line 3, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
#upload-wrapper {
  display: none;
  min-height: 100vh;
  background: #fff;
}

/* line 9, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-nav {
  background: #020C21;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 50;
}

/* line 16, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

/* line 25, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* line 31, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-nav__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s;
}

/* line 37, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-nav__link:hover {
  color: #fff;
}

/* line 42, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-nav__divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
}

/* line 48, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-nav__user {
  font-size: 14px;
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
}

/* line 62, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
#upload-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px;
}

/* line 68, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-footer {
  padding: 70px 30px 60px;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 73, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-footer__inner {
  max-width: 1172px;
  margin: 0 auto;
}

/* line 78, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-footer__heading {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* line 85, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-footer__item {
  font-size: 16px;
  line-height: 30px;
  color: #0f172a;
  opacity: 0.8;
  cursor: pointer;
}

/* line 93, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-footer__divider {
  height: 1px;
  background: rgba(13, 99, 209, 0.1);
  margin-bottom: 20px;
}

/* line 99, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 105, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-footer__copyright {
  font-size: 14px;
  color: #0f172a;
}

/* line 110, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-footer__social {
  display: flex;
  gap: 12px;
}

/* line 115, app/assets/stylesheets/frontend/landing/_upload_wrapper.scss */
.upload-footer__social-icon {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  border: 1px solid rgba(13, 99, 209, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #0d63d1;
  cursor: pointer;
}

/* line 5, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-logo {
  margin-right: 32px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

/* line 14, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-nav-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
}

/* line 22, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dash-nav-item {
  text-decoration: none;
  color: #94a3b8;
  font-weight: 500;
}

/* line 27, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dash-nav-item.active {
  color: #0d63d1;
  font-weight: 600;
}

/* line 34, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

/* line 42, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-completion-pill-wrap {
  display: inline-flex;
}

/* line 46, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-completion-tooltip {
  text-align: left;
  min-width: 240px;
  max-width: 280px;
  padding: 12px 14px;
}

/* line 53, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-completion-tooltip__title {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

/* line 60, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-completion-tooltip__list {
  margin: 0 0 8px;
  padding-left: 18px;
  font-size: 12px;
  color: #374151;
}

/* line 66, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-completion-tooltip__list li {
  line-height: 1.5;
}

/* line 71, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-completion-tooltip__hint {
  font-size: 11px;
  color: #6B7280;
  line-height: 1.45;
  border-top: 1px solid #E5E7EB;
  padding-top: 8px;
  margin-top: 4px;
}

/* line 80, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-completion-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  background: rgba(13, 99, 209, 0.08);
  border: 1px solid rgba(13, 99, 209, 0.18);
  border-radius: 10px;
  color: #0d63d1;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s;
}

/* line 97, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-completion-pill:hover {
  background: rgba(13, 99, 209, 0.14);
  border-color: rgba(13, 99, 209, 0.32);
}

/* line 103, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-completion-pill__ring {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: conic-gradient(#0d63d1 var(--pct, 0%), rgba(13, 99, 209, 0.18) 0);
  flex-shrink: 0;
}

/* line 115, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-completion-pill__ring::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #fff;
  border-radius: 50%;
}

/* line 124, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-completion-pill__pct {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 700;
  color: #0d63d1;
}

/* line 132, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-completion-pill__label {
  font-size: 12px;
}

@media (max-width: 1024px) {
  /* line 137, app/assets/stylesheets/frontend/dashboard/_nav.scss */
  .dn-right > .dn-completion-pill-wrap .dn-completion-pill {
    padding: 4px;
  }
  /* line 140, app/assets/stylesheets/frontend/dashboard/_nav.scss */
  .dn-right > .dn-completion-pill-wrap .dn-completion-pill .dn-completion-pill__label {
    display: none;
  }
}

/* line 147, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-mob-menu .dn-completion-pill {
  width: 100%;
  justify-content: flex-start;
  border-radius: 12px;
  margin-bottom: 4px;
}

/* line 156, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-neue-praemie-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: transparent;
  color: #0d63d1;
  border: 1.5px solid #0d63d1;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.15s;
  cursor: pointer;
  font-family: Inter, sans-serif;
}

/* line 171, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-neue-praemie-btn:hover {
  background: rgba(13, 99, 209, 0.06);
}

/* line 177, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-user-dropdown {
  position: relative;
}

/* line 181, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-user-dropdown > button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  transition: opacity 0.15s;
}

/* line 191, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-user-dropdown > button:hover {
  opacity: 0.7;
}

/* line 196, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 208, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-user-email {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 218, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-chevron {
  flex-shrink: 0;
  opacity: 0.4;
}

/* line 224, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 48px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  min-width: 220px;
  padding: 8px;
  z-index: 200;
}

/* line 238, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-dropdown-header {
  padding: 10px 12px 8px;
}

/* line 242, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-dropdown-email {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  word-break: break-word;
  line-height: 1.3;
}

/* line 250, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-dropdown-account-type {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
}

/* line 257, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}

/* line 269, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-dropdown-item:hover {
  background: #f1f5f9;
}

/* line 274, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-dropdown-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 4px 0;
}

/* line 280, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-logout-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: #dc2626;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  text-align: left;
  transition: background 0.15s;
}

/* line 297, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-logout-btn:hover {
  background: #fef2f2;
}

/* line 303, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-hamburger {
  display: none;
  position: relative;
}

/* line 308, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-hamburger-btn {
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

/* line 324, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-mob-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 48px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  padding: 8px;
  z-index: 200;
}

/* line 338, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-mob-menu-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  text-decoration: none;
}

/* line 353, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-mob-menu-item.active {
  background: #f0f7ff;
  color: #0d63d1;
  font-weight: 600;
}

/* line 360, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-mob-menu .dn-dropdown-divider {
  margin: 4px 8px;
}

/* line 364, app/assets/stylesheets/frontend/dashboard/_nav.scss */
.dn-mob-menu .dn-logout-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  font-size: 15px;
}

/* line 8, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.dialog-panel {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

/* line 17, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.dialog-panel--vehicle {
  max-width: 540px;
}

/* line 21, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.dialog-panel--thg {
  max-width: 540px;
  max-height: 92vh;
  border-radius: 24px;
  padding: 40px 32px 36px;
  position: relative;
}

/* line 29, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.dialog-panel__header {
  padding: 24px 28px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #F1F5F9;
}

/* line 37, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.dialog-panel__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

/* line 44, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.dialog-panel__subtitle {
  margin: 4px 0 0;
  font-size: 14px;
  color: #64748b;
}

/* line 50, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.dialog-panel__close {
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  padding: 4px;
}

/* line 58, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.dialog-panel__body {
  padding: 20px 28px;
}

/* line 62, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.dialog-panel__footer {
  padding: 16px 28px 24px;
  border-top: 1px solid #F1F5F9;
}

/* line 66, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.dialog-panel__footer p {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

/* line 79, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.dialog-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* line 85, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.dialog-progress__bar {
  flex: 1;
  height: 4px;
  background: #F1F5F9;
  border-radius: 4px;
  overflow: hidden;
}

/* line 93, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.dialog-progress__fill {
  width: 0%;
  height: 100%;
  background: #0d63d1;
  border-radius: 4px;
  transition: width 0.3s;
}

/* line 101, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.dialog-progress__count {
  font-size: 13px;
  color: #64748b;
}

/* line 108, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
#prereq-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 114, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
#vprereq-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 124, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.prereq-item {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #E2E8F0;
  background: #FAFBFC;
  cursor: pointer;
  align-items: flex-start;
}

/* line 134, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.prereq-item__check {
  flex-shrink: 0;
  margin-top: 1px;
}

/* line 139, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.prereq-item__box {
  stroke: #CBD5E1;
  fill: white;
}

/* line 144, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.prereq-item__tick {
  display: none;
}

/* line 148, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.prereq-item__body {
  flex: 1;
}

/* line 152, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.prereq-item__head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* line 159, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.prereq-item__title {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

/* line 165, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.prereq-item__ref {
  font-size: 11px;
  color: #0d63d1;
  background: #EFF6FF;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

/* line 174, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.prereq-item__desc {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
}

/* line 181, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.prereq-item.is-checked {
  border-color: #BFDBFE;
  background: #F8FAFF;
}

/* line 185, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.prereq-item.is-checked .prereq-item__box {
  stroke: #0d63d1;
  fill: #EFF6FF;
}

/* line 190, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.prereq-item.is-checked .prereq-item__tick {
  display: block;
}

/* line 196, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.prereq-complete-btn {
  width: 100%;
  padding: 14px;
  background: #10B981;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: Inter, sans-serif;
}

/* line 213, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.vprereq-question {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1.5px solid #E2E8F0;
  background: #FAFBFC;
}

/* line 219, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.vprereq-question[data-answered-correct="true"] {
  border-color: #BBF7D0;
  background: #F0FDF4;
}

/* line 224, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.vprereq-question[data-answered-correct="false"] {
  border-color: #FECACA;
  background: #FEF2F2;
}

/* line 229, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.vprereq-question__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

/* line 237, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.vprereq-question__title {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

/* line 243, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.vprereq-question__ref {
  font-size: 11px;
  color: #0d63d1;
  background: #EFF6FF;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

/* line 252, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.vprereq-question__options {
  display: flex;
  gap: 8px;
}

/* line 257, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.vprereq-question__wrong-msg {
  margin: 10px 0 0;
  font-size: 12px;
  color: #DC2626;
  font-weight: 500;
}

/* line 265, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.vprereq-option {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  border: 1.5px solid #E2E8F0;
  background: white;
  color: #374151;
  font-family: Inter, sans-serif;
}

/* line 278, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.vprereq-option[data-state="correct"] {
  border: 2px solid #10B981;
  background: #DCFCE7;
  color: #166534;
}

/* line 284, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.vprereq-option[data-state="wrong"] {
  border: 2px solid #EF4444;
  background: #FEE2E2;
  color: #991B1B;
}

/* line 291, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.vprereq-footer--wrong {
  text-align: center;
  font-size: 14px;
  color: #DC2626;
  font-weight: 500;
  margin: 0;
}

/* line 303, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  padding: 4px;
}

/* line 314, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__title {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin: 0 0 6px;
  letter-spacing: -0.5px;
}

/* line 323, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__subtitle {
  font-size: 15px;
  color: #94a3b8;
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.5;
}

/* line 331, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__info-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid #F1F5F9;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 20px;
}

/* line 342, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__info-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* line 347, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__info-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}

/* line 354, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__info-text {
  font-size: 13px;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

/* line 361, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__bar {
  height: 10px;
  background: #0d63d1;
  border-radius: 100px;
  margin: 0 0 28px;
}

/* line 368, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 28px;
  padding: 0 4px;
}

/* line 376, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__steps-line {
  position: absolute;
  top: 32px;
  left: 40px;
  right: 40px;
  height: 1.5px;
  background: #e2e8f0;
  z-index: 0;
}

/* line 386, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* line 395, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid #D1D5DB;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* line 406, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__step-icon--active {
  border: 2.5px solid #0d63d1;
}

/* line 411, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__step-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin: 0 0 4px;
  white-space: pre-line;
  line-height: 1.25;
  min-height: 32px;
}

/* line 422, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__step-desc {
  font-size: 11.5px;
  color: #64748b;
  text-align: center;
  margin: 0;
  line-height: 1.4;
  max-width: 120px;
  min-height: 48px;
}

/* line 432, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__text {
  font-size: 14px;
  color: #0f172a;
  line-height: 1.65;
  margin: 0 0 24px;
}

/* line 439, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__cta {
  text-align: center;
}

/* line 442, app/assets/stylesheets/frontend/dashboard/_dashboard_wrapper.scss */
.thg-process__cta .btn-primary {
  padding: 16px 36px;
  background: #0d63d1;
  color: white;
  border: none;
  border-radius: 1000px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px -4px rgba(13, 99, 209, 0.35);
  transition: all 0.15s;
  letter-spacing: -0.01em;
}

/* line 4, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-hero {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* line 12, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-hero__row {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

/* line 19, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-hero__left {
  flex: 1;
  min-width: 280px;
}

/* line 24, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-hero__greeting {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 10px;
  font-weight: 500;
}

/* line 31, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-hero__amounts {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* line 39, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-hero__total-amount {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -3px;
  color: #0f172a;
  line-height: 1;
}

/* line 47, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-hero__pending-amount {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #0f172a;
  line-height: 1;
}

/* line 55, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-hero__amount-label {
  font-size: 13px;
  color: #0d63d1;
  font-weight: 500;
  margin-top: 6px;
}

/* line 62, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-hero__upload-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.18s;
  flex-shrink: 0;
  border-radius: 12px;
  margin-left: auto;
}

/* line 73, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-hero__upload-cta:hover {
  background: #EFF6FF;
}

/* line 78, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-hero__upload-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

/* line 84, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-hero__upload-subtitle {
  font-size: 12px;
  color: #9CA3AF;
}

/* line 90, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-icon--shrink {
  flex-shrink: 0;
}

/* line 94, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-icon--faded {
  flex-shrink: 0;
  opacity: 0.4;
}

/* line 100, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

/* line 107, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-kpi {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px 18px;
  transition: all 0.15s;
}

/* line 114, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-kpi:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* line 118, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-kpi__label {
  font-size: 10px;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* line 127, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-kpi__value {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #111827;
  line-height: 1;
}

/* line 137, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicles {
  margin-bottom: 24px;
}

/* line 140, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicles__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

/* line 147, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicles__title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

/* line 154, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* line 160, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicles__footer {
  text-align: center;
  margin-top: 14px;
}

/* line 166, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicle-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  border: 1px solid #E5E7EB;
  position: relative;
  overflow: hidden;
  display: block;
}

/* line 179, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicle-card:hover {
  border-color: #0d63d1;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* line 185, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicle-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

/* line 192, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicle-card__plate {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 8px;
}

/* line 198, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicle-card__status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

/* line 205, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicle-card__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* line 212, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicle-card__status-text {
  font-size: 13px;
  font-weight: 600;
}

/* line 217, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicle-card__value {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0f172a;
}

/* line 224, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicle-card--add {
  background: transparent;
  border: 2px dashed #CBD5E1;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #94a3b8;
  text-align: center;
  font-family: inherit;
  min-height: 100%;
}

/* line 239, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicle-card--add:hover {
  border-color: #0d63d1;
  background: #F0F7FF;
  color: #0d63d1;
  box-shadow: none;
  transform: translateY(-2px);
}

/* line 247, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicle-card--add__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EFF6FF;
  color: #0d63d1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 258, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-vehicle-card--add__label {
  font-size: 14px;
  font-weight: 600;
}

/* line 266, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px dashed #CBD5E1;
}

/* line 274, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-empty__title {
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 6px;
}

/* line 281, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-empty__desc {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 16px;
}

/* line 287, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-empty__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #0d63d1;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: Inter, sans-serif;
  transition: all 0.15s;
}

/* line 302, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-empty__btn:hover {
  transform: translateY(-1px);
}

/* line 309, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-outline-link {
  display: inline-block;
  background: none;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  text-decoration: none;
  font-family: Inter, sans-serif;
  transition: all 0.15s;
}

/* line 322, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-outline-link:hover {
  border-color: #0d63d1;
  color: #0d63d1;
}

/* line 329, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

/* line 336, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-invite {
  background: #FAFBFC;
  border-radius: 10px;
  padding: 16px 20px;
  border: 1px solid #E5E7EB;
}

/* line 342, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-invite__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 353, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-invite__label .tooltip {
  line-height: 1;
}

/* line 356, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-invite__info {
  font-size: 13px;
  color: #94A3B8;
  cursor: help;
  text-transform: none;
  letter-spacing: 0;
}

/* line 363, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-invite__info:hover {
  color: #0d63d1;
}

/* line 366, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-invite__title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

/* line 374, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-invite__desc {
  font-size: 11px;
  color: #6B7280;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* line 381, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-invite__copy-btn {
  padding: 7px 14px;
  background: #0d63d1;
  border: none;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: Inter, sans-serif;
  color: #fff;
  transition: all 0.15s;
}

/* line 393, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-invite__copy-btn:hover {
  transform: translateY(-1px);
}

/* line 399, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status {
  background: #FAFBFC;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* line 408, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* line 415, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status__badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 425, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status__level {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

/* line 431, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status__confirmed {
  font-size: 12px;
  color: #9CA3AF;
}

/* line 436, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status__progress {
  margin-bottom: 12px;
}

/* line 440, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status__progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

/* line 446, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status__progress-label {
  font-size: 11px;
  color: #9CA3AF;
}

/* line 451, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status__progress-pct {
  font-size: 11px;
  font-weight: 600;
  color: #0d63d1;
}

/* line 457, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status__track {
  height: 5px;
  background: #F1F5F9;
  border-radius: 999px;
}

/* line 463, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status__fill {
  height: 5px;
  background: #0d63d1;
  border-radius: 999px;
}

/* line 469, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status__remaining {
  font-size: 11px;
  color: #6B7280;
  margin-top: 4px;
}

/* line 475, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status__stats {
  display: flex;
  gap: 16px;
  font-size: 12px;
  margin-top: 4px;
}

/* line 482, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status__stat-value {
  color: #111827;
}

/* line 486, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status__stat-value--primary {
  color: #0d63d1;
}

/* line 490, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-referral-status__stat-label {
  color: #9CA3AF;
}

/* line 496, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-stations {
  margin-bottom: 24px;
}

/* line 499, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-stations__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

/* line 506, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-stations__title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

/* line 513, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-stations__meta {
  font-size: 12px;
  color: #9CA3AF;
}

/* line 518, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-stations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* line 524, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-stations__footer {
  text-align: center;
  margin-top: 14px;
}

/* line 530, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-station-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  border: 1px solid #E5E7EB;
  position: relative;
  overflow: hidden;
  display: block;
}

/* line 543, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-station-card:hover {
  border-color: #0d63d1;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* line 549, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-station-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

/* line 556, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-station-card__address {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 10px;
}

/* line 562, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-station-card__kwh {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0f172a;
}

/* line 569, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-station-card--add {
  background: transparent;
  border: 2px dashed #CBD5E1;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #94a3b8;
  text-align: center;
  min-height: 100%;
}

/* line 582, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-station-card--add:hover {
  border-color: #0d63d1;
  background: #F0F7FF;
  color: #0d63d1;
  box-shadow: none;
  transform: translateY(-2px);
}

/* line 590, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-station-card--add__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EFF6FF;
  color: #0d63d1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 601, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-station-card--add__label {
  font-size: 14px;
  font-weight: 600;
}

/* line 609, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
  align-items: start;
}

/* line 618, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-next-steps {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* line 624, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-next-steps__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0f172a;
}

/* line 632, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.15s;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
}

/* line 643, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-step:hover {
  background: #f8fafc;
}

/* line 647, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-step--bordered {
  border-bottom: 1px solid #F3F4F6;
}

/* line 651, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-step__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* line 657, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-step__dot--primary {
  background: #0d63d1;
}

/* line 661, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-step__dot--muted {
  background: #CBD5E1;
}

/* line 666, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-step__body {
  flex: 1;
}

/* line 670, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-step__label {
  color: #111827;
}

/* line 673, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-step__label--primary {
  font-size: 14px;
  font-weight: 600;
}

/* line 678, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-step__label--default {
  font-size: 13px;
  font-weight: 500;
}

/* line 684, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-step__sub {
  font-size: 11px;
  color: #9CA3AF;
  margin-top: 1px;
}

/* line 690, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-step__chevron {
  flex-shrink: 0;
  opacity: 0.3;
}

/* line 697, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-activities {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 20px 22px;
}

/* line 703, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-activities__title {
  font-size: 11px;
  font-weight: 700;
  color: #9CA3AF;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* line 713, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-activity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

/* line 719, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-activity--bordered {
  border-bottom: 1px solid #F3F4F6;
}

/* line 723, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-activity__body {
  flex: 1;
  min-width: 0;
}

/* line 728, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-activity__main {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 737, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-activity__date {
  font-size: 11px;
  color: #B0B8C4;
}

/* line 742, app/assets/stylesheets/frontend/dashboard/_overview.scss */
.profile-activity__status {
  font-size: 11px;
  font-weight: 600;
  color: #0d63d1;
}

@media (max-width: 768px) {
  /* line 751, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-hero {
    padding: 22px 20px;
    margin-bottom: 20px;
  }
  /* line 755, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-hero__row {
    gap: 18px;
  }
  /* line 759, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-hero__left {
    min-width: 0;
    width: 100%;
  }
  /* line 764, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-hero__amounts {
    gap: 20px;
    margin-bottom: 16px;
  }
  /* line 769, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-hero__total-amount {
    font-size: 40px;
    letter-spacing: -1.5px;
  }
  /* line 774, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-hero__pending-amount {
    font-size: 22px;
    letter-spacing: -0.5px;
  }
  /* line 779, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-hero__upload-cta {
    margin-left: 0;
    width: 100%;
    padding: 12px 16px;
    background: #EFF6FF;
  }
  /* line 785, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-hero__upload-cta .profile-icon--faded {
    margin-left: auto;
  }
  /* line 791, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-kpis {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  /* line 796, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-kpi {
    padding: 14px 16px;
  }
  /* line 799, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-kpi__value {
    font-size: 22px;
  }
  /* line 804, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-vehicles__grid {
    grid-template-columns: 1fr;
  }
  /* line 808, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-vehicle-card--add {
    min-height: 96px;
    padding: 18px;
  }
  /* line 813, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-referral {
    grid-template-columns: 1fr;
  }
  /* line 817, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-stations__header {
    flex-wrap: wrap;
    gap: 4px 12px;
  }
  /* line 822, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-stations__grid {
    grid-template-columns: 1fr;
  }
  /* line 826, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-station-card {
    padding: 16px 18px;
  }
  /* line 829, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-station-card__address {
    word-break: break-word;
  }
  /* line 833, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-station-card--add {
    min-height: 96px;
    padding: 18px;
  }
}

@media (max-width: 480px) {
  /* line 841, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-hero__total-amount {
    font-size: 34px;
  }
  /* line 845, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-hero__pending-amount {
    font-size: 20px;
  }
  /* line 849, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-hero__greeting {
    font-size: 12px;
  }
  /* line 853, app/assets/stylesheets/frontend/dashboard/_overview.scss */
  .profile-vehicles__title,
.profile-stations__title {
    font-size: 16px;
  }
}

/* line 2, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-flash {
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 11, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-flash--success {
  background: #DCFCE7;
  border: 1px solid #BBF7D0;
  color: #166534;
}

/* line 17, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-flash--alert {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
}

/* line 25, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-header {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #0f172a;
}

/* line 32, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-subheader {
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 24px;
}

/* line 39, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-tabs {
  overflow-x: auto;
  margin-bottom: 32px;
}

/* line 43, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-tabs__row {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #E5E7EB;
  min-width: max-content;
}

/* line 51, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-tab {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* line 65, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-tab--active {
  font-weight: 700;
  color: #0d63d1;
  border-bottom: 2px solid #0d63d1;
}

/* line 71, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-tab__badge {
  background: #FEF3C7;
  color: #92400E;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  cursor: help;
}

/* line 83, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-section-title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px;
}

/* line 90, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-section-desc {
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 20px;
}

/* line 96, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-section-desc--highlight {
  color: #111827;
  font-weight: 600;
}

/* line 101, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

/* line 108, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-form-fields--gap14 {
  gap: 14px;
}

/* line 112, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

/* line 120, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-field-label--mb10 {
  margin-bottom: 10px;
}

/* line 124, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-field-label--sub {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 6px;
}

/* line 131, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-field-optional {
  font-weight: 400;
  color: #94a3b8;
}

/* line 136, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-field-required {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 600;
  color: #92400E;
  background: #FEF3C7;
  border-radius: 8px;
  vertical-align: middle;
  cursor: help;
}

/* line 149, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-field-hint {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 6px;
}

/* line 155, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-field-hint--mt4 {
  margin-top: 4px;
}

/* line 159, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-readonly-input {
  background: #F9FAFB;
  color: #9CA3AF;
  cursor: not-allowed;
}

/* line 165, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-actions {
  display: flex;
  justify-content: flex-end;
}

/* line 170, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-actions--gap {
  gap: 12px;
}

/* line 174, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-card-spaced {
  margin-bottom: 24px;
}

/* line 179, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-radio-group {
  margin-bottom: 16px;
}

/* line 182, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-radio-group__options {
  display: flex;
  gap: 20px;
}

/* line 187, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-radio-group__label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
}

/* line 198, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-address-fields {
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

/* line 204, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-row {
  display: flex;
  gap: 12px;
}

/* line 208, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-row--wrap {
  flex-wrap: wrap;
}

/* line 212, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-row--mb16 {
  margin-bottom: 16px;
}

/* line 216, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-row--mb20 {
  margin-bottom: 20px;
}

/* line 222, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-col--fixed {
  flex: 0 0 140px;
}

/* line 226, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-col--flex {
  flex: 1;
}

/* line 230, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-col--min180 {
  flex: 1;
  min-width: 180px;
}

/* line 237, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

/* line 243, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-info-row__text {
  font-size: 11px;
  color: #94a3b8;
}

/* line 250, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

/* line 259, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

/* line 266, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-filters {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* line 272, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-select {
  padding: 8px 12px;
  font-size: 13px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  outline: none;
  color: #374151;
  background: #fff;
  cursor: pointer;
  font-family: Inter, sans-serif;
}

/* line 284, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-search-wrap {
  position: relative;
}

/* line 288, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* line 296, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-search {
  padding: 8px 12px 8px 30px;
  font-size: 13px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  outline: none;
  width: 180px;
  color: #374151;
  background: #fff;
  font-family: Inter, sans-serif;
}

/* line 308, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-table-wrap {
  overflow-x: auto;
}

/* line 312, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

/* line 318, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-thead-row {
  background: #f8fafc;
  border-bottom: 1px solid #E5E7EB;
}

/* line 323, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* line 333, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-th--center {
  text-align: center;
}

/* line 338, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-row {
  border-bottom: 1px solid #F1F5F9;
}

/* line 341, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-row:hover {
  background: #F8FAFF;
}

/* line 345, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-row--last {
  border-bottom: none;
}

/* line 350, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-td {
  padding: 16px;
  color: #374151;
  font-size: 13px;
}

/* line 355, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-td--date {
  color: #2563EB;
}

/* line 359, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-td--amount {
  font-weight: 700;
  color: #111827;
}

/* line 364, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-td--code {
  color: #2563EB;
  font-weight: 500;
}

/* line 369, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-td--center {
  text-align: center;
}

/* line 374, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-pdf-link {
  color: #2563EB;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 381, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-pdf-disabled {
  color: #CBD5E1;
}

/* line 385, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-empty {
  text-align: center;
  padding: 48px 24px;
  color: #94a3b8;
}

/* line 390, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-empty__icon {
  margin: 0 auto 12px;
  display: block;
}

/* line 395, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-empty__title {
  font-size: 15px;
  font-weight: 500;
  color: #6B7280;
  margin-bottom: 4px;
}

/* line 402, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-rg-empty__desc {
  font-size: 13px;
}

/* line 408, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-separator {
  border-top: 1px solid #E5E7EB;
  padding-top: 16px;
}

/* line 413, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-billing-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 14px;
}

/* line 421, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-billing-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 428, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-notif-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

/* line 435, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-notif-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 16px;
  background: #F9FAFB;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
}

/* line 445, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-notif-card--locked {
  cursor: default;
}

/* line 450, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-notif-body {
  flex: 1 1 auto;
  min-width: 0;
}

/* line 455, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-notif-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

/* line 462, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-notif-info {
  font-size: 15px;
  color: #94A3B8;
  cursor: help;
  display: inline-flex;
}

/* line 469, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-notif-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #0d63d1;
}

/* line 477, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-notif-title {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 2px;
}

/* line 484, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-notif-desc {
  font-size: 12px;
  color: #94a3b8;
}

/* line 489, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-notif-disclaimer {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 16px;
  padding: 4px 2px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

/* line 498, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-notif-disclaimer__icon {
  flex-shrink: 0;
  margin-top: 1px;
}

/* line 505, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog-overlay {
  padding: 20px;
  border: none;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  inset: 0;
  overflow: visible;
  font-family: Inter, sans-serif;
}

/* line 517, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog-overlay[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 523, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog-overlay[open]::backdrop {
  background: rgba(15, 23, 42, 0.5);
}

/* line 528, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog {
  background: #fff;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 28px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 40px);
}

/* line 539, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog--wide {
  max-width: 640px;
}

/* line 543, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

/* line 550, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog__title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

/* line 557, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #94a3b8;
  display: flex;
}

/* line 566, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog__body {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.55;
  margin: 0 0 16px;
}

/* line 572, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog__body p {
  margin: 0 0 12px;
}

/* line 576, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog__body p:last-child {
  margin-bottom: 0;
}

/* line 581, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog__body--scrollable {
  overflow-y: auto;
  padding-right: 6px;
  margin-bottom: 16px;
}

/* line 587, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog__section-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 18px 0 6px;
}

/* line 594, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog__notice {
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 16px 0 12px;
  color: #92400E;
  font-size: 13px;
  line-height: 1.5;
}

/* line 605, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog__question {
  font-weight: 600;
  color: #0f172a;
  margin-top: 16px;
}

/* line 611, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  color: #334155;
  line-height: 1.5;
  cursor: pointer;
}

/* line 625, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog__consent input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

/* line 634, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog__footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* line 640, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-dialog__inline-form {
  display: inline;
}

/* line 645, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-iban-readonly {
  position: relative;
}

/* line 648, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-iban-readonly__input {
  padding-right: 44px !important;
}

/* line 650, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-iban-readonly__delete {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 665, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.bank-iban-readonly__delete:hover {
  color: #DC2626;
  background: #FEF2F2;
}

/* line 669, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.iban-delete-dialog {
  padding: 20px;
  border: none;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  inset: 0;
  overflow: visible;
}

/* line 680, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.iban-delete-dialog[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 686, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.iban-delete-dialog::backdrop {
  background: rgba(15, 23, 42, 0.5);
}

/* line 688, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.iban-delete-dialog__card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  font-family: Inter, sans-serif;
}

/* line 698, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.iban-delete-dialog__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

/* line 705, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.iban-delete-dialog__title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

/* line 712, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.iban-delete-dialog__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #94a3b8;
  display: flex;
}

/* line 720, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.iban-delete-dialog__close:hover {
  color: #0f172a;
}

/* line 723, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.iban-delete-dialog__desc {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.55;
  margin: 0 0 20px;
}

/* line 730, app/assets/stylesheets/frontend/dashboard/_bank.scss */
.iban-delete-dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

/* line 5, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-section-nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  margin-bottom: 20px;
  background: #F1F5F9;
  border-radius: 12px;
  flex-wrap: wrap;
}

/* line 16, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-section-nav__item {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  text-decoration: none;
  font-family: Inter, sans-serif;
  transition: all 0.15s;
  white-space: nowrap;
}

/* line 27, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-section-nav__item:hover {
  color: #111827;
}

/* line 31, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-section-nav__item--active {
  background: #fff;
  color: #0d63d1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* line 39, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

/* line 48, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-header__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 54, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-header__hint-link {
  font-size: 12px;
  color: #6B7280;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* line 62, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-header__hint-link::before {
  content: "ⓘ";
  font-size: 13px;
  color: #94A3B8;
}

/* line 68, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-header__hint-link:hover {
  color: #0d63d1;
  text-decoration: underline;
}

/* line 74, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #0f172a;
}

/* line 82, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-search {
  position: relative;
  min-width: 280px;
}

/* line 87, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-search__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

/* line 94, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-search__input {
  width: 100%;
  padding: 11px 16px 11px 40px;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  font-size: 14px;
  font-family: Inter, sans-serif;
  outline: none;
  background: #fff;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

/* line 106, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-search__input:focus {
  border-color: #0d63d1;
}

/* line 112, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
}

/* line 120, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-tab {
  position: relative;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #9CA3AF;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: Inter, sans-serif;
  margin-bottom: -2px;
  transition: all 0.15s;
  text-decoration: none;
}

/* line 135, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-tab--active {
  font-weight: 700;
  color: #0d63d1;
  border-bottom-color: #0d63d1;
}

/* line 142, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-tab__badge {
  position: absolute;
  top: 2px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #E5E7EB;
  color: #374151;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0;
}

/* line 160, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

/* line 169, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-count {
  font-size: 13px;
  color: #9CA3AF;
}

/* line 174, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-actions__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 180, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-btn-add {
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  background: #0d63d1;
  border: 1.5px solid #0d63d1;
  border-radius: 10px;
  cursor: pointer;
  font-family: Inter, sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* line 195, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-btn-export {
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  cursor: pointer;
  font-family: Inter, sans-serif;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

/* line 212, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-view-toggle {
  display: flex;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  overflow: hidden;
}

/* line 219, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-view-toggle__btn {
  padding: 8px 10px;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* line 227, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-view-toggle__btn--active {
  background: #F1F5F9;
}

/* line 231, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-view-toggle__btn + .papers-view-toggle__btn {
  border-left: 1px solid #cbd5e1;
}

/* line 237, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* line 245, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.18s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  position: relative;
}

/* line 257, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* line 263, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__illustration {
  position: absolute;
  top: 88px;
  right: 18px;
  width: 50%;
  max-width: 280px;
  pointer-events: none;
  z-index: 0;
}

/* line 273, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__illustration-img {
  display: block;
  width: 100%;
  height: auto;
}

/* line 279, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__body {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* line 291, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__title-wrap,
.papers-card__breakdown {
  max-width: 55%;
}

/* line 297, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

/* line 304, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__title-wrap {
  min-width: 0;
}

/* line 308, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__model {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 318, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__plate {
  font-size: 13px;
  color: #9CA3AF;
  margin-top: 4px;
}

/* line 324, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__owner {
  font-size: 12px;
  color: #6B7280;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 333, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__period-badge {
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  background: #F3F4F6;
  color: #9CA3AF;
  white-space: nowrap;
  flex-shrink: 0;
}

/* line 344, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

/* line 354, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__plan-badge,
.papers-list__plan-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.4;
}

/* line 367, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__plan-badge--fast,
.papers-list__plan-badge--fast {
  background: #D1FAE5;
  color: #047857;
}

/* line 372, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__plan-badge--standard,
.papers-list__plan-badge--standard {
  background: #DBEAFE;
  color: #1D4ED8;
}

/* line 378, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__plan-badge {
  margin-left: 8px;
  vertical-align: middle;
}

/* line 384, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

/* line 391, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* line 398, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__status-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* line 405, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__premium {
  margin-top: 18px;
}

/* line 409, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__premium-amount {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #111827;
  line-height: 1;
}

/* line 417, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__premium-label {
  font-size: 12px;
  color: #9CA3AF;
  margin-top: 4px;
  font-weight: 500;
}

/* line 425, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__breakdown {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 432, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__breakdown-item {
  font-size: 12px;
  color: #6B7280;
}

/* line 438, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__footer {
  padding: 16px 24px;
  border-top: 1px solid #F1F5F9;
  margin-top: auto;
}

/* line 444, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* line 451, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__extend {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 457, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__extend-label {
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
}

/* line 464, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__extend-toggle {
  flex-shrink: 0;
}

/* line 468, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__details-btn {
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #2563EB;
  font-family: Inter, sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  transition: all 0.15s;
}

/* line 484, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-card__aec-status {
  font-size: 11px;
  margin-top: 6px;
}

/* line 490, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* line 501, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__header {
  display: grid;
  grid-template-columns: 2.2fr 1.3fr 1fr 1.5fr 70px;
  gap: 12px;
  align-items: center;
  padding: 10px 20px;
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
  font-size: 10px;
  font-weight: 600;
  color: #9CA3AF;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* line 516, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__row {
  transition: background 0.15s;
}

/* line 519, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__row:hover {
  background: #F8FAFF;
}

/* line 523, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__row:not(:last-child) {
  border-bottom: 1px solid #F1F5F9;
}

/* line 528, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__row-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.3fr 1fr 1.5fr 70px;
  gap: 12px;
  align-items: center;
  padding: 14px 20px;
}

/* line 537, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__vehicle-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

/* line 544, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__vehicle-meta {
  font-size: 11px;
  color: #9CA3AF;
  margin-top: 2px;
}

/* line 550, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__status {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* line 556, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* line 563, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__status-text {
  font-size: 12px;
  font-weight: 600;
}

/* line 568, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__premium-amount {
  font-size: 17px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

/* line 575, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__premium-year {
  font-size: 10px;
  color: #9CA3AF;
  margin-top: 1px;
}

/* line 581, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__extend {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 587, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__extend-label {
  font-size: 11px;
  color: #374151;
  font-weight: 500;
}

/* line 593, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__extend-status {
  font-size: 10px;
}

/* line 597, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__actions {
  text-align: right;
}

/* line 601, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-list__details-btn {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: #2563EB;
  cursor: pointer;
  font-family: Inter, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0;
}

/* line 616, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

/* line 625, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-pagination__per {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* line 631, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-pagination__per-label {
  font-size: 13px;
  color: #6B7280;
  font-weight: 500;
}

/* line 637, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-pagination__per-select {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  padding: 6px 28px 6px 10px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'><path d='M2 4l3 3 3-3' stroke='%236B7280' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  appearance: none;
}

/* line 652, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-pagination__per-select:focus {
  outline: none;
  border-color: #0d63d1;
  box-shadow: 0 0 0 3px rgba(13, 99, 209, 0.15);
}

/* line 659, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-pagination__nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* line 665, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  color: #374151;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
}

/* line 683, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-pagination__btn:hover {
  border-color: #0d63d1;
  color: #0d63d1;
}

/* line 688, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-pagination__btn.is-current {
  background: #0d63d1;
  border-color: #0d63d1;
  color: #fff;
  cursor: default;
}

/* line 695, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-pagination__btn.is-disabled {
  color: #CBD5E1;
  cursor: not-allowed;
  pointer-events: none;
  background: #F8FAFC;
}

/* line 703, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-pagination__btn--edge {
  background: #F8FAFC;
}

/* line 708, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-empty {
  text-align: center;
  padding: 64px 32px;
  background: #fff;
  border-radius: 20px;
  border: 1px dashed #cbd5e1;
}

/* line 716, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-empty__icon {
  margin: 0 auto 16px;
  display: block;
}

/* line 721, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-empty__title {
  font-size: 18px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 8px;
}

/* line 728, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-empty__text {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 24px;
}

/* line 734, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-empty__btn {
  padding: 12px 28px;
  background: #0d63d1;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: Inter, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* line 750, app/assets/stylesheets/frontend/dashboard/_papers.scss */
#vehicle-sheet .vehicle-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

/* line 760, app/assets/stylesheets/frontend/dashboard/_papers.scss */
#vehicle-sheet .vehicle-sheet-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 640px;
  max-width: 92vw;
  background: #fff;
  z-index: 901;
  overflow-y: auto;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  font-family: Inter, sans-serif;
}

/* line 777, app/assets/stylesheets/frontend/dashboard/_papers.scss */
#vehicle-sheet.open .vehicle-sheet-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* line 782, app/assets/stylesheets/frontend/dashboard/_papers.scss */
#vehicle-sheet.open .vehicle-sheet-panel {
  transform: translateX(0);
  pointer-events: auto;
}

/* line 787, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-sheet__content {
  padding: 32px;
}

/* line 793, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.paper-edit__back {
  display: inline-block;
  font-size: 13px;
  color: #6B7280;
  text-decoration: none;
  margin-bottom: 18px;
  transition: color 0.15s;
}

/* line 801, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.paper-edit__back:hover {
  color: #0d63d1;
}

/* line 806, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.paper-edit__title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.3px;
  margin: 0 0 8px;
}

/* line 814, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.paper-edit__desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0 0 22px;
}

/* line 821, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.paper-edit__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 22px;
}

/* line 832, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.paper-edit__meta-label {
  font-size: 11px;
  color: #9CA3AF;
  margin-bottom: 4px;
}

/* line 838, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.paper-edit__meta-value {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

/* line 844, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.paper-edit__form {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 24px;
}

/* line 851, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.paper-edit__fields {
  display: flex;
  flex-direction: column;
}

/* line 856, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.paper-edit__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #F3F4F6;
}

@media (max-width: 768px) {
  /* line 868, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-pagination {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  /* line 874, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-pagination__nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  /* line 881, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-pagination__nav::-webkit-scrollbar {
    display: none;
  }
  /* line 884, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-pagination__btn {
    flex-shrink: 0;
  }
  /* line 888, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-header {
    margin-bottom: 18px;
    gap: 12px;
  }
  /* line 893, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-title {
    font-size: 20px;
  }
  /* line 897, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-search {
    min-width: 0;
    width: 100%;
  }
  /* line 902, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-tabs {
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
  /* line 907, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-tab {
    padding: 10px 14px;
    font-size: 14px;
    white-space: nowrap;
  }
  /* line 913, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-actions {
    margin-bottom: 18px;
  }
  /* line 917, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-actions__right {
    width: 100%;
    flex-wrap: wrap;
  }
  /* line 922, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-btn-add {
    flex: 1 1 auto;
    justify-content: center;
  }
  /* line 927, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-btn-export {
    flex: 0 0 auto;
  }
  /* line 931, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-view-toggle {
    display: none;
  }
  /* line 935, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* line 941, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-card {
    min-height: 0;
  }
  /* line 945, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-card__body {
    padding: 20px 18px 16px;
  }
  /* line 951, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-card__illustration {
    top: 76px;
    right: 12px;
    width: 42%;
    max-width: 180px;
  }
  /* line 958, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-card__title-wrap,
.papers-card__breakdown {
    max-width: 60%;
  }
  /* line 963, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-card__model {
    font-size: 18px;
  }
  /* line 967, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-card__premium-amount {
    font-size: 34px;
    letter-spacing: -1px;
  }
  /* line 972, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-card__footer {
    padding: 14px 18px;
  }
  /* line 976, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-card__footer-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  /* line 981, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-card__extend-label {
    white-space: normal;
  }
  /* line 986, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-list {
    display: none !important;
  }
  /* line 990, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-empty {
    padding: 40px 20px;
  }
  /* line 994, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-empty__title {
    font-size: 16px;
  }
  /* line 998, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-empty__text {
    font-size: 13px;
  }
  /* line 1002, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  #vehicle-sheet .vehicle-sheet-panel {
    width: 100vw;
    max-width: 100vw;
  }
  /* line 1007, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-sheet__content {
    padding: 20px 18px;
  }
  /* line 1011, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .paper-edit__form {
    padding: 18px 16px;
  }
  /* line 1015, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .paper-edit__meta {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 14px;
  }
  /* line 1021, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .paper-edit__actions {
    flex-direction: column-reverse;
  }
  /* line 1024, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .paper-edit__actions > * {
    width: 100%;
  }
}

/* line 1030, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog {
  padding: 20px;
  border: none;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  inset: 0;
  overflow: visible;
}

/* line 1041, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1047, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog[open]::backdrop {
  background: rgba(15, 23, 42, 0.5);
}

/* line 1052, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__card {
  background: #fff;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  /* line 1052, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-dialog__card {
    max-width: 100vw;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    padding: 20px 18px;
  }
}

/* line 1071, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* line 1078, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__title {
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}

/* line 1085, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #9CA3AF;
  display: flex;
}

/* line 1093, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__close:hover {
  color: #0F172A;
}

/* line 1098, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__hint-text {
  font-size: 13px;
  color: #6B7280;
  margin: 0 0 16px;
  line-height: 1.5;
}

/* line 1105, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

/* line 1112, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__dropzone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 28px 20px;
  background: #F8FAFC;
  border: 1.5px dashed #CBD5E1;
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* line 1130, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__dropzone:hover:not(.is-uploaded) {
  background: #F1F5F9;
  border-color: #0D63D1;
}

/* line 1135, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__dropzone.is-uploaded {
  border-style: solid;
  border-color: #16A34A;
  background: #F0FDF4;
}

/* line 1140, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__dropzone.is-uploaded .papers-dialog__dropzone-icon {
  background: #DCFCE7;
}

/* line 1141, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__dropzone.is-uploaded .papers-dialog__dropzone-label {
  color: #166534;
}

/* line 1142, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__dropzone.is-uploaded .papers-dialog__dropzone-hint {
  color: #16A34A;
}

/* line 1146, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  inset: auto;
}

/* line 1155, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__file-list {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
  min-width: 0;
}

/* line 1164, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__file-list[hidden] {
  display: none;
}

/* line 1167, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__file-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #DCFCE7;
  border-radius: 8px;
  font-size: 13px;
  color: #0F172A;
  text-align: left;
  min-width: 0;
  max-width: 100%;
}

/* line 1182, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__file-list-name {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}

/* line 1191, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__file-list-remove {
  background: transparent;
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6B7280;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.15s;
}

/* line 1207, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__file-list-remove:hover {
  background: #FEE2E2;
  color: #DC2626;
}

/* line 1210, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__dropzone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #EFF6FF;
}

/* line 1220, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__dropzone-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* line 1230, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__dropzone-hint {
  display: block;
  font-size: 12px;
  color: #9CA3AF;
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* line 1238, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog .dropzone-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

/* line 1246, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__contracts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 1252, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__contracts-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #6B7280;
}

/* line 1260, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}

/* line 1267, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__btn {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: Inter, sans-serif;
  cursor: pointer;
  transition: all 0.15s;
  border: 1.5px solid transparent;
}

/* line 1277, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__btn--ghost {
  background: #fff;
  border-color: #E5E7EB;
  color: #374151;
}

/* line 1282, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__btn--ghost:hover {
  background: #F9FAFB;
}

/* line 1287, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__btn--primary {
  background: #0d63d1;
  border-color: #0d63d1;
  color: #fff;
}

/* line 1292, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__btn--primary:hover {
  filter: brightness(0.95);
}

/* line 1298, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 1304, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #6B7280;
  margin: 0 0 2px;
}

/* line 1313, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

/* line 1321, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__field-label {
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
}

/* line 1327, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__field-hint {
  font-size: 11px;
  color: #9CA3AF;
  line-height: 1.45;
}

/* line 1333, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__field-error {
  font-size: 11px;
  color: #DC2626;
  line-height: 1.45;
}

/* line 1339, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__input,
.papers-dialog__select,
.papers-dialog__textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  font-size: 14px;
  font-family: Inter, sans-serif;
  color: #0F172A;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}

/* line 1353, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__input:focus,
.papers-dialog__select:focus,
.papers-dialog__textarea:focus {
  outline: none;
  border-color: #0d63d1;
  box-shadow: 0 0 0 3px rgba(13, 99, 209, 0.12);
}

/* line 1359, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__input::placeholder,
.papers-dialog__select::placeholder,
.papers-dialog__textarea::placeholder {
  color: #9CA3AF;
}

/* line 1364, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'><path d='M2 4l3 3 3-3' stroke='%236B7280' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

/* line 1372, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__textarea {
  min-height: 88px;
  resize: vertical;
  line-height: 1.45;
}

/* line 1378, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* line 1383, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__row > .papers-dialog__field {
  flex: 1 1 200px;
}

/* line 1386, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__segmented {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #F1F5F9;
  border-radius: 10px;
  width: max-content;
  max-width: 100%;
}

/* line 1396, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__segmented-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 7px 16px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.15s;
  margin: 0;
}

/* line 1410, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__segmented-option input {
  display: none;
}

/* line 1412, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__segmented-option:hover {
  color: #111827;
}

/* line 1414, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__segmented-option:has(input:checked) {
  background: #fff;
  color: #0d63d1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* line 1421, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__divider {
  border: none;
  border-top: 1px solid #F1F5F9;
  margin: 4px 0;
}

/* line 1429, app/assets/stylesheets/frontend/dashboard/_papers.scss */
#sub_usersModal form:not(:has(.js-role-radio[value="company"]:checked)) .js-company-input {
  display: none;
}

/* line 1432, app/assets/stylesheets/frontend/dashboard/_papers.scss */
#sub_usersModal form:not(:has(.js-company-taxable[value="true"]:checked)) .js-company-taxable-input {
  display: none;
}

/* line 1438, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog .col-12 {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* line 1444, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin: 0;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all 0.15s;
  width: 100%;
  box-sizing: border-box;
}

/* line 1458, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog .form-check:hover {
  border-color: #0d63d1;
  background: #F8FAFC;
}

/* line 1460, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog .form-check.d-inline-block {
  display: flex;
}

/* line 1462, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog .form-check .form-check-input {
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #0d63d1;
}

/* line 1471, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog .form-check label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  flex: 1;
}

/* line 1480, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog .form-check span {
  font-size: 13px;
  color: #374151;
}

/* line 1481, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog .form-check .badge {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  background: #0F172A;
  color: #fff;
}

/* line 1490, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog .form-check button {
  background: none;
  border: none;
  padding: 0;
  color: #94A3B8;
  cursor: pointer;
}

/* line 1491, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog .form-check .fa-info-circle {
  font-size: 14px;
}

/* line 1494, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog .js-plans-container .col-12 + .col-12 {
  margin-top: 6px;
}

/* line 1498, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px 4px 4px;
  margin: 0;
}

/* line 1506, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.plan-cards__label {
  display: block;
  position: relative;
  cursor: pointer;
  min-width: 0;
  margin: 0;
}

/* line 1514, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.plan-cards__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* line 1522, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.plan-cards__card {
  position: relative;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 14px;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  min-width: 0;
}

/* line 1532, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.plan-cards__badge {
  position: absolute;
  top: -10px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: #0D63D1;
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  line-height: 1.4;
}

/* line 1547, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.plan-cards__card[data-plan-kind="fast"] .plan-cards__badge {
  background: #10B981;
}

/* line 1551, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.plan-cards__info {
  position: absolute;
  top: 10px;
  right: 12px;
  display: inline-flex;
  cursor: help;
  color: #94A3B8;
  line-height: 0;
}

/* line 1560, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.plan-cards__info:hover {
  color: #475569;
}

/* line 1563, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.plan-cards__price {
  font-size: 26px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.5px;
  line-height: 1;
  margin: 4px 0 8px;
}

/* line 1572, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.plan-cards__name {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 1581, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.plan-cards__label-text {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
  line-height: 1.3;
}

/* line 1589, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.plan-cards__disabled {
  margin-top: 8px;
  font-size: 11px;
  color: #DC2626;
  font-weight: 600;
}

/* line 1596, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.plan-cards__radio:checked + .plan-cards__card[data-plan-kind="standard"] {
  border-color: #0D63D1;
  background: linear-gradient(to bottom, #F5F9FF 0%, #fff 30%);
  box-shadow: 0 4px 16px rgba(13, 99, 209, 0.14);
}

/* line 1602, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.plan-cards__radio:checked + .plan-cards__card[data-plan-kind="fast"] {
  border-color: #10B981;
  background: linear-gradient(to bottom, #F0FDF4 0%, #fff 30%);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.14);
}

/* line 1608, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.plan-cards__radio:disabled + .plan-cards__card {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  /* line 1614, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .plan-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* line 1617, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #F9FAFB;
  border: 1px solid #F1F5F9;
  border-radius: 10px;
  cursor: pointer;
  margin: 0;
}

/* line 1628, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__checkbox-row:hover {
  background: #F1F5F9;
}

/* line 1630, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__checkbox-row > input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #0d63d1;
  cursor: pointer;
  flex-shrink: 0;
}

/* line 1639, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-dialog__checkbox-row > span {
  font-size: 13px;
  color: #374151;
  line-height: 1.45;
  flex: 1;
}

/* line 1648, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
  background: #F9FAFB;
  border: 1px solid #F1F5F9;
  border-radius: 12px;
}

/* line 1660, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__dropdown {
  position: relative;
  display: inline-block;
}

/* line 1665, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  cursor: pointer;
  font-family: Inter, sans-serif;
  transition: all 0.15s;
}

/* line 1680, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__dropdown-btn:hover {
  border-color: #0d63d1;
  color: #0d63d1;
}

/* line 1685, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__dropdown-btn svg {
  color: #6B7280;
}

/* line 1688, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 20;
  display: none;
  min-width: 240px;
  max-height: 280px;
  overflow-y: auto;
  padding: 6px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

/* line 1703, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__dropdown-menu.open {
  display: block;
}

/* line 1706, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__dropdown-form {
  margin: 0;
}

/* line 1710, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__dropdown-item {
  display: block;
  width: 100%;
  padding: 7px 10px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

/* line 1728, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__dropdown-item:hover {
  background: #F1F5F9;
  color: #111827;
}

/* line 1734, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__upload {
  display: inline-flex;
}

/* line 1738, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  cursor: pointer;
  font-family: Inter, sans-serif;
  transition: all 0.15s;
  margin-bottom: 0;
  text-decoration: none;
  white-space: nowrap;
}

/* line 1756, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__btn:hover {
  border-color: #0d63d1;
  color: #0d63d1;
}

/* line 1761, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__btn svg {
  color: #6B7280;
}

/* line 1763, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__btn--secondary {
  margin-left: auto;
}

/* line 1766, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

/* line 1775, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__link {
  font-size: 12px;
  color: #6B7280;
  text-decoration: none;
  margin-left: auto;
}

/* line 1781, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-toolbar__link:hover {
  color: #0d63d1;
  text-decoration: underline;
}

/* line 1787, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* line 1795, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table-card__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: #F9FAFB;
  border-bottom: 1px solid #F1F5F9;
  flex-wrap: wrap;
}

/* line 1806, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table-card__hint {
  margin: 0;
  font-size: 12px;
  color: #6B7280;
  flex: 1 1 240px;
  min-width: 0;
}

/* line 1814, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table-card__search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 1 320px;
}

/* line 1821, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table-card__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* line 1829, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table-card__search-input {
  width: 100%;
  padding: 8px 14px 8px 34px;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-family: Inter, sans-serif;
  color: #111827;
  transition: border-color 0.15s, box-shadow 0.15s;
}

/* line 1840, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table-card__search-input:focus {
  outline: none;
  border-color: #0d63d1;
  box-shadow: 0 0 0 3px rgba(13, 99, 209, 0.12);
}

/* line 1846, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table-card__search-input::placeholder {
  color: #9CA3AF;
}

/* line 1849, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table-card__search-empty {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #DC2626;
  font-weight: 600;
  pointer-events: none;
}

/* line 1860, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table-card__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* line 1865, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: #374151;
}

/* line 1872, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table thead {
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
}

/* line 1877, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table th {
  padding: 12px 14px;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #6B7280;
  white-space: nowrap;
}

/* line 1888, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table tbody tr {
  border-top: 1px solid #F1F5F9;
}

/* line 1891, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table tbody tr:hover {
  background: #F8FAFC;
}

/* line 1894, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table td {
  padding: 12px 14px;
  vertical-align: middle;
  white-space: nowrap;
}

/* line 1900, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table a {
  color: #0d63d1;
  text-decoration: none;
}

/* line 1901, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table a:hover {
  text-decoration: underline;
}

/* line 1904, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table__login-form {
  margin: 0;
}

/* line 1908, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table__login-link {
  background: transparent;
  border: none;
  padding: 0;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #0d63d1;
  cursor: pointer;
  text-align: left;
}

/* line 1919, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table__login-link:hover {
  text-decoration: underline;
}

/* line 1922, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table__status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

/* line 1931, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table__no-paper,
.group-table__empty {
  color: #9CA3AF;
  font-style: italic;
}

/* line 1937, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.group-table__empty {
  text-align: center;
  padding: 32px 14px;
}

@media (max-width: 768px) {
  /* line 1943, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-section-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
    margin-bottom: 16px;
  }
  /* line 1951, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-section-nav::-webkit-scrollbar {
    display: none;
  }
  /* line 1954, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-section-nav__item {
    flex-shrink: 0;
    font-size: 12px;
    padding: 7px 12px;
  }
  /* line 1960, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-header__title-wrap {
    width: 100%;
  }
  /* line 1964, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-header__hint-link {
    font-size: 11px;
  }
  /* line 1968, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .group-toolbar {
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  /* line 1975, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .group-toolbar__dropdown,
.group-toolbar__upload,
.group-toolbar__btn,
.group-toolbar__dropdown-btn {
    width: 100%;
    justify-content: center;
  }
  /* line 1983, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .group-toolbar__btn--secondary {
    margin-left: 0;
  }
  /* line 1987, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .group-toolbar__dropdown-menu {
    width: 100%;
    min-width: 0;
  }
  /* line 1992, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .group-table-card__toolbar {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 12px;
  }
  /* line 1998, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .group-table-card__hint {
    flex: 0 0 auto;
  }
  /* line 2002, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .group-table-card__search {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 2007, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .group-table {
    font-size: 11px;
  }
  /* line 2011, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .group-table th,
.group-table td {
    padding: 10px 10px;
  }
}

@media (max-width: 480px) {
  /* line 2018, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-actions {
    align-items: stretch;
  }
  /* line 2022, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-actions__right {
    gap: 6px;
  }
  /* line 2026, app/assets/stylesheets/frontend/dashboard/_papers.scss */
  .papers-btn-add,
.papers-btn-export {
    flex: 1 1 calc(50% - 4px);
    padding: 9px 12px;
    font-size: 12px;
  }
}

/* line 2035, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper {
  padding: 0;
  border: none;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  inset: 0;
  overflow: visible;
}

/* line 2046, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 2052, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper::backdrop {
  background: rgba(15, 23, 42, 0.5);
}

/* line 2056, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .modal-dialog {
  margin: 1.75rem auto;
  width: 100%;
  max-width: 520px;
}

/* line 2061, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .modal-dialog.modal-lg {
  max-width: 760px;
}

/* line 2062, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .modal-dialog.modal-md {
  max-width: 480px;
}

/* line 2065, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  font-family: Inter, sans-serif;
}

/* line 2073, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .modal-header {
  padding: 20px 28px;
  border-bottom: 1px solid #F1F5F9;
  align-items: center;
}

/* line 2079, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}

/* line 2086, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .btn-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 4px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  border-radius: 8px;
  color: #94A3B8;
  opacity: 1;
  cursor: pointer;
  transition: all 0.15s;
}

/* line 2102, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .btn-close:hover {
  color: #0F172A;
  background: #F1F5F9;
}

/* line 2108, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .modal-body {
  padding: 22px 28px;
  color: #0F172A;
  font-size: 14px;
}

/* line 2114, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .modal-footer {
  padding: 16px 28px;
  border-top: 1px solid #F1F5F9;
}

/* line 2120, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -6px;
}

/* line 2125, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .col-12, .papers-modal-wrapper .col-md-12, .papers-modal-wrapper .col-lg-12,
.papers-modal-wrapper .col-6, .papers-modal-wrapper .col-md-6, .papers-modal-wrapper .col-lg-6,
.papers-modal-wrapper .col-3, .papers-modal-wrapper .col-md-3, .papers-modal-wrapper .col-lg-3,
.papers-modal-wrapper .col-2, .papers-modal-wrapper .col-md-2 {
  padding: 0 6px;
  box-sizing: border-box;
}

/* line 2132, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .col-12, .papers-modal-wrapper .col-md-12, .papers-modal-wrapper .col-lg-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 2133, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .col-6, .papers-modal-wrapper .col-md-6, .papers-modal-wrapper .col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* line 2134, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

/* line 2135, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .col-2 {
  flex: 0 0 16.6667%;
  max-width: 16.6667%;
}

/* line 2136, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .align-items-center {
  align-items: center;
}

/* line 2137, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .justify-content-center {
  justify-content: center;
}

/* line 2138, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .text-center {
  text-align: center;
}

/* line 2139, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .text-start {
  text-align: left;
}

/* line 2140, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .mb-1 {
  margin-bottom: 8px;
}

/* line 2141, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .mb-2 {
  margin-bottom: 12px;
}

/* line 2142, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .mb-3 {
  margin-bottom: 16px;
}

/* line 2143, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .mt-2 {
  margin-top: 12px;
}

/* line 2144, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .mt-3 {
  margin-top: 16px;
}

/* line 2145, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .mt-4 {
  margin-top: 20px;
}

/* line 2146, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .pt-2 {
  padding-top: 8px;
}

/* line 2147, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .mb-4 {
  margin-bottom: 20px;
}

/* line 2148, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .mx-2 {
  margin-left: 8px;
  margin-right: 8px;
}

/* line 2149, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .w-auto {
  width: auto;
}

/* line 2150, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .d-inline-block {
  display: inline-block;
}

/* line 2151, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .d-none {
  display: none;
}

/* line 2152, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .float-end {
  float: right;
}

/* line 2153, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .float-start {
  float: left;
}

/* line 2154, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

/* line 2156, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .form-floating {
  position: relative;
}

/* line 2159, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 11px 14px;
  color: #6B7280;
  font-size: 14px;
  pointer-events: none;
  transform-origin: 0 0;
  transition: transform 0.15s, color 0.15s;
}

/* line 2171, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .form-floating > .form-control,
.papers-modal-wrapper .form-floating > .form-select {
  height: 56px;
  padding: 1.4rem 0.875rem 0.4rem;
  line-height: 1.25;
}

/* line 2178, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .form-floating > textarea.form-control {
  height: auto;
  min-height: 80px;
}

/* line 2183, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .form-floating > .form-control:not(:placeholder-shown) ~ label,
.papers-modal-wrapper .form-floating > .form-control:focus ~ label,
.papers-modal-wrapper .form-floating > .form-select ~ label,
.papers-modal-wrapper .form-floating > textarea.form-control ~ label {
  transform: scale(0.78) translateY(-0.7rem);
  color: #6B7280;
}

/* line 2192, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .form-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  padding-left: 0;
  margin: 0;
}

/* line 2201, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .form-control,
.papers-modal-wrapper .form-select {
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  color: #0F172A;
  transition: border-color 0.15s, box-shadow 0.15s;
}

/* line 2210, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .form-control:focus,
.papers-modal-wrapper .form-select:focus {
  border-color: #0D63D1;
  box-shadow: 0 0 0 3px rgba(13, 99, 209, 0.12);
  outline: none;
}

/* line 2218, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .form-floating > label {
  padding: 11px 14px;
  color: #6B7280;
  font-size: 14px;
}

/* line 2224, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .form-floating > .form-control,
.papers-modal-wrapper .form-floating > .form-select {
  height: calc(3.25rem + 2px);
  padding-top: 1.4rem;
  padding-bottom: 0.4rem;
}

/* line 2231, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .form-floating > .form-control:focus ~ label,
.papers-modal-wrapper .form-floating > .form-control:not(:placeholder-shown) ~ label,
.papers-modal-wrapper .form-floating > .form-select ~ label {
  color: #6B7280;
  transform: scale(0.78) translateY(-0.7rem) translateX(0.1rem);
}

/* line 2239, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .form-check-input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border: 1.5px solid #CBD5E1;
  cursor: pointer;
}

/* line 2246, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .form-check-input:checked {
  background-color: #0D63D1;
  border-color: #0D63D1;
}

/* line 2251, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(13, 99, 209, 0.12);
  border-color: #0D63D1;
}

/* line 2257, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .form-check-label,
.papers-modal-wrapper .form-check label,
.papers-modal-wrapper label p {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0;
}

/* line 2267, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .text-primary,
.papers-modal-wrapper p {
  color: #374151;
}

/* line 2271, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .btn,
.papers-modal-wrapper .button {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: Inter, sans-serif;
  border: 1.5px solid transparent;
  transition: all 0.15s;
  box-shadow: none;
}

/* line 2283, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .btn-secondary,
.papers-modal-wrapper .button-dark,
.papers-modal-wrapper .btn-danger {
  background: #0D63D1;
  border-color: #0D63D1;
  color: #fff !important;
}

/* line 2290, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .btn-secondary:hover,
.papers-modal-wrapper .button-dark:hover,
.papers-modal-wrapper .btn-danger:hover {
  background: #0c58b9;
  border-color: #0c58b9;
}

/* line 2293, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .button-outline-dark {
  background: #fff;
  border-color: #E5E7EB;
  color: #374151 !important;
}

/* line 2298, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .button-outline-dark:hover {
  background: #F9FAFB;
}

/* line 2301, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .dropzone {
  border: 1.5px dashed #CBD5E1;
  border-radius: 14px;
  background: #F8FAFC;
  padding: 28px 20px;
  transition: all 0.15s;
}

/* line 2308, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .dropzone:hover {
  border-color: #0D63D1;
  background: #F1F5F9;
}

/* line 2313, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .dropzone .dropzone-msg-title {
  font-weight: 600;
  color: #0F172A;
}

/* line 2314, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .dropzone .dropzone-msg-desc {
  color: #6B7280;
}

/* line 2317, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .upload-paper {
  min-height: 180px;
}

/* line 2320, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .js-plans-container {
  margin: 12px 0;
}

/* line 2323, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper .fa-info-circle {
  color: #94A3B8;
}

/* line 2325, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper ol {
  padding-left: 1.2em;
  margin-top: 6px;
}

/* line 2329, app/assets/stylesheets/frontend/dashboard/_papers.scss */
.papers-modal-wrapper ol li {
  font-size: 13px;
  color: #374151;
  margin-bottom: 4px;
}

/* line 4, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
  color: #0f172a;
}

/* line 12, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-year-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 2px solid #E5E7EB;
}

/* line 19, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-year-tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #9CA3AF;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  font-family: Inter, sans-serif;
  transition: all .15s;
  text-decoration: none;
}

/* line 33, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-year-tab--active {
  font-weight: 700;
  color: #0d63d1;
  border-bottom-color: #0d63d1;
}

/* line 41, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

/* line 50, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-hero__premium {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

/* line 57, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-hero__amount {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #111827;
}

/* line 64, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-hero__badge {
  font-size: 13px;
  font-weight: 600;
  color: #0d63d1;
  background: #EFF6FF;
  padding: 4px 12px;
  border-radius: 8px;
}

/* line 73, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-hero__stats {
  display: flex;
  gap: 28px;
}

/* line 78, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-hero__stat-value {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

/* line 84, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-hero__stat-unit {
  font-size: 13px;
  color: #6B7280;
  margin-left: 4px;
}

/* line 91, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* line 97, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-btn-add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #0d63d1;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: Inter, sans-serif;
  transition: all .15s;
}

/* line 112, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-btn-add:hover {
  transform: translateY(-1px);
}

/* line 117, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-btn-export {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #fff;
  color: #0f172a;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  font-family: Inter, sans-serif;
  transition: all .15s;
}

/* line 132, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-btn-export:hover {
  border-color: #0d63d1;
  color: #0d63d1;
}

/* line 139, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-import-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

/* line 151, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-import-bar__icon {
  flex-shrink: 0;
}

/* line 155, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-import-bar__text {
  font-size: 13px;
  color: #1E40AF;
  flex: 1;
}

/* line 161, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-import-bar__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* line 167, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-import-bar__template {
  padding: 7px 16px;
  background: #fff;
  border: 1px solid #DBEAFE;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #1D4ED8;
  text-decoration: none;
  font-family: Inter, sans-serif;
}

/* line 179, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-import-bar__btn {
  padding: 7px 16px;
  background: #0d63d1;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  font-family: Inter, sans-serif;
}

/* line 192, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-empty {
  text-align: center;
  padding: 64px 32px;
  background: #fff;
  border-radius: 20px;
  border: 1px dashed #CBD5E1;
}

/* line 200, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-empty__icon {
  margin: 0 auto 16px;
  display: block;
}

/* line 205, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-empty__title {
  font-size: 18px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 8px;
}

/* line 212, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-empty__desc {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 24px;
}

/* line 218, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-empty__btn {
  padding: 12px 28px;
  background: #0d63d1;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: Inter, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* line 234, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 241, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* line 249, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-card__header {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  transition: background .15s;
}

/* line 257, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-card__header:hover {
  background: #FAFBFD;
}

/* line 262, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-card__info {
  flex: 1;
  min-width: 0;
}

/* line 267, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 277, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-card__address {
  font-size: 13px;
  color: #6B7280;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 285, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-card__kwh {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  flex-shrink: 0;
  min-width: 80px;
  text-align: right;
}

/* line 294, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-card__kwh-unit {
  font-size: 13px;
  font-weight: 500;
  color: #9CA3AF;
}

/* line 300, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-card__date {
  text-align: right;
  flex-shrink: 0;
  min-width: 90px;
}

/* line 306, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-card__date-text {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

/* line 312, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #F1F5F9;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  font-family: Inter, sans-serif;
  flex-shrink: 0;
  transition: background .15s;
}

/* line 328, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-card__toggle:hover {
  background: #e2e8f0;
}

/* line 334, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-detail {
  display: none;
  border-top: 2px solid #EFF6FF;
  background: #FAFBFD;
}

/* line 340, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-detail__list {
  padding: 0;
}

/* line 344, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-mr-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 24px;
}

/* line 351, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-mr-row:hover {
  background: #F8FAFF;
}

/* line 355, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-mr-row:not(:last-child) {
  border-bottom: 1px solid #F1F5F9;
}

/* line 359, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-mr-row__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 60px;
  justify-content: flex-end;
}

/* line 368, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-card__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* line 375, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #6B7280;
  cursor: pointer;
  transition: all .15s;
}

/* line 390, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-icon-btn:hover {
  background: #F3F4F6;
  border-color: #E5E7EB;
  color: #111827;
}

/* line 396, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-icon-btn--edit:hover {
  background: #EFF6FF;
  border-color: #BFDBFE;
  color: #1D4ED8;
}

/* line 402, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-icon-btn--delete:hover {
  background: #FEF2F2;
  border-color: #FECACA;
  color: #B91C1C;
}

/* line 408, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-icon-btn--locked {
  cursor: not-allowed;
  color: #9CA3AF;
  opacity: 0.55;
}

/* line 413, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-icon-btn--locked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 14%;
  right: 14%;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%) rotate(-22deg);
  pointer-events: none;
}

/* line 425, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-icon-btn--locked:hover, .cs-icon-btn--locked--edit:hover, .cs-icon-btn--locked--delete:hover {
  background: transparent;
  border-color: transparent;
  color: #9CA3AF;
}

/* line 435, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-mr-row__date {
  font-size: 13px;
  color: #374151;
}

/* line 440, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-mr-row__kwh {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-align: right;
}

/* line 447, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-mr-row__status {
  text-align: right;
}

/* line 451, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-mr-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

/* line 461, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-mr-badge__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

/* line 467, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-detail__empty {
  text-align: center;
  padding: 28px;
  color: #94a3b8;
  font-size: 14px;
}

/* line 474, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-detail__footer {
  padding: 14px 24px;
  border-top: 1px solid #E5E7EB;
}

/* line 479, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-detail__add-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #0d63d1;
  font-family: Inter, sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: opacity .15s;
}

/* line 493, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-detail__add-btn:hover {
  opacity: 0.7;
}

/* line 499, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal {
  padding: 20px;
  border: none;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  inset: 0;
  overflow: visible;
  font-family: Inter, sans-serif;
}

/* line 511, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 517, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal[open]::backdrop {
  background: rgba(15, 23, 42, 0.5);
}

/* line 522, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__card {
  background: #fff;
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* line 533, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__card--narrow {
  max-width: 460px;
  padding: 28px 32px;
}

/* line 537, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__card--narrow .cs-field {
  margin-bottom: 18px;
}

/* line 540, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__card--narrow .cs-field--last {
  margin-bottom: 24px;
}

/* line 543, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__card--narrow .cs-field__row--address {
  margin-bottom: 18px;
}

/* line 548, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__top {
  padding: 28px 32px 0;
}

/* line 552, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* line 559, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__header--compact {
  margin-bottom: 4px;
}

/* line 563, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__header--import {
  margin-bottom: 16px;
}

/* line 567, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__tabs {
  display: flex;
  gap: 0;
}

/* line 572, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__tab {
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
}

/* line 577, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__tab--active {
  font-weight: 600;
  color: #0d63d1;
  border-bottom: 2px solid #0d63d1;
}

/* line 583, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__tab--inactive {
  font-weight: 500;
  color: #9CA3AF;
  border-bottom: 2px solid transparent;
}

/* line 589, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__tab--locked {
  cursor: not-allowed;
}

/* line 594, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #9CA3AF;
  display: flex;
}

/* line 603, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

/* line 610, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__subtitle {
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 619, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__subtitle--no-margin {
  margin: 0 0 4px;
}

/* line 623, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__subtitle--multiline {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.5;
  margin: 0 0 22px;
}

/* line 632, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-step {
  padding: 0 32px 32px;
}

/* line 636, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-step__title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}

/* line 643, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-step__desc {
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 24px;
}

/* line 650, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-field {
  margin-bottom: 28px;
}

/* line 653, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-field--last {
  margin-bottom: 36px;
}

/* line 657, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-field--sm {
  margin-bottom: 16px;
}

/* line 661, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-field--md {
  margin-bottom: 20px;
}

/* line 665, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-field--lg {
  margin-bottom: 24px;
}

/* line 670, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-field__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  margin-bottom: 10px;
}

/* line 678, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-field__label--sm {
  font-size: 12px;
  margin-bottom: 6px;
}

/* line 683, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-field__input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  color: #0f172a;
  font-family: Inter, sans-serif;
  outline: none;
  transition: border-color .15s;
  box-sizing: border-box;
}

/* line 695, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-field__input:focus {
  border-color: #0d63d1;
}

/* line 700, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-field__input--sm {
  padding: 12px 14px;
  font-size: 14px;
}

/* line 705, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-field__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* line 711, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-field__row--address {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 14px;
  margin-bottom: 28px;
}

/* line 718, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-date-error {
  margin: 12px 0 20px;
  padding: 10px 14px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #B91C1C;
  line-height: 1.4;
}

/* line 730, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* line 736, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-modal__actions--bordered {
  padding-top: 16px;
}

/* line 740, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-btn-secondary {
  padding: 12px 24px;
  background: #fff;
  border: 1.5px solid #D1D5DB;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: Inter, sans-serif;
  color: #374151;
}

/* line 752, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-btn-primary {
  padding: 12px 24px;
  background: #0d63d1;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: Inter, sans-serif;
  color: #fff;
}

/* line 763, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-btn-primary:disabled {
  background: #CBD5E1;
  cursor: not-allowed;
  opacity: 0.7;
}

/* line 771, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-xlsx-card {
  background: #fff;
  border-radius: 20px;
  max-width: 460px;
  width: 100%;
  padding: 28px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* line 781, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-xlsx-dropzone {
  border: 2px dashed #CBD5E1;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all .2s;
  min-width: 0;
}

/* line 791, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-xlsx-dropzone:hover:not(.uploaded) {
  border-color: #0d63d1;
  background: #F8FAFF;
}

/* line 797, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-xlsx-dropzone__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: #EFF6FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 808, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-xlsx-dropzone__label {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 819, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-xlsx-dropzone__hint {
  font-size: 12px;
  color: #94a3b8;
}

/* line 825, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-xlsx-success {
  display: none;
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* line 837, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-xlsx-success__circle {
  width: 80px;
  height: 80px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* line 849, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-xlsx-success__title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

/* line 855, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-xlsx-success__desc {
  font-size: 14px;
  color: #6B7280;
}

/* line 861, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-arrow {
  transition: transform .2s;
}

/* line 866, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-file-input--hidden {
  display: none;
}

/* line 871, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-consent-modal {
  z-index: 1100;
  align-items: flex-start;
  overflow-y: auto;
  padding: 32px 20px;
}

/* line 878, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-consent-modal__card {
  max-width: 640px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* line 886, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-consent-modal__title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}

/* line 894, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-consent-modal__body {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
}

/* line 899, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-consent-modal__body p {
  margin: 0 0 12px;
}

/* line 903, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-consent-modal__body ul {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 911, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-consent-modal__body li {
  line-height: 1.55;
}

/* line 916, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-consent-modal__form {
  margin: 0;
}

/* line 920, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-consent-modal__submit {
  width: 100%;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.3;
  white-space: normal;
}

/* line 928, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-consent-notice {
  margin-top: 32px;
  padding: 16px 20px;
  background: #F8FAFC;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  font-size: 13px;
  color: #374151;
  line-height: 1.55;
}

/* line 939, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-consent-notice__title {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

/* line 945, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
.cs-consent-notice__link {
  color: #0d63d1;
  text-decoration: underline;
}

@media (max-width: 768px) {
  /* line 952, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  /* line 958, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-year-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 16px;
  }
  /* line 965, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-year-tabs::-webkit-scrollbar {
    display: none;
  }
  /* line 968, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-year-tab {
    flex-shrink: 0;
    padding: 10px 14px;
  }
  /* line 974, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-hero {
    margin-bottom: 16px;
  }
  /* line 978, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-hero__amount {
    font-size: 28px;
    letter-spacing: -1px;
  }
  /* line 983, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-hero__premium {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
  }
  /* line 989, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-hero__stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  /* line 994, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-hero__stat-value {
    font-size: 18px;
  }
  /* line 998, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-actions {
    width: 100%;
  }
  /* line 1002, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-btn-add,
.cs-btn-export {
    flex: 1;
    justify-content: center;
    padding: 11px 14px;
    font-size: 13px;
  }
  /* line 1010, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-import-bar {
    padding: 12px 14px;
    gap: 8px;
    margin-bottom: 16px;
  }
  /* line 1016, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-import-bar__text {
    flex-basis: 100%;
    min-width: 0;
  }
  /* line 1021, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-import-bar__actions {
    width: 100%;
    justify-content: flex-end;
  }
  /* line 1026, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-card__header {
    flex-wrap: wrap;
    padding: 16px;
    gap: 12px;
  }
  /* line 1032, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-card__info {
    flex-basis: 100%;
  }
  /* line 1036, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-card__kwh,
.cs-card__date {
    min-width: 0;
    text-align: left;
  }
  /* line 1042, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-card__kwh {
    font-size: 18px;
  }
  /* line 1046, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-card__toggle {
    margin-left: auto;
  }
  /* line 1051, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-mr-row {
    grid-template-columns: 1fr auto;
    row-gap: 8px;
    padding: 14px 16px;
  }
  /* line 1057, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-mr-row__date,
.cs-mr-row__kwh {
    white-space: nowrap;
  }
  /* line 1062, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-mr-row__status {
    text-align: left;
  }
  /* line 1066, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-field__row,
.cs-field__row--address {
    grid-template-columns: 1fr;
  }
  /* line 1071, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-modal {
    padding: 12px;
  }
  /* line 1075, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-modal__card--narrow {
    padding: 22px 20px;
  }
  /* line 1079, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-modal__top {
    padding: 22px 20px 0;
  }
  /* line 1083, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-step {
    padding: 0 20px 24px;
  }
  /* line 1087, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-modal__title {
    font-size: 18px;
  }
  /* line 1091, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-modal__actions {
    flex-direction: column-reverse;
    gap: 8px;
  }
  /* line 1096, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-btn-primary,
.cs-btn-secondary {
    width: 100%;
    padding: 12px 16px;
  }
  /* line 1102, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-xlsx-card {
    padding: 22px 20px;
  }
  /* line 1106, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-xlsx-dropzone {
    padding: 24px 16px;
  }
  /* line 1110, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-consent-modal {
    padding: 16px 12px;
  }
  /* line 1114, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-consent-modal__card {
    padding: 22px 18px;
    gap: 14px;
  }
  /* line 1119, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-consent-modal__title {
    font-size: 18px;
  }
  /* line 1123, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-consent-modal__body {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  /* line 1129, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-hero__premium {
    align-items: flex-start;
  }
  /* line 1133, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-hero__amount {
    font-size: 26px;
  }
  /* line 1137, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-card__date {
    display: none;
  }
  /* line 1141, app/assets/stylesheets/frontend/dashboard/_charging_stations.scss */
  .cs-icon-btn {
    width: 32px;
    height: 32px;
  }
}

/* line 1, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 73px);
  padding: 20px;
}

/* line 10, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-bg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* line 19, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-bg__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* line 25, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% center;
}

/* line 32, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 12, 33, 0.35) 0%, rgba(2, 12, 33, 0.7) 100%);
}

/* line 38, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-bg__back {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease;
}

/* line 51, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-bg__back:hover {
  color: #fff;
}

/* line 56, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-bg__logo {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: inline-flex;
}

/* line 64, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-card-floating {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4), 0 10px 25px -10px rgba(0, 0, 0, 0.2);
}

/* line 80, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-glass-wrap {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  border-radius: 32px;
  padding: 24px;
  width: 100%;
  max-width: 488px;
}

/* line 92, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-glass-wrap .auth-card-floating {
  max-width: 100%;
}

@media (max-width: 480px) {
  /* line 98, app/assets/stylesheets/frontend/auth/_login.scss */
  .auth-bg {
    padding: 16px;
  }
  /* line 102, app/assets/stylesheets/frontend/auth/_login.scss */
  .auth-card-floating {
    padding: 28px 24px;
  }
}

/* line 111, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-split {
  display: flex;
  min-height: 100vh;
}

/* line 115, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-split__hero {
  position: relative;
  flex: 1;
  overflow: hidden;
  color: #fff;
}

/* line 122, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-split__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* line 128, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-split__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% center;
}

/* line 135, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-split__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 12, 33, 0.15) -25%, rgba(2, 12, 33, 0.6) 100%);
}

/* line 141, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-split__logo {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  display: inline-flex;
}

/* line 149, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-split__form {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 36px;
  background: #fff;
}

/* line 159, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-split__back {
  display: inline-flex;
  position: absolute;
  top: 24px;
  left: 24px;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease;
}

/* line 171, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-split__back:hover {
  color: #0f172a;
}

/* line 176, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-split__form-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 450px;
}

/* line 184, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-split__form-logo {
  display: none;
  align-self: center;
}

/* line 188, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-split__form-logo svg g {
  fill: #020c21;
}

@media (min-width: 1200px) {
  /* line 195, app/assets/stylesheets/frontend/auth/_login.scss */
  .auth-split__form {
    flex: 0 0 33.333%;
    min-width: 520px;
  }
}

@media (max-width: 768px) {
  /* line 202, app/assets/stylesheets/frontend/auth/_login.scss */
  .auth-split__hero {
    display: none;
  }
  /* line 206, app/assets/stylesheets/frontend/auth/_login.scss */
  .auth-split__form {
    padding: 24px;
  }
  /* line 210, app/assets/stylesheets/frontend/auth/_login.scss */
  .auth-split__form-logo {
    display: inline-flex;
  }
}

/* line 215, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

/* line 223, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(13, 99, 209, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* line 234, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

/* line 241, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.5;
}

/* line 247, app/assets/stylesheets/frontend/auth/_login.scss */
.flash-msg--alert {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #991b1b;
}

/* line 256, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-form {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 263, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 268, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-fields--compact {
  gap: 12px;
}

/* line 273, app/assets/stylesheets/frontend/auth/_login.scss */
.hero-form-card__agb-text--company {
  display: none;
}

/* line 278, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-form:has(#btn-unternehmen:checked) .hero-form-card__agb-text--privat {
  display: none;
}

/* line 282, app/assets/stylesheets/frontend/auth/_login.scss */
.auth-form:has(#btn-unternehmen:checked) .hero-form-card__agb-text--company {
  display: inline;
}

/* line 287, app/assets/stylesheets/frontend/auth/_login.scss */
.text-right {
  text-align: right;
}

/* line 291, app/assets/stylesheets/frontend/auth/_login.scss */
.text-center {
  text-align: center;
}

/* line 3, app/assets/stylesheets/frontend/auth/_registration.scss */
.auth-card--reg {
  max-width: 480px;
}

/* line 7, app/assets/stylesheets/frontend/auth/_registration.scss */
.auth-header--reg {
  margin-bottom: 28px;
}

/* line 11, app/assets/stylesheets/frontend/auth/_registration.scss */
.auth-icon--reg {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
}

/* line 17, app/assets/stylesheets/frontend/auth/_registration.scss */
.auth-title--reg {
  font-size: 24px;
  margin-bottom: 6px;
}

/* line 22, app/assets/stylesheets/frontend/auth/_registration.scss */
.auth-subtitle--reg {
  font-size: 15px;
}

/* line 27, app/assets/stylesheets/frontend/auth/_registration.scss */
.reg-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 34, app/assets/stylesheets/frontend/auth/_registration.scss */
.reg-toggle {
  display: flex;
  gap: 12px;
  position: relative;
}

/* line 40, app/assets/stylesheets/frontend/auth/_registration.scss */
.reg-toggle__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 6px);
  height: 100%;
  border-radius: 32px 12px 12px 32px;
  background: rgba(13, 99, 209, 0.06);
  box-shadow: inset 0 0 0 2px #0d63d1;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

/* line 54, app/assets/stylesheets/frontend/auth/_registration.scss */
.reg-toggle:has(#btn-unternehmen:checked) .reg-toggle__thumb {
  transform: translateX(calc(100% + 12px));
  border-radius: 12px 32px 32px 12px;
}

/* line 59, app/assets/stylesheets/frontend/auth/_registration.scss */
.reg-toggle__btn {
  flex: 1;
  padding: 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.28s ease;
  font-family: Inter, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  background: transparent;
}

/* line 75, app/assets/stylesheets/frontend/auth/_registration.scss */
.reg-toggle__btn[for="btn-privat"] {
  border-radius: 32px 12px 12px 32px;
}

/* line 79, app/assets/stylesheets/frontend/auth/_registration.scss */
.reg-toggle__btn[for="btn-unternehmen"] {
  border-radius: 12px 32px 32px 12px;
}

/* line 85, app/assets/stylesheets/frontend/auth/_registration.scss */
.reg-company-fields {
  display: none;
  flex-direction: column;
  gap: 12px;
}

/* line 91, app/assets/stylesheets/frontend/auth/_registration.scss */
.reg-field-row {
  display: flex;
  gap: 10px;
}

/* line 96, app/assets/stylesheets/frontend/auth/_registration.scss */
.reg-field {
  flex: 1;
}

/* line 100, app/assets/stylesheets/frontend/auth/_registration.scss */
.reg-field__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 5px;
}

/* line 109, app/assets/stylesheets/frontend/auth/_registration.scss */
.reg-email-error {
  display: none;
  font-size: 13px;
  color: #dc2626;
  margin-top: 4px;
  padding-left: 2px;
}

/* line 118, app/assets/stylesheets/frontend/auth/_registration.scss */
.reg-consent {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(15, 23, 42, 0.65);
  text-align: center;
}

/* line 125, app/assets/stylesheets/frontend/auth/_registration.scss */
.reg-consent a {
  color: inherit;
  text-decoration: underline;
}

/* line 132, app/assets/stylesheets/frontend/auth/_registration.scss */
.auth-btn--reg {
  margin-top: 24px;
  background: #0d63d1;
  box-shadow: 0 20px 25px -5px rgba(13, 99, 209, 0.25);
}

/* line 139, app/assets/stylesheets/frontend/auth/_registration.scss */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

/* line 146, app/assets/stylesheets/frontend/auth/_registration.scss */
.auth-divider__line {
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

/* line 152, app/assets/stylesheets/frontend/auth/_registration.scss */
.auth-divider__text {
  font-size: 14px;
  color: #94a3b8;
}

/* line 1, app/assets/stylesheets/frontend/auth/_password.scss */
.auth-page {
  min-height: 100vh;
  background: #f8fafc;
}

/* line 6, app/assets/stylesheets/frontend/auth/_password.scss */
.flash-msg--success {
  background: #DCFCE7;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #166534;
}

/* line 16, app/assets/stylesheets/frontend/auth/_password.scss */
.auth-hint {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
  text-align: center;
}

/* line 7, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-index {
  background: white;
  padding: 60px 24px 100px;
}

/* line 12, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-header {
  margin-bottom: 40px;
}

/* line 16, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-title {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.2;
}

/* line 24, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-subtitle {
  font-size: 18px;
  line-height: 30px;
  color: #0f172a;
  opacity: 0.65;
  margin: 0;
  max-width: 640px;
}

/* line 33, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-search-form {
  margin-bottom: 24px;
}

/* line 37, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-search-wrap {
  position: relative;
  max-width: 520px;
}

/* line 42, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* line 50, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-search-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  font-size: 15px;
  color: #0f172a;
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
}

/* line 60, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-search-input:focus {
  outline: none;
  border-color: #0d63d1;
  box-shadow: 0 0 0 3px rgba(13, 99, 209, 0.15);
}

/* line 67, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

/* line 74, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-cat-pill {
  padding: 8px 14px;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

/* line 84, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-cat-pill:hover {
  background: #EFF4FB;
  border-color: #CBD7EC;
}

/* line 89, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-cat-pill.is-active {
  background: #0d63d1;
  border-color: #0d63d1;
  color: white !important;
}

/* line 96, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-cat-count {
  margin-left: 6px;
  opacity: 0.55;
  font-weight: 400;
}

/* line 102, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

@media (max-width: 767px) {
  /* line 102, app/assets/stylesheets/frontend/pages/_blog.scss */
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* line 112, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* line 117, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-pagination nav {
  display: flex;
  gap: 4px;
}

/* line 122, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-pagination a, .blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  border: 1px solid transparent;
}

/* line 137, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-pagination a:hover {
  background: #F1F5F9;
}

/* line 141, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-pagination .current {
  background: #0d63d1;
  color: white;
}

/* line 146, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-pagination .disabled {
  opacity: 0.4;
}

/* line 153, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-empty {
  padding: 64px 24px;
  text-align: center;
  background: #f8fafc;
  border-radius: 20px;
  border: 1px dashed #e2e8f0;
}

/* line 161, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-empty-title {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

/* line 168, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-empty-text {
  font-size: 15px;
  color: #0f172a;
  opacity: 0.65;
  margin-bottom: 20px;
}

/* line 174, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-empty-text--last {
  margin-bottom: 0;
}

/* line 179, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #0d63d1;
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

/* line 194, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

/* line 206, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

/* line 212, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-card-thumb {
  aspect-ratio: 16/9;
  background: #F1F5F9;
  overflow: hidden;
}

/* line 218, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* line 225, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* line 233, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-card-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0d63d1;
}

/* line 241, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  margin: 0;
}

/* line 249, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-card-excerpt {
  font-size: 15px;
  line-height: 24px;
  color: #0f172a;
  opacity: 0.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* line 261, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-card-date {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  color: #0f172a;
  opacity: 0.55;
}

/* line 271, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-show {
  background: white;
  padding: 60px 24px 100px;
}

/* line 276, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #0f172a;
  opacity: 0.7;
  text-decoration: none;
}

/* line 286, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-show-back {
  margin-bottom: 32px;
}

/* line 290, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-show-category {
  margin-bottom: 12px;
}

/* line 294, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-show-category-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0d63d1;
  text-decoration: none;
}

/* line 304, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-show-title {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
  line-height: 1.2;
}

/* line 312, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-show-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #0f172a;
  opacity: 0.55;
  margin-bottom: 40px;
}

/* line 322, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-show-hero {
  aspect-ratio: 16/9;
  background: #F1F5F9;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
}

/* line 330, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-show-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* line 338, app/assets/stylesheets/frontend/pages/_blog.scss */
.article-body h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin: 40px 0 14px;
  line-height: 1.3;
}

/* line 346, app/assets/stylesheets/frontend/pages/_blog.scss */
.article-body h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin: 32px 0 12px;
  line-height: 1.3;
}

/* line 354, app/assets/stylesheets/frontend/pages/_blog.scss */
.article-body h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin: 24px 0 10px;
  line-height: 1.3;
}

/* line 362, app/assets/stylesheets/frontend/pages/_blog.scss */
.article-body p {
  font-size: 17px;
  line-height: 30px;
  color: #0f172a;
  opacity: 0.85;
  margin: 0 0 18px;
}

/* line 370, app/assets/stylesheets/frontend/pages/_blog.scss */
.article-body ul, .article-body ol {
  padding-left: 22px;
  margin: 0 0 18px;
}

/* line 375, app/assets/stylesheets/frontend/pages/_blog.scss */
.article-body li {
  font-size: 17px;
  line-height: 30px;
  color: #0f172a;
  opacity: 0.85;
  margin-bottom: 8px;
}

/* line 383, app/assets/stylesheets/frontend/pages/_blog.scss */
.article-body strong {
  font-weight: 700;
  opacity: 1;
}

/* line 388, app/assets/stylesheets/frontend/pages/_blog.scss */
.article-body a {
  color: #0d63d1;
  text-decoration: underline;
  word-break: break-word;
}

/* line 394, app/assets/stylesheets/frontend/pages/_blog.scss */
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
}

/* line 401, app/assets/stylesheets/frontend/pages/_blog.scss */
.article-body blockquote {
  border-left: 3px solid #0d63d1;
  padding: 8px 0 8px 20px;
  margin: 24px 0;
  color: #0f172a;
  opacity: 0.85;
  font-style: italic;
}

/* line 411, app/assets/stylesheets/frontend/pages/_blog.scss */
.article-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #E5E7EB;
}

/* line 419, app/assets/stylesheets/frontend/pages/_blog.scss */
.article-ctas a:hover {
  background: #F1F5F9;
}

/* line 424, app/assets/stylesheets/frontend/pages/_blog.scss */
.blog-show-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  transition: background 0.15s;
}

/* line 5, app/assets/stylesheets/frontend/pages/_welcome.scss */
.welcome-wrapper {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 24px;
}

/* line 12, app/assets/stylesheets/frontend/pages/_welcome.scss */
.welcome-icon {
  width: 72px;
  height: 72px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

/* line 23, app/assets/stylesheets/frontend/pages/_welcome.scss */
.welcome-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

/* line 31, app/assets/stylesheets/frontend/pages/_welcome.scss */
.welcome-text {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0 0 32px;
}

/* line 38, app/assets/stylesheets/frontend/pages/_welcome.scss */
.welcome-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* line 45, app/assets/stylesheets/frontend/pages/_welcome.scss */
.welcome-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #0d63d1;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  font-family: Inter, sans-serif;
  transition: all 0.15s;
}

/* line 61, app/assets/stylesheets/frontend/pages/_welcome.scss */
.welcome-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: #374151;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  font-family: Inter, sans-serif;
  transition: all 0.15s;
}

@keyframes success-anim-pop {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes success-anim-check {
  0% {
    stroke-dashoffset: 28;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes success-anim-fade {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes success-anim-progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* line 98, app/assets/stylesheets/frontend/pages/_welcome.scss */
.success-anim {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 96px 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* line 108, app/assets/stylesheets/frontend/pages/_welcome.scss */
.success-anim__circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(22, 163, 74, 0.35);
  animation: success-anim-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  margin-bottom: 28px;
}

/* line 121, app/assets/stylesheets/frontend/pages/_welcome.scss */
.success-anim__check path {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  animation: success-anim-check 0.4s ease-out 0.35s both;
}

/* line 127, app/assets/stylesheets/frontend/pages/_welcome.scss */
.success-anim__title {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
  letter-spacing: -0.4px;
  animation: success-anim-fade 0.4s ease-out 0.55s both;
}

/* line 136, app/assets/stylesheets/frontend/pages/_welcome.scss */
.success-anim__text {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.55;
  margin: 0 0 32px;
  animation: success-anim-fade 0.4s ease-out 0.7s both;
}

/* line 144, app/assets/stylesheets/frontend/pages/_welcome.scss */
.success-anim__progress {
  width: 240px;
  height: 4px;
  background: #E5E7EB;
  border-radius: 2px;
  overflow: hidden;
  animation: success-anim-fade 0.4s ease-out 0.85s both;
}

/* line 153, app/assets/stylesheets/frontend/pages/_welcome.scss */
.success-anim__progress-bar {
  height: 100%;
  background: #16A34A;
  border-radius: 2px;
  animation: success-anim-progress 2.5s linear 0.5s both;
}

/* line 5, app/assets/stylesheets/frontend/pages/_errors.scss */
.error-page-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  padding: 20px;
  font-family: Inter, sans-serif;
}

/* line 15, app/assets/stylesheets/frontend/pages/_errors.scss */
.error-page-content {
  text-align: center;
  max-width: 480px;
}

/* line 20, app/assets/stylesheets/frontend/pages/_errors.scss */
.error-page-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

/* line 29, app/assets/stylesheets/frontend/pages/_errors.scss */
.error-page-icon--404 {
  background: rgba(13, 99, 209, 0.08);
}

/* line 33, app/assets/stylesheets/frontend/pages/_errors.scss */
.error-page-icon--500 {
  background: rgba(220, 38, 38, 0.08);
}

/* line 38, app/assets/stylesheets/frontend/pages/_errors.scss */
.error-page-code {
  font-size: 72px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 12px;
}

/* line 47, app/assets/stylesheets/frontend/pages/_errors.scss */
.error-page-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

/* line 54, app/assets/stylesheets/frontend/pages/_errors.scss */
.error-page-text {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0 0 32px;
}

/* line 61, app/assets/stylesheets/frontend/pages/_errors.scss */
.error-page-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #0d63d1;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  font-family: Inter, sans-serif;
  transition: all 0.15s;
}

/* line 5, app/assets/stylesheets/frontend/pages/_process.scss */
.process-page {
  background: white;
  padding: 60px 24px 100px;
}

/* line 10, app/assets/stylesheets/frontend/pages/_process.scss */
.process-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #0f172a;
  opacity: 0.7;
  text-decoration: none;
  margin-bottom: 48px;
}

/* line 21, app/assets/stylesheets/frontend/pages/_process.scss */
.process-title {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 24px;
  line-height: 1.2;
}

/* line 29, app/assets/stylesheets/frontend/pages/_process.scss */
.process-intro {
  font-size: 18px;
  line-height: 30px;
  color: #0f172a;
  opacity: 0.8;
  margin: 0 0 48px;
  max-width: 760px;
}

/* line 38, app/assets/stylesheets/frontend/pages/_process.scss */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 56px;
  position: relative;
  max-width: 820px;
}

/* line 46, app/assets/stylesheets/frontend/pages/_process.scss */
.process-steps-line {
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: #0d63d1;
  opacity: 0.25;
  z-index: 0;
}

/* line 57, app/assets/stylesheets/frontend/pages/_process.scss */
.process-step {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

/* line 66, app/assets/stylesheets/frontend/pages/_process.scss */
.process-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0d63d1;
  color: white;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 80, app/assets/stylesheets/frontend/pages/_process.scss */
.process-step-text {
  font-size: 17px;
  line-height: 28px;
  color: #0f172a;
}

/* line 86, app/assets/stylesheets/frontend/pages/_process.scss */
.process-conclusion {
  font-size: 17px;
  line-height: 30px;
  color: #0f172a;
  opacity: 0.85;
  margin: 0;
  max-width: 820px;
}

/* line 94, app/assets/stylesheets/frontend/pages/_process.scss */
.process-conclusion:not(:last-of-type) {
  margin-bottom: 20px;
}

/* line 98, app/assets/stylesheets/frontend/pages/_process.scss */
.process-conclusion:last-of-type {
  margin-bottom: 48px;
}

/* line 103, app/assets/stylesheets/frontend/pages/_process.scss */
.process-image-wrap {
  background: #f8fafc;
  border-radius: 20px;
  padding: 48px 32px;
  display: flex;
  justify-content: center;
}

/* line 111, app/assets/stylesheets/frontend/pages/_process.scss */
.process-image {
  max-width: 100%;
  height: auto;
}

/* line 6, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-page {
  background: white;
  padding: 60px 24px 100px;
}

/* line 11, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-title {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 32px;
  line-height: 1.2;
}

/* line 18, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-title--center {
  text-align: center;
}

/* line 23, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-heading {
  color: #0f172a;
  margin: 40px 0 16px;
  line-height: 1.3;
}

/* line 28, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-heading--lg {
  font-size: 28px;
  font-weight: 700;
}

/* line 33, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-heading--md {
  font-size: 22px;
  font-weight: 600;
}

/* line 38, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-heading--sm {
  font-size: 18px;
  font-weight: 600;
}

/* line 43, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-heading--center {
  text-align: center;
}

/* line 48, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-paragraph {
  font-size: 17px;
  line-height: 30px;
  color: #0f172a;
  opacity: 0.85;
  margin: 0 0 16px;
}

/* line 55, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-paragraph a {
  color: #0d63d1;
  text-decoration: underline;
}

/* line 61, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-list {
  list-style: disc;
  padding-left: 24px;
  margin: 0 0 24px;
  color: #0f172a;
}

/* line 67, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-list li {
  font-size: 17px;
  line-height: 30px;
  opacity: 0.85;
  margin-bottom: 8px;
}

/* line 75, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 32px 0;
}

@media (max-width: 768px) {
  /* line 75, app/assets/stylesheets/frontend/pages/_article_page.scss */
  .article-media {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* line 88, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-media--reverse .article-media__text {
  order: 2;
}

/* line 89, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-media--reverse .article-media__image {
  order: 1;
}

@media (max-width: 768px) {
  /* line 92, app/assets/stylesheets/frontend/pages/_article_page.scss */
  .article-media--reverse .article-media__text {
    order: 1;
  }
  /* line 93, app/assets/stylesheets/frontend/pages/_article_page.scss */
  .article-media--reverse .article-media__image {
    order: 2;
  }
}

/* line 97, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-media--narrow-image {
  grid-template-columns: 1fr 2fr;
}

@media (max-width: 768px) {
  /* line 97, app/assets/stylesheets/frontend/pages/_article_page.scss */
  .article-media--narrow-image {
    grid-template-columns: 1fr;
  }
}

/* line 106, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* line 113, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  margin: 0 auto 32px;
}

/* line 121, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-figcaption {
  font-size: 14px;
  color: #64748b;
  text-align: center;
  margin-top: 8px;
}

/* line 128, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-video {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

/* line 134, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-video__link {
  position: relative;
  display: block;
  max-width: 520px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 10px rgba(6, 28, 61, 0.05);
}

/* line 144, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-video__thumb {
  width: 100%;
  height: auto;
  display: block;
}

/* line 150, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  color: white;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

/* line 161, app/assets/stylesheets/frontend/pages/_article_page.scss */
.article-video__link:hover .article-video__play {
  opacity: 1;
}

/* line 5, app/assets/stylesheets/frontend/pages/_contact.scss */
.contact-page {
  background: white;
  padding: 60px 24px 100px;
}

/* line 10, app/assets/stylesheets/frontend/pages/_contact.scss */
.contact-block {
  text-align: center;
  margin-bottom: 48px;
}

/* line 14, app/assets/stylesheets/frontend/pages/_contact.scss */
.contact-block:last-of-type {
  margin-bottom: 0;
}

/* line 19, app/assets/stylesheets/frontend/pages/_contact.scss */
.contact-block__label {
  font-size: 17px;
  line-height: 28px;
  color: #0f172a;
  margin: 0 0 8px;
}

/* line 25, app/assets/stylesheets/frontend/pages/_contact.scss */
.contact-block__label strong {
  font-weight: 600;
}

/* line 30, app/assets/stylesheets/frontend/pages/_contact.scss */
.contact-block__address {
  font-size: 15px;
  line-height: 26px;
  color: #0f172a;
  opacity: 0.75;
  margin: 0;
}

/* line 38, app/assets/stylesheets/frontend/pages/_contact.scss */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  margin-top: 12px;
}

/* line 50, app/assets/stylesheets/frontend/pages/_contact.scss */
.contact-btn--primary {
  background: #0d63d1;
  color: white;
  border: 1px solid #0d63d1;
}

/* line 55, app/assets/stylesheets/frontend/pages/_contact.scss */
.contact-btn--primary:hover {
  background: #0b52ad;
  border-color: #0b52ad;
  color: white;
}

/* line 62, app/assets/stylesheets/frontend/pages/_contact.scss */
.contact-btn--secondary {
  background: white;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

/* line 67, app/assets/stylesheets/frontend/pages/_contact.scss */
.contact-btn--secondary:hover {
  background: #f8fafc;
}

/* line 73, app/assets/stylesheets/frontend/pages/_contact.scss */
.contact-mail-link {
  color: #0d63d1;
  text-decoration: underline;
  font-size: 15px;
}

/* line 3, app/assets/stylesheets/frontend/_responsive_landing.scss */
.nav-logo-mark,
.hero-price-box__mobile-summary {
  display: none;
}

@media (max-width: 1024px) {
  /* line 9, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 32px;
  }
  /* line 15, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-grid > * {
    min-width: 0;
  }
  /* line 19, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-right-card {
    margin-top: 0;
  }
  /* line 25, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-grid__left {
    display: contents;
  }
  /* line 28, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-h1 {
    order: 1;
  }
  /* line 29, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-rating {
    order: 2;
  }
  /* line 30, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-price-box {
    order: 3;
  }
  /* line 31, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-right-card {
    order: 4;
  }
  /* line 32, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .btn-outline {
    order: 5;
  }
  /* line 33, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-features-row {
    order: 6;
  }
  /* line 35, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-features-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  /* line 40, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-feature {
    flex: 1 1 0;
    min-width: 180px;
  }
  /* line 45, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .nav-registrieren {
    display: none;
  }
  /* line 49, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .btn-outline {
    width: 100%;
  }
  /* line 53, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-h1 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1px;
  }
  /* line 58, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  /* line 61, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .pricing-cards > div {
    width: 100%;
    max-width: 492px;
  }
  /* line 66, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .why-thg-content {
    flex-direction: column;
    gap: 40px;
  }
  /* line 69, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .why-thg-content > div:first-child {
    flex: auto;
  }
  /* line 72, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .why-thg-content > div:last-child {
    flex: auto;
  }
  /* line 76, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .why-thg-divider {
    display: none;
  }
  /* line 79, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .support-cols {
    flex-direction: column;
    gap: 32px;
  }
  /* line 83, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .support-divider-v {
    display: none;
  }
  /* line 86, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .footer-cols {
    flex-wrap: wrap;
    gap: 32px;
  }
  /* line 89, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .footer-cols > div {
    min-width: 45%;
  }
  /* line 93, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .trust-points {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  /* line 98, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .social-section {
    padding: 64px 40px;
  }
}

@media (max-width: 768px), (min-width: 1025px) and (max-width: 1208px) {
  /* line 107, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-price-box {
    padding: 20px;
  }
  /* line 110, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-price-row,
.hero-price-box__divider {
    display: none;
  }
  /* line 114, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-price-box__mobile-summary {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  /* line 119, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-price-box__mobile-total {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
  }
  /* line 125, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-price-box__mobile-label {
    font-size: 15px;
    font-weight: 600;
    color: white;
  }
  /* line 130, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-price-box__mobile-sublabel {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
  }
  /* line 135, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-price-features {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  /* line 142, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-section {
    min-height: auto;
    padding: 0 16px;
  }
  /* line 150, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .lp-selector,
.faq-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
  /* line 154, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .lp-selector button,
.faq-tabs button {
    border-radius: 10px;
    margin-left: 0;
    margin: 2px;
  }
  /* line 160, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
  /* line 163, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .popular-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* line 166, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .social-section {
    padding: 48px 20px;
  }
  /* line 168, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .social-section h2 {
    font-size: 28px;
  }
  /* line 172, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .why-thg-section {
    padding: 60px 20px;
  }
  /* line 175, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .pricing-section {
    padding: 80px 16px;
  }
  /* line 177, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .pricing-section h2 {
    font-size: 28px;
  }
  /* line 181, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .support-section {
    padding: 40px 20px 0;
  }
  /* line 184, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .footer {
    padding: 36px 20px;
  }
}

@media (max-width: 480px) {
  /* line 189, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .popular-faq-grid {
    grid-template-columns: 1fr;
  }
  /* line 192, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-grid {
    padding: 20px;
  }
  /* line 195, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-right-card {
    padding: 20px;
  }
  /* line 198, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .pricing-card {
    padding: 24px;
  }
  /* line 201, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .lp-card {
    padding: 28px;
  }
  /* line 205, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .social-section h2 {
    font-size: 24px;
  }
  /* line 210, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .why-thg-section h2 {
    font-size: 26px;
  }
  /* line 215, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .why-thg-chart svg {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 640px) {
  /* line 225, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-nav {
    padding: 16px 0;
  }
  /* line 229, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .nav-logo-full {
    display: none;
  }
  /* line 232, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .nav-logo-mark {
    display: inline-flex;
    align-items: center;
  }
  /* line 236, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .nav-anmelden {
    display: none;
  }
  /* line 239, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .nav-menu-btn__label {
    display: none;
  }
  /* line 242, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .nav-menu-btn {
    padding: 10px !important;
    gap: 0 !important;
  }
  /* line 248, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-features-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
  /* line 254, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-feature {
    flex: initial;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  /* line 262, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-feature:last-child {
    grid-column: 1 / -1;
  }
  /* line 265, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-feature__icon-wrap {
    width: 48px;
    height: 48px;
  }
  /* line 271, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .btn-outline {
    width: 100%;
  }
  /* line 276, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-grid {
    background: none;
    border: none;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
  }
  /* line 285, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-rating__score {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 14px;
  }
  /* line 290, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-rating__separator,
.hero-rating__count {
    font-size: 14px;
  }
  /* line 294, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .hero-subtext {
    font-size: 14px;
  }
  /* line 299, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .pricing-info {
    flex-direction: column;
    gap: 12px;
  }
  /* line 303, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .pricing-info__chart {
    align-self: stretch;
  }
  /* line 305, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .pricing-info__chart svg {
    max-width: 100%;
    height: auto;
  }
  /* line 312, app/assets/stylesheets/frontend/_responsive_landing.scss */
  .trust-points {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
  }
}

/* line 2, app/assets/stylesheets/frontend/_auth_dashboard.scss */
#auth-wrapper {
  display: none;
  min-height: 100vh;
  background: #f8fafc;
  animation: fadeIn 0.3s ease;
}

/* line 8, app/assets/stylesheets/frontend/_auth_dashboard.scss */
#dashboard-wrapper {
  min-height: 100vh;
  animation: fadeIn 0.3s ease;
}

/* line 12, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.auth-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 28px 56px -13px rgba(0, 0, 0, 0.12);
}

/* line 23, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.auth-input {
  width: 100%;
  padding: 15px 18px 15px 44px;
  border: 1.125px solid #cbd5e1;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.15s;
}

/* line 31, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.auth-input:focus {
  border-color: #0d63d1;
}

/* line 34, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.auth-input-wrap {
  position: relative;
}

/* line 37, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.auth-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  display: flex;
}

/* line 46, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.auth-btn {
  width: 100%;
  padding: 16px;
  background: #0d63d1;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.2);
  transition: all 0.15s;
}

/* line 59, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.auth-btn-outline {
  width: 100%;
  padding: 14px;
  background: #fff;
  color: #0f172a;
  border: 1.125px solid #cbd5e1;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

/* line 71, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.auth-link {
  color: #0d63d1;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

/* line 76, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.auth-link:hover {
  text-decoration: underline;
}

/* line 80, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

/* line 86, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.wizard-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #e2e8f0;
  color: #94a3b8;
  background: #fff;
  transition: all 0.3s;
  flex-shrink: 0;
}

/* line 100, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.wizard-step-circle.active {
  border-color: #0d63d1;
  color: #fff;
  background: #0d63d1;
}

/* line 105, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.wizard-step-circle.done {
  border-color: #10b981;
  color: #fff;
  background: #10b981;
}

/* line 111, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.wizard-line {
  width: 60px;
  height: 2px;
  background: #e2e8f0;
  transition: background 0.3s;
  margin-top: -18px;
}

/* line 117, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.wizard-line.done {
  background: #10b981;
}

/* line 121, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.wizard-step-label {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 6px;
  font-weight: 500;
  text-align: center;
}

/* line 127, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.wizard-step-label.active {
  color: #0d63d1;
}

/* line 130, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.wizard-step-label.done {
  color: #10b981;
}

/* line 134, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.slide-left {
  animation: slideLeft 0.3s ease;
}

/* line 137, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.upload-zone {
  border: 2px dashed #cbd5e1;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  background: #fafbfc;
}

/* line 145, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.upload-zone:hover {
  border-color: #0d63d1;
  background: #f8faff;
}

/* line 151, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.dash-topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  padding: 0 32px;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* line 165, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.dash-main {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  min-height: 100vh;
  padding: 32px;
  margin-top: 64px;
}

/* line 171, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.dash-nav-item {
  display: flex;
  align-items: center;
  padding: 8px 18px;
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  background: none;
  text-align: center;
  position: relative;
  white-space: nowrap;
  height: 64px;
}

/* line 186, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.dash-nav-item:hover {
  color: #0f172a;
}

/* line 189, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.dash-nav-item.active {
  color: #0d63d1;
  font-weight: 600;
}

/* line 192, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.dash-nav-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  height: 2.5px;
  background: #0d63d1;
  border-radius: 2px 2px 0 0;
}

/* line 205, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.dash-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 1px 10px rgba(6, 28, 61, 0.05);
}

/* line 211, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.dash-welcome {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 40%, #1e88e5 100%);
  border-radius: 24px;
  padding: 32px;
  color: #fff;
  margin-bottom: 24px;
}

/* line 218, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.status-badge {
  padding: 6px 14px;
  border-radius: 1000px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

/* line 225, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.action-card {
  border: 1.125px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
  text-align: center;
}

/* line 233, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.action-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* line 238, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.vehicle-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  border: 1.125px solid #e2e8f0;
  margin-bottom: 12px;
}

/* line 248, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.ticket-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1.125px solid #e2e8f0;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.15s;
}

/* line 256, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.ticket-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* line 260, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.msg-bubble {
  max-width: 70%;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.5;
}

/* line 267, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.msg-user {
  background: #0d63d1;
  color: #fff;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}

/* line 273, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.msg-support {
  background: #f1f5f9;
  color: #0f172a;
  border-bottom-left-radius: 4px;
}

/* line 278, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.profile-section {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 1px 10px rgba(6, 28, 61, 0.05);
  margin-bottom: 20px;
}

/* line 285, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.profile-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.125px solid #cbd5e1;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
}

/* line 292, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.profile-input:focus {
  border-color: #0d63d1;
}

/* line 297, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.profile-input--missing {
  border-color: #F59E0B;
  background: #FFFBEB;
}

/* line 300, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.profile-input--missing:focus {
  border-color: #D97706;
}

/* line 305, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.nav-dropdown {
  position: relative;
}

/* line 307, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  z-index: 200;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* line 320, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

/* line 323, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.1s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

/* line 338, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.nav-dropdown-item:hover {
  background: #f8fafc;
}

/* line 342, app/assets/stylesheets/frontend/_auth_dashboard.scss */
.nav-dropdown-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 6px 8px;
}

@media (max-width: 768px) {
  /* line 350, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .auth-card {
    padding: 28px 20px;
    border-radius: 20px;
    margin: 0 12px;
    max-width: 100%;
  }
  /* line 356, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .dash-topnav {
    padding: 0 12px;
  }
  /* line 358, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .dash-topnav .dn-logo {
    display: none;
  }
  /* line 361, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .dash-topnav .dash-nav-item {
    display: none;
  }
  /* line 365, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .dn-right > .dn-completion-pill-wrap {
    display: none;
  }
  /* line 368, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .dn-hamburger {
    display: flex;
  }
  /* line 371, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .dn-logout-btn {
    display: none;
  }
  /* line 374, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .dash-main {
    padding: 16px;
    margin-top: 64px;
  }
  /* line 378, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .dash-two-col {
    grid-template-columns: 1fr;
  }
  /* line 381, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .dn-user-dropdown {
    display: none;
  }
  /* line 384, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .dash-stats-row {
    grid-template-columns: 1fr;
  }
  /* line 387, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .dash-actions-row {
    grid-template-columns: 1fr;
  }
  /* line 390, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .vehicle-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  /* line 397, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .auth-card {
    padding: 24px 16px;
  }
  /* line 400, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .verify-inputs input {
    width: 40px;
    height: 48px;
  }
  /* line 404, app/assets/stylesheets/frontend/_auth_dashboard.scss */
  .vl-grid {
    grid-template-columns: 1fr;
  }
}

/* line 2, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 1px 10px rgba(6, 28, 61, 0.05);
  margin-bottom: 20px;
}

/* line 9, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

/* line 15, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-badge {
  padding: 6px 16px;
  border-radius: 1000px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(13, 99, 209, 0.08);
  color: #0d63d1;
  white-space: nowrap;
}

/* line 24, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-section-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 16px;
}

/* line 32, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 24px 0;
}

/* line 37, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* line 41, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-row > div {
  flex: 1;
  min-width: 200px;
}

/* line 46, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-contract-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
}

/* line 54, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-contract-cell {
  padding: 24px;
}

/* line 56, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-contract-cell:first-child {
  border-right: 1px solid #e2e8f0;
}

/* line 61, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-stepper {
  display: flex;
  align-items: flex-start;
  margin: 20px 0 24px;
}

/* line 66, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  text-align: center;
}

/* line 74, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
  font-size: 12px;
  color: #94a3b8;
}

/* line 87, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-step-dot.done {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

/* line 92, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-step-dot.active {
  background: #0d63d1;
  border-color: #0d63d1;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(13, 99, 209, 0.15);
}

/* line 99, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-step-line {
  position: absolute;
  top: 14px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}

/* line 107, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-step-line.done {
  background: #10b981;
}

/* line 111, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-step-label {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 8px;
  font-weight: 500;
  max-width: 80px;
  line-height: 1.3;
}

/* line 118, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-step-label.done {
  color: #10b981;
}

/* line 121, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-step-label.active {
  color: #0d63d1;
  font-weight: 600;
}

/* line 127, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-progress-bar {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin: 12px 0;
}

/* line 135, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0d63d1, #3b82f6);
  border-radius: 4px;
  transition: width 0.5s;
}

/* line 142, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-timeline {
  display: flex;
  flex-direction: column;
}

/* line 146, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-timeline-item {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 24px;
}

/* line 151, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-timeline-item:last-child {
  padding-bottom: 0;
}

/* line 153, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-timeline-item:last-child .vd-timeline-line {
  display: none;
}

/* line 158, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0d63d1;
  margin-top: 5px;
  flex-shrink: 0;
  z-index: 2;
}

/* line 167, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-timeline-line {
  position: absolute;
  left: 4px;
  top: 18px;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}

/* line 176, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  cursor: pointer;
}

/* line 181, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 185, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-toggle input:checked + .vd-toggle-slider {
  background: #0d63d1;
}

/* line 187, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-toggle input:checked + .vd-toggle-slider:before {
  transform: translateX(24px);
}

/* line 192, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-toggle-slider {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: 14px;
  transition: all 0.3s;
}

/* line 198, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-toggle-slider:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  left: 3px;
  top: 3px;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* line 212, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-toggle-sm {
  position: relative;
  width: 40px;
  height: 22px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}

/* line 219, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-toggle-sm input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

/* line 224, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-toggle-sm input:checked + .vd-toggle-slider-sm {
  background: #0d63d1;
}

/* line 226, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-toggle-sm input:checked + .vd-toggle-slider-sm:before {
  transform: translateX(18px);
}

/* line 231, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-toggle-sm .vd-toggle-slider-sm {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: 11px;
  transition: all 0.3s;
}

/* line 237, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-toggle-sm .vd-toggle-slider-sm:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  left: 3px;
  top: 3px;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* line 252, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-info-box {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* line 261, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-btn-outline {
  padding: 12px 24px;
  background: #fff;
  color: #0f172a;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

/* line 271, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-btn-outline:hover {
  border-color: #0d63d1;
  color: #0d63d1;
}

/* line 276, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-dialog {
  z-index: 1100;
}

/* line 279, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-dialog.open {
  display: flex;
}

/* line 283, app/assets/stylesheets/frontend/_vehicle_detail.scss */
.vd-dialog-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  /* line 293, app/assets/stylesheets/frontend/_vehicle_detail.scss */
  .vd-contract-grid {
    grid-template-columns: 1fr !important;
  }
  /* line 296, app/assets/stylesheets/frontend/_vehicle_detail.scss */
  .vd-contract-cell:first-child {
    border-right: none !important;
    border-bottom: 1px solid #e2e8f0;
  }
  /* line 300, app/assets/stylesheets/frontend/_vehicle_detail.scss */
  .vd-stepper {
    overflow-x: auto;
    padding-bottom: 8px;
  }
  /* line 304, app/assets/stylesheets/frontend/_vehicle_detail.scss */
  .vd-card {
    padding: 20px !important;
  }
  /* line 307, app/assets/stylesheets/frontend/_vehicle_detail.scss */
  .vd-data-grid {
    grid-template-columns: 1fr !important;
  }
  /* line 310, app/assets/stylesheets/frontend/_vehicle_detail.scss */
  .vl-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 1280px) {
  /* line 315, app/assets/stylesheets/frontend/_vehicle_detail.scss */
  .vl-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* line 2, app/assets/stylesheets/frontend/_upload_flow.scss */
.wizard-card.uf-wide {
  max-width: 1400px !important;
  padding: 48px 56px !important;
}

/* line 6, app/assets/stylesheets/frontend/_upload_flow.scss */
.upload-flow-container {
  width: 100%;
  background: none;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  padding: 0;
  overflow: visible;
  position: relative;
}

/* line 18, app/assets/stylesheets/frontend/_upload_flow.scss */
.upload-flow-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

/* line 24, app/assets/stylesheets/frontend/_upload_flow.scss */
.upload-flow-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

/* line 30, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-step-indicator {
  font-size: 14px;
  font-weight: 700;
  color: #0056d2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* line 38, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone {
  border: 2px dashed #d1d5db;
  border-radius: 16px;
  background: #fafafa;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  box-sizing: border-box;
  max-width: 100%;
}

/* line 53, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone:hover:not(.is-uploaded) {
  border-color: #0056d2;
  background: #f0f7ff;
}

/* line 57, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone.is-uploaded {
  border-color: #16A34A;
  background: #F0FDF4;
}

/* line 61, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone.is-uploaded .uf-upload-icon {
  background: #DCFCE7;
  color: #16A34A;
}

/* line 66, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone .uf-upload-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
}

/* line 72, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone.dz-started .dz-message {
  display: none;
}

/* line 75, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone.dz-started {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  gap: 10px;
  padding: 16px;
  min-height: auto;
  max-height: 360px;
  overflow-y: auto;
  text-align: left;
}

/* line 88, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone .dz-success-mark,
.uf-upload-zone .dz-error-mark {
  display: none;
}

/* line 92, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone .dz-preview {
  flex: 0 0 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  min-height: auto;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 8px 28px 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* line 108, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone .dz-preview .dz-image {
  display: none !important;
}

/* line 111, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone .dz-preview .dz-details {
  position: static !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  color: #0F172A !important;
  text-align: left !important;
  flex: 1 1 auto;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  background: transparent !important;
}

/* line 124, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone .dz-preview .dz-size {
  font-size: 11px !important;
  color: #6B7280 !important;
  margin: 0 !important;
}

/* line 129, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone .dz-preview .dz-size strong {
  font-weight: 500;
}

/* line 131, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone .dz-preview .dz-filename {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 143, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone .dz-preview .dz-filename span {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}

/* line 157, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone .dz-preview .dz-progress {
  position: absolute !important;
  width: 100% !important;
  left: 0 !important;
  top: auto !important;
  bottom: 0 !important;
  margin: 0 !important;
  height: 3px !important;
}

/* line 166, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone .dz-preview .dz-error-message {
  display: none !important;
}

/* line 169, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone .dz-preview .dz-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E2E8F0;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s, color .15s;
  z-index: 2;
}

/* line 188, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone .dz-preview .dz-remove::before {
  content: "\00d7";
  font-size: 16px;
  line-height: 1;
  color: #6B7280;
}

/* line 195, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone .dz-preview .dz-remove:hover {
  background: #FEE2E2;
  border-color: #FCA5A5;
}

/* line 198, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone .dz-preview .dz-remove:hover::before {
  color: #DC2626;
}

/* line 203, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-icon {
  width: 80px;
  height: 80px;
  background: #ebf5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #0056d2;
}

/* line 213, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-icon i {
  font-size: 40px;
}

/* line 217, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

/* line 223, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
}

/* line 228, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-badge-green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  color: #10b981;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* line 240, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-file-limits {
  font-size: 13px;
  color: #9ca3af;
}

/* line 244, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-info-box {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: #1E3A8A;
  line-height: 1.55;
}

/* line 255, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-info-box i {
  color: #0056d2;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* line 262, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
}

/* line 268, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-vehicle-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;
}

/* line 276, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 12px;
}

/* line 283, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-header__title {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
}

/* line 289, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-header__link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #2563EB;
}

/* line 299, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-header__link:hover {
  text-decoration: underline;
}

/* line 302, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-picker {
  margin-bottom: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

/* line 309, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-picker__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #0F172A;
}

/* line 320, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-picker__summary::-webkit-details-marker {
  display: none;
}

/* line 322, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-picker__summary:hover {
  background: #F8FAFC;
}

/* line 325, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-picker__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* line 331, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-picker__chevron {
  color: #94A3B8;
  transition: transform 0.2s;
}

/* line 336, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-picker[open] .uf-class-picker__chevron {
  transform: rotate(90deg);
}

/* line 340, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-picker__panel {
  background: #F1F5F9;
  padding: 14px;
  border-top: 1px solid #e5e7eb;
}

/* line 347, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  font-size: 14px;
  border: 1px solid #e5e7eb;
}

/* line 356, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table thead th {
  text-align: right;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #64748B;
  border-bottom: 1px solid #F1F5F9;
}

/* line 364, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table thead th:first-child {
  text-align: left;
}

/* line 367, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table td {
  padding: 16px 18px;
  text-align: right;
  border-bottom: 1px solid #F1F5F9;
  color: #475569;
}

/* line 373, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table td:first-child {
  text-align: left;
  color: #1F2937;
}

/* line 376, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table tbody tr:last-child td {
  border-bottom: none;
}

/* line 378, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table__row {
  cursor: pointer;
  transition: background 0.12s;
}

/* line 382, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table__row:hover {
  background: #F8FAFC;
}

/* line 384, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table__row--selected {
  background: #EFF6FF;
}

/* line 387, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table__row--selected td:first-child {
  position: relative;
  font-weight: 700;
  color: #1F2937;
}

/* line 392, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table__row--selected td:first-child::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #2563EB;
}

/* line 403, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table__row--selected:hover {
  background: #DBEAFE;
}

/* line 407, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table__name {
  display: block;
  font-weight: 700;
}

/* line 412, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table__sub {
  display: none;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: #2563EB;
}

/* line 420, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table__pill {
  display: none;
  padding: 6px 14px;
  background: #2563EB;
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  font-size: 13px;
}

/* line 431, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table__row--selected .uf-class-table__sub {
  display: block;
}

/* line 432, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table__row--selected .uf-class-table__pill {
  display: inline-block;
}

/* line 433, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-class-table__row--selected .uf-class-table__direkt-price {
  display: none;
}

/* line 436, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* line 441, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
  margin-top: 12px;
}

/* line 456, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

/* line 460, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card.uf-selected[data-plan-kind="standard"] {
  border: 2px solid #0056d2;
  background: linear-gradient(to bottom, #f5f9ff 0%, #ffffff 20%);
  box-shadow: 0 4px 24px 4px rgba(59, 130, 246, 0.18), 0 24px 40px -8px rgba(37, 99, 235, 0.32);
}

/* line 467, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card.uf-selected[data-plan-kind="standard"]:hover {
  box-shadow: 0 4px 28px 6px rgba(59, 130, 246, 0.22), 0 28px 48px -8px rgba(37, 99, 235, 0.38);
}

/* line 473, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card.uf-selected[data-plan-kind="standard"] .uf-btn {
  background: #0056d2;
  border: none;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 86, 210, 0.2);
}

/* line 479, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card.uf-selected[data-plan-kind="standard"] .uf-btn:not(:disabled):hover {
  background: #0044a8;
}

/* line 482, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card.uf-selected[data-plan-kind="standard"] .uf-btn:disabled {
  background: #CBD5E1;
  color: #fff;
  opacity: 0.7;
  box-shadow: none;
}

/* line 490, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card.uf-selected[data-plan-kind="fast"] {
  border: 2px solid #10B981;
  background: linear-gradient(to bottom, #F0FDF4 0%, #ffffff 20%);
  box-shadow: 0 4px 24px 4px rgba(16, 185, 129, 0.18), 0 24px 40px -8px rgba(5, 150, 105, 0.32);
}

/* line 497, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card.uf-selected[data-plan-kind="fast"]:hover {
  box-shadow: 0 4px 28px 6px rgba(16, 185, 129, 0.22), 0 28px 48px -8px rgba(5, 150, 105, 0.38);
}

/* line 503, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card.uf-selected[data-plan-kind="fast"] .uf-btn {
  background: #10B981;
  border: none;
  color: #fff;
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}

/* line 509, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card.uf-selected[data-plan-kind="fast"] .uf-btn:not(:disabled):hover {
  background: #059669;
}

/* line 512, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card.uf-selected[data-plan-kind="fast"] .uf-btn:disabled {
  background: #CBD5E1;
  color: #fff;
  opacity: 0.7;
  box-shadow: none;
}

/* line 521, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: #0056d2;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* line 532, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card-badge.uf-secondary {
  background: #10B981;
  color: #fff;
}

/* line 537, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-price-large {
  font-size: 42px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

/* line 545, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-price-subtitle {
  font-size: 13px;
  font-weight: 500;
  color: #10b981;
  background: #ecfdf5;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

/* line 554, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

/* line 560, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-card-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 24px;
  min-height: 42px;
}

/* line 567, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1f2937;
  margin-bottom: 12px;
  list-style: none;
}

/* line 575, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-benefits li i {
  color: #10b981;
  font-size: 18px;
}

/* line 580, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-btn {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

/* line 591, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-btn-primary {
  background: #0056d2;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 86, 210, 0.2);
}

/* line 595, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-btn-primary:hover {
  background: #0044a8;
}

/* line 598, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-btn-primary.uf-btn--locked, .uf-btn-primary:disabled {
  background: #CBD5E1;
  color: #fff;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.7;
}

/* line 605, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-btn-primary.uf-btn--locked:hover, .uf-btn-primary:disabled:hover {
  background: #CBD5E1;
}

/* line 609, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-upload-zone--error {
  border-color: #DC2626 !important;
  background: rgba(220, 38, 38, 0.06) !important;
  animation: uf-upload-shake 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

/* line 615, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-waiver-row--error {
  background: rgba(220, 38, 38, 0.08);
  border-radius: 8px;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
  animation: uf-upload-shake 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes uf-upload-shake {
  10%, 90% {
    transform: translateX(-2px);
  }
  20%, 80% {
    transform: translateX(4px);
  }
  30%, 50%, 70% {
    transform: translateX(-6px);
  }
  40%, 60% {
    transform: translateX(6px);
  }
}

/* line 631, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-btn-outline {
  background: #fff;
  border: 1.5px solid #E2E8F0;
  color: #1f2937;
}

/* line 635, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-btn-outline:hover {
  border-color: #CBD5E1;
  background: #F8FAFC;
}

/* line 639, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-btn-outline.uf-btn--locked, .uf-btn-outline:disabled {
  color: #94A3B8;
  cursor: not-allowed;
  opacity: 0.6;
}

/* line 644, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-btn-outline.uf-btn--locked:hover, .uf-btn-outline:disabled:hover {
  background: #fff;
  border-color: #E2E8F0;
}

/* line 647, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-info-highlight {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 14px;
  padding: 18px 20px;
}

/* line 653, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-info-highlight__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-bottom: 6px;
}

/* line 662, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-info-highlight__title {
  font-size: 15px;
  font-weight: 700;
  color: #1F2937;
}

/* line 668, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-info-highlight__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #2563EB;
  white-space: nowrap;
}

/* line 678, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-info-highlight__desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

/* line 684, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid #e5e7eb;
}

/* line 691, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

/* line 697, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 701, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-switch input:checked + .uf-slider {
  background: #0056d2;
}

/* line 703, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-switch input:checked + .uf-slider:before {
  transform: translateX(20px);
}

/* line 708, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-switch .uf-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

/* line 718, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-switch .uf-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  transition: 0.4s;
  border-radius: 50%;
}

/* line 731, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-trust-bar {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  border-top: 1px solid #e5e7eb;
  padding-top: 24px;
}

/* line 739, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

/* line 746, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-trust-item i {
  font-size: 20px;
}

/* line 748, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-trust-item i.green {
  color: #10b981;
}

/* line 751, app/assets/stylesheets/frontend/_upload_flow.scss */
.uf-trust-item i.yellow {
  color: #fbbf24;
}

@media (max-width: 1100px) {
  /* line 758, app/assets/stylesheets/frontend/_upload_flow.scss */
  .wizard-card.uf-wide {
    padding: 32px 28px !important;
  }
  /* line 761, app/assets/stylesheets/frontend/_upload_flow.scss */
  .upload-flow-container {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* line 765, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-upload-zone {
    min-height: 260px !important;
    padding: 32px 20px !important;
  }
  /* line 769, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-cards-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 900px) {
  /* line 775, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* line 779, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-card {
    padding: 22px !important;
  }
  /* line 782, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-price-large {
    font-size: 36px !important;
  }
  /* line 785, app/assets/stylesheets/frontend/_upload_flow.scss */
  .dash-main h1[style] {
    font-size: 26px !important;
    line-height: 1.2 !important;
  }
  /* line 789, app/assets/stylesheets/frontend/_upload_flow.scss */
  .dash-main h2[style] {
    font-size: 22px !important;
  }
}

@media (max-width: 768px) {
  /* line 795, app/assets/stylesheets/frontend/_upload_flow.scss */
  .wizard-card.uf-wide {
    padding: 24px 16px !important;
  }
  /* line 798, app/assets/stylesheets/frontend/_upload_flow.scss */
  .upload-flow-container {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  /* line 802, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-upload-zone {
    min-height: 200px !important;
    padding: 24px 14px !important;
  }
  /* line 806, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-upload-zone.dz-started {
    padding: 12px !important;
    max-height: 280px !important;
  }
  /* line 810, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-upload-icon {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 16px !important;
  }
  /* line 815, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-upload-title {
    font-size: 17px !important;
  }
  /* line 818, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-upload-subtitle {
    font-size: 14px !important;
    margin-bottom: 12px !important;
  }
  /* line 822, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  /* line 826, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-card {
    padding: 20px !important;
    margin-top: 16px !important;
  }
  /* line 830, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-price-large {
    font-size: 32px !important;
  }
  /* line 833, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-section-title {
    font-size: 22px !important;
  }
  /* line 836, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-info-highlight {
    padding: 14px 16px !important;
  }
  /* line 839, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-trust-bar {
    flex-wrap: wrap !important;
    gap: 12px 24px !important;
    padding-top: 16px !important;
  }
  /* line 844, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-trust-item {
    font-size: 13px !important;
  }
  /* line 847, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-toggle-row {
    padding: 12px 0 !important;
  }
}

@media (max-width: 480px) {
  /* line 853, app/assets/stylesheets/frontend/_upload_flow.scss */
  .dash-main {
    padding: 12px !important;
  }
  /* line 856, app/assets/stylesheets/frontend/_upload_flow.scss */
  .dash-main h1[style] {
    font-size: 22px !important;
  }
  /* line 859, app/assets/stylesheets/frontend/_upload_flow.scss */
  .dash-main h2[style] {
    font-size: 20px !important;
  }
  /* line 862, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-card {
    padding: 16px !important;
  }
  /* line 865, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-card-badge {
    left: 16px !important;
    font-size: 11px !important;
  }
  /* line 869, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-price-large {
    font-size: 28px !important;
  }
  /* line 872, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-section-title {
    font-size: 20px !important;
  }
  /* line 875, app/assets/stylesheets/frontend/_upload_flow.scss */
  .uf-upload-zone {
    padding: 20px 12px !important;
  }
}

/* line 2, app/assets/stylesheets/frontend/_step_indicator.scss */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

/* line 8, app/assets/stylesheets/frontend/_step_indicator.scss */
.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
}

/* line 18, app/assets/stylesheets/frontend/_step_indicator.scss */
.step-dot.completed {
  background: #10b981;
  color: #fff;
}

/* line 22, app/assets/stylesheets/frontend/_step_indicator.scss */
.step-dot.active {
  background: #0d63d1;
  color: #fff;
}

/* line 26, app/assets/stylesheets/frontend/_step_indicator.scss */
.step-dot.pending {
  background: #e2e8f0;
  color: #94a3b8;
}

/* line 31, app/assets/stylesheets/frontend/_step_indicator.scss */
.step-line {
  width: 60px;
  height: 2px;
  margin: 0 8px;
}

/* line 35, app/assets/stylesheets/frontend/_step_indicator.scss */
.step-line.completed {
  background: #10b981;
}

/* line 38, app/assets/stylesheets/frontend/_step_indicator.scss */
.step-line.pending {
  background: #e2e8f0;
}

/* line 42, app/assets/stylesheets/frontend/_step_indicator.scss */
.step-label {
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
  text-align: center;
}

/* line 47, app/assets/stylesheets/frontend/_step_indicator.scss */
.step-label.completed {
  color: #10b981;
}

/* line 50, app/assets/stylesheets/frontend/_step_indicator.scss */
.step-label.active {
  color: #0d63d1;
}

/* line 53, app/assets/stylesheets/frontend/_step_indicator.scss */
.step-label.pending {
  color: #94a3b8;
}

/* line 57, app/assets/stylesheets/frontend/_step_indicator.scss */
.step-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* line 1, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-right-card {
  flex: 0.9;
  background: white;
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: 0 28px 56px -13px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

/* line 9, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-right-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
  line-height: 1.4;
}

/* line 18, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__toggle {
  display: flex;
  background: #F1F5F9;
  border-radius: 1000px;
  padding: 5px;
  margin-bottom: 20px;
  position: relative;
}

/* line 27, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__toggle-thumb {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(50% - 5px);
  height: calc(100% - 10px);
  background: white;
  border-radius: 1000px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 0 0 2px #0D63D1;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

/* line 40, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__toggle:has(#btn-unternehmen:checked) .hero-form-card__toggle-thumb {
  transform: translateX(100%);
}

/* line 44, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__toggle-input {
  display: none;
}

/* line 48, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__toggle-btn {
  flex: 1;
  padding: 9px 0;
  border-radius: 1000px;
  border: none;
  background: transparent;
  box-shadow: none;
  font-weight: 400;
  font-size: 15px;
  color: #0F172A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 1;
  transition: font-weight 0.28s ease;
}

/* line 68, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__toggle-input:checked + .hero-form-card__toggle-btn {
  font-weight: 600;
}

/* line 72, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__email-group {
  margin-bottom: 16px;
}

/* line 75, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__email-group label {
  display: block;
  font-size: 15.75px;
  font-weight: 500;
  color: #0F172A;
  margin-bottom: 6px;
}

/* line 84, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__input-wrapper {
  position: relative;
}

/* line 88, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

/* line 95, app/assets/stylesheets/frontend/hero_form_card.scss */
#hero-email {
  width: 100%;
  padding: 15px 18px 15px 42px;
  border: 1.125px solid #CBD5E1;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  font-family: Inter, sans-serif;
}

/* line 105, app/assets/stylesheets/frontend/hero_form_card.scss */
#hero-email-error {
  display: none;
  font-size: 13px;
  color: #DC2626;
  margin-top: 4px;
}

/* line 112, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__agb-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0 16px;
  cursor: pointer;
}

/* line 119, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__agb-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #0D63D1;
  flex-shrink: 0;
}

/* line 127, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__agb-label span {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(15, 23, 42, 0.7);
}

/* line 133, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__agb-label a {
  color: inherit;
  text-decoration: underline;
}

/* line 140, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-right-card:has(#btn-unternehmen:checked) .hero-form-card__agb-text--privat {
  display: none;
}

/* line 144, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-right-card:has(#btn-unternehmen:checked) .hero-form-card__agb-text--company {
  display: inline;
}

/* line 149, app/assets/stylesheets/frontend/hero_form_card.scss */
.btn-primary {
  width: 100%;
  padding: 18px;
  background: #0D63D1;
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.2);
  transition: all 0.15s;
  position: relative;
}

/* line 163, app/assets/stylesheets/frontend/hero_form_card.scss */
.btn-primary.is-loading {
  color: transparent;
  pointer-events: none;
}

/* line 167, app/assets/stylesheets/frontend/hero_form_card.scss */
.btn-primary.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-primary-spin 0.7s linear infinite;
}

@keyframes btn-primary-spin {
  to {
    transform: rotate(360deg);
  }
}

/* line 187, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__hint {
  text-align: center;
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 18px;
}

/* line 194, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__trust {
  border-top: 1px solid #E2E8F0;
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 203, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__trust-item {
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
}

/* line 209, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(13, 99, 209, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

/* line 220, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__trust-text {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.8);
  line-height: 1.35;
}

/* line 226, app/assets/stylesheets/frontend/hero_form_card.scss */
.hero-form-card__testsieger {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  /* line 233, app/assets/stylesheets/frontend/hero_form_card.scss */
  .hero-form-card__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    justify-items: center;
    row-gap: 16px;
  }
  /* line 241, app/assets/stylesheets/frontend/hero_form_card.scss */
  .hero-form-card__testsieger {
    grid-column: 1 / -1;
  }
}

@keyframes addPaperBackdropIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes addPaperCardIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes apd-dropzone-shake {
  10%, 90% {
    transform: translateX(-2px);
  }
  20%, 80% {
    transform: translateX(4px);
  }
  30%, 50%, 70% {
    transform: translateX(-6px);
  }
  40%, 60% {
    transform: translateX(6px);
  }
}

/* line 22, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog {
  padding: 20px;
  border: none;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  inset: 0;
  overflow: visible;
}

/* line 33, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 39, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog[open]::backdrop {
  background: rgba(15, 23, 42, 0.5);
  animation: addPaperBackdropIn 160ms ease-out;
}

/* line 44, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog[open] .apd-card {
  animation: addPaperCardIn 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center top;
}

/* line 49, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-card {
  background: #fff;
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  /* line 62, app/assets/stylesheets/frontend/add_paper_dialog.scss */
  #add-paper-dialog[open]::backdrop, #add-paper-dialog[open] .apd-card {
    animation: none;
  }
}

/* line 66, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-height: 360px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 20px;
  padding: 14px 4px 4px;
}

@media (max-width: 768px) {
  /* line 22, app/assets/stylesheets/frontend/add_paper_dialog.scss */
  #add-paper-dialog {
    padding: 0;
  }
  /* line 80, app/assets/stylesheets/frontend/add_paper_dialog.scss */
  #add-paper-dialog .apd-card {
    max-width: 100vw;
    width: 100vw;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    padding: 20px 18px;
  }
}

@media (max-width: 480px) {
  /* line 91, app/assets/stylesheets/frontend/add_paper_dialog.scss */
  #add-paper-dialog .apd-plans {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* line 96, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plan-label {
  display: block;
  cursor: pointer;
  min-width: 0;
}

/* line 102, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plan-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 109, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plan-card {
  position: relative;
  padding: 18px 18px 16px;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 14px;
  transition: border-color .15s, background .15s, box-shadow .15s;
  min-width: 0;
}

/* line 119, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plan-card__badge {
  position: absolute;
  top: -10px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: #0D63D1;
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
}

/* line 133, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plan-card[data-plan-kind="fast"] .apd-plan-card__badge {
  background: #10B981;
}

/* line 137, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plan-card__price {
  font-size: 26px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.5px;
  line-height: 1;
  margin: 4px 0 8px;
}

/* line 146, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plan-card__name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

/* line 153, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plan-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 162, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plan-card__info {
  position: absolute;
  top: 10px;
  right: 12px;
  display: inline-flex;
  cursor: help;
  color: #94A3B8;
}

/* line 170, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plan-card__info i {
  font-size: 16px;
  line-height: 1;
}

/* line 175, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plan-card__info:hover i {
  color: #475569;
}

/* line 180, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plan-card__desc {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.4;
}

/* line 186, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plan-card__label {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
  line-height: 1.3;
}

/* line 194, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plan-radio:checked + .apd-plan-card[data-plan-kind="standard"] {
  border-color: #0D63D1;
  background: linear-gradient(to bottom, #F5F9FF 0%, #fff 30%);
  box-shadow: 0 4px 16px rgba(13, 99, 209, 0.14);
}

/* line 200, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-plan-radio:checked + .apd-plan-card[data-plan-kind="fast"] {
  border-color: #10B981;
  background: linear-gradient(to bottom, #F0FDF4 0%, #fff 30%);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.14);
}

/* line 207, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-dropzone {
  border: 2px dashed #CBD5E1;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  margin-bottom: 24px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: transparent;
}

/* line 217, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-dropzone:hover:not(.is-uploaded) {
  border-color: #0D63D1;
  background: #F8FAFF;
}

/* line 222, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-dropzone.apd-dropzone--error {
  border-color: #DC2626 !important;
  background: rgba(220, 38, 38, 0.06) !important;
  animation: apd-dropzone-shake 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

/* line 228, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-dropzone.is-uploaded {
  border-color: #16A34A;
  background: #F0FDF4;
}

/* line 232, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-dropzone.is-uploaded .apd-dropzone__icon {
  background: #DCFCE7;
}

/* line 235, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-dropzone.is-uploaded .apd-dropzone__label {
  color: #166534;
}

/* line 238, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-dropzone.is-uploaded .apd-dropzone__hint {
  color: #16A34A;
}

/* line 244, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-dropzone__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  background: #EFF6FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 255, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-dropzone__label {
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 6px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 266, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-dropzone__hint {
  font-size: 12px;
  color: #94A3B8;
}

/* line 271, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-dropzone__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  text-align: left;
  max-height: 180px;
  overflow-y: auto;
}

/* line 281, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-dropzone__list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 6px 12px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 13px;
  color: #0F172A;
}

/* line 293, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-dropzone__list-name {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}

/* line 302, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-dropzone__list-remove {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  background: #fff;
  color: #6B7280;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .15s, border-color .15s, color .15s;
}

/* line 319, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-dropzone__list-remove:hover {
  background: #FEE2E2;
  border-color: #FCA5A5;
  color: #DC2626;
}

/* line 326, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-waiver-row--error {
  background: rgba(220, 38, 38, 0.08) !important;
  box-shadow: 0 0 0 1px #DC2626;
  animation: apd-dropzone-shake 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

/* line 333, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

/* line 340, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

/* line 348, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-slider {
  position: absolute;
  inset: 0;
  background: #CBD5E1;
  border-radius: 24px;
  transition: .2s;
  cursor: pointer;
}

/* line 356, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-slider::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* line 370, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-switch input:checked + .apd-slider {
  background: #0D63D1;
}

/* line 373, app/assets/stylesheets/frontend/add_paper_dialog.scss */
#add-paper-dialog .apd-switch input:checked + .apd-slider::before {
  transform: translateX(20px);
}

@keyframes voucherPopupBackdropIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes voucherPopupCardIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* line 11, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup {
  padding: 20px;
  border: none;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  inset: 0;
  overflow: visible;
}

/* line 22, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 28, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup[open]::backdrop {
  background: rgba(15, 23, 42, 0.5);
  animation: voucherPopupBackdropIn 160ms ease-out;
}

/* line 33, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup .voucher-popup__card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: voucherPopupCardIn 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center top;
  font-family: Inter, sans-serif;
}

/* line 46, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup .voucher-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: #9CA3AF;
  padding: 4px;
  display: flex;
}

/* line 57, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup .voucher-popup__close:hover {
  color: #475569;
}

/* line 60, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup .voucher-popup__badge {
  display: inline-block;
  padding: 6px 12px;
  background: #EFF6FF;
  color: #0D63D1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* line 73, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup .voucher-popup__title {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 12px;
  letter-spacing: -0.4px;
}

/* line 81, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup .voucher-popup__desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 20px;
}

/* line 88, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup .voucher-popup__value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 14px;
}

/* line 99, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup .voucher-popup__value-amount {
  font-size: 32px;
  font-weight: 800;
  color: #16A34A;
  letter-spacing: -0.5px;
}

/* line 106, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup .voucher-popup__value-label {
  font-size: 14px;
  color: #16A34A;
  font-weight: 600;
}

/* line 112, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup .voucher-popup__cta {
  display: block;
  text-align: center;
  padding: 15px;
  background: #0D63D1;
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.2px;
}

/* line 124, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup .voucher-popup__cta:hover {
  background: #0B56B5;
  color: #fff;
}

/* line 127, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup .voucher-popup__login {
  text-align: center;
  margin: 14px 0 0;
  font-size: 12px;
  color: #94A3B8;
}

/* line 134, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup .voucher-popup__login-link {
  color: #0D63D1;
  font-weight: 600;
  text-decoration: none;
}

/* line 139, app/assets/stylesheets/frontend/voucher_popup.scss */
#voucher-popup .voucher-popup__login-link:hover {
  text-decoration: underline;
}

/* line 1, app/assets/stylesheets/frontend/_page_container.scss */
.page-container {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 640px) {
  /* line 1, app/assets/stylesheets/frontend/_page_container.scss */
  .page-container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  /* line 1, app/assets/stylesheets/frontend/_page_container.scss */
  .page-container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  /* line 1, app/assets/stylesheets/frontend/_page_container.scss */
  .page-container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  /* line 1, app/assets/stylesheets/frontend/_page_container.scss */
  .page-container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  /* line 1, app/assets/stylesheets/frontend/_page_container.scss */
  .page-container {
    max-width: 1536px;
  }
}

@media (min-width: 640px) {
  /* line 11, app/assets/stylesheets/frontend/_page_container.scss */
  .page-container--max-sm {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  /* line 12, app/assets/stylesheets/frontend/_page_container.scss */
  .page-container--max-md {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  /* line 13, app/assets/stylesheets/frontend/_page_container.scss */
  .page-container--max-lg {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  /* line 14, app/assets/stylesheets/frontend/_page_container.scss */
  .page-container--max-xl {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  /* line 15, app/assets/stylesheets/frontend/_page_container.scss */
  .page-container--max-2xl {
    max-width: 1536px;
  }
}

/* line 5, app/assets/stylesheets/components/ui/_typography.scss */
:root {
  --font-family-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-regular:  400;
  --font-medium:   500;
  --font-semibold: 600;
  --text-xs:    0.75rem;
  --leading-xs: 1rem;
  --text-sm:    0.875rem;
  --leading-sm: 1.25rem;
  --text-base:    1rem;
  --leading-base: 1.5rem;
  --text-lg:    1.125rem;
  --leading-lg: 1.75rem;
  --text-xl:    1.25rem;
  --leading-xl: 1.75rem;
  --text-2xl:    1.5rem;
  --leading-2xl: 2rem;
  --text-3xl:    1.875rem;
  --leading-3xl: 2.25rem;
  --text-4xl:    2.25rem;
  --leading-4xl: 2.5rem;
  --text-display-xs:    2.5rem;
  --leading-display-xs: 2.75rem;
  --text-display-sm:    3rem;
  --leading-display-sm: 3.25rem;
  --text-display-md:    3.75rem;
  --leading-display-md: 4rem;
  --text-display-lg:    4.5rem;
  --leading-display-lg: 4.75rem;
  --font-bold:   700;
}

/* line 33, app/assets/stylesheets/components/ui/_button.scss */
.ui_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border: 0;
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  cursor: pointer;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 52, app/assets/stylesheets/components/ui/_button.scss */
.ui_button:focus-visible {
  outline: 2px solid #0d63d1;
  outline-offset: 2px;
}

/* line 57, app/assets/stylesheets/components/ui/_button.scss */
.ui_button:disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 63, app/assets/stylesheets/components/ui/_button.scss */
.ui_button svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  pointer-events: none;
}

/* line 71, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-variant="default"] {
  background-color: #0d63d1;
  color: #ffffff;
}

/* line 75, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-variant="default"]:hover:not(:disabled) {
  background-color: #0b52ad;
}

/* line 76, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-variant="default"]:active:not(:disabled) {
  background-color: #08408a;
}

/* line 79, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-variant="secondary"] {
  background-color: #f1f5f9;
  color: #0f172a;
}

/* line 83, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-variant="secondary"]:hover:not(:disabled) {
  background-color: #e2e8f0;
}

/* line 84, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-variant="secondary"]:active:not(:disabled) {
  background-color: #cbd5e1;
}

/* line 87, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-variant="outline"] {
  background-color: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

/* line 92, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-variant="outline"]:hover:not(:disabled) {
  background-color: #f1f5f9;
  color: #0f172a;
}

/* line 97, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-variant="outline"]:active:not(:disabled) {
  background-color: #e2e8f0;
  color: #0f172a;
}

/* line 103, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-variant="ghost"] {
  background-color: transparent;
  color: #0f172a;
}

/* line 107, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-variant="ghost"]:hover:not(:disabled) {
  background-color: #f1f5f9;
  color: #0f172a;
}

/* line 112, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-variant="ghost"]:active:not(:disabled) {
  background-color: #e2e8f0;
  color: #0f172a;
}

/* line 118, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-variant="destructive"] {
  background-color: #dc2626;
  color: #ffffff;
}

/* line 122, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-variant="destructive"]:hover:not(:disabled) {
  background-color: #b91c1c;
}

/* line 123, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-variant="destructive"]:active:not(:disabled) {
  background-color: #991b1b;
}

/* line 127, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-size="default"] {
  height: 2.5rem;
}

/* line 128, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-size="xs"] {
  height: 1.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
}

/* line 129, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-size="sm"] {
  height: 2.25rem;
}

/* line 130, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-size="lg"] {
  height: 2.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

/* line 132, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-size="icon"] {
  width: 2.5rem;
  height: 2.5rem;
}

/* line 133, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-size="icon-xs"] {
  width: 1.75rem;
  height: 1.75rem;
}

/* line 134, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-size="icon-sm"] {
  width: 2.25rem;
  height: 2.25rem;
}

/* line 135, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-size="icon-lg"] {
  width: 2.75rem;
  height: 2.75rem;
}

/* line 137, app/assets/stylesheets/components/ui/_button.scss */
.ui_button[data-full-width="true"] {
  width: 100%;
}

/* line 139, app/assets/stylesheets/components/ui/_button.scss */
.ui_button.is-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

/* line 144, app/assets/stylesheets/components/ui/_button.scss */
.ui_button.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.125rem;
  height: 1.125rem;
  margin: -0.5625rem 0 0 -0.5625rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ui-button-spin 0.7s linear infinite;
}

@keyframes ui-button-spin {
  to {
    transform: rotate(360deg);
  }
}

/* line 6, app/assets/stylesheets/components/ui/_heading.scss */
.ui_heading {
  margin: 0;
  color: #0f172a;
  font-family: var(--font-family-sans);
  font-weight: var(--font-semibold);
  letter-spacing: 0;
}

/* line 13, app/assets/stylesheets/components/ui/_heading.scss */
.ui_heading[data-variant="h1"] {
  font-size: var(--text-4xl);
  line-height: var(--leading-4xl);
}

/* line 14, app/assets/stylesheets/components/ui/_heading.scss */
.ui_heading[data-variant="h2"] {
  font-size: var(--text-3xl);
  line-height: var(--leading-3xl);
}

/* line 15, app/assets/stylesheets/components/ui/_heading.scss */
.ui_heading[data-variant="h3"] {
  font-size: var(--text-2xl);
  line-height: var(--leading-2xl);
}

/* line 16, app/assets/stylesheets/components/ui/_heading.scss */
.ui_heading[data-variant="h4"] {
  font-size: var(--text-xl);
  line-height: var(--leading-xl);
}

/* line 17, app/assets/stylesheets/components/ui/_heading.scss */
.ui_heading[data-variant="h5"] {
  font-size: var(--text-lg);
  line-height: var(--leading-lg);
}

/* line 20, app/assets/stylesheets/components/ui/_heading.scss */
.ui_heading[data-variant^="display-"] {
  font-weight: var(--font-bold);
  letter-spacing: -0.02em;
}

/* line 24, app/assets/stylesheets/components/ui/_heading.scss */
.ui_heading[data-variant="display-xs"] {
  font-size: var(--text-display-xs);
  line-height: var(--leading-display-xs);
}

/* line 25, app/assets/stylesheets/components/ui/_heading.scss */
.ui_heading[data-variant="display-sm"] {
  font-size: var(--text-display-sm);
  line-height: var(--leading-display-sm);
}

/* line 26, app/assets/stylesheets/components/ui/_heading.scss */
.ui_heading[data-variant="display-md"] {
  font-size: var(--text-display-md);
  line-height: var(--leading-display-md);
}

/* line 27, app/assets/stylesheets/components/ui/_heading.scss */
.ui_heading[data-variant="display-lg"] {
  font-size: var(--text-display-lg);
  line-height: var(--leading-display-lg);
}

@media (max-width: 768px) {
  /* line 31, app/assets/stylesheets/components/ui/_heading.scss */
  .ui_heading[data-variant="display-md"] {
    font-size: var(--text-display-sm);
    line-height: var(--leading-display-sm);
  }
  /* line 32, app/assets/stylesheets/components/ui/_heading.scss */
  .ui_heading[data-variant="display-lg"] {
    font-size: var(--text-display-md);
    line-height: var(--leading-display-md);
  }
}

@media (max-width: 480px) {
  /* line 35, app/assets/stylesheets/components/ui/_heading.scss */
  .ui_heading[data-variant="display-xs"] {
    font-size: var(--text-4xl);
    line-height: var(--leading-4xl);
  }
  /* line 36, app/assets/stylesheets/components/ui/_heading.scss */
  .ui_heading[data-variant="display-sm"] {
    font-size: var(--text-display-xs);
    line-height: var(--leading-display-xs);
  }
  /* line 37, app/assets/stylesheets/components/ui/_heading.scss */
  .ui_heading[data-variant="display-md"] {
    font-size: var(--text-display-xs);
    line-height: var(--leading-display-xs);
  }
  /* line 38, app/assets/stylesheets/components/ui/_heading.scss */
  .ui_heading[data-variant="display-lg"] {
    font-size: var(--text-display-sm);
    line-height: var(--leading-display-sm);
  }
}

/* line 6, app/assets/stylesheets/components/ui/_text.scss */
.ui_text {
  margin: 0;
  color: #0f172a;
  font-family: var(--font-family-sans);
  font-weight: var(--font-regular);
}

/* line 12, app/assets/stylesheets/components/ui/_text.scss */
.ui_text[data-variant="body-lg"] {
  font-size: var(--text-lg);
  line-height: var(--leading-lg);
}

/* line 13, app/assets/stylesheets/components/ui/_text.scss */
.ui_text[data-variant="body-default"] {
  font-size: var(--text-base);
  line-height: var(--leading-base);
}

/* line 14, app/assets/stylesheets/components/ui/_text.scss */
.ui_text[data-variant="body-sm"] {
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
}

/* line 15, app/assets/stylesheets/components/ui/_text.scss */
.ui_text[data-variant="body-xs"] {
  font-size: var(--text-xs);
  line-height: var(--leading-xs);
}

/* line 17, app/assets/stylesheets/components/ui/_text.scss */
.ui_text[data-tone="muted"] {
  color: #64748b;
}

/* line 10, app/assets/stylesheets/components/ui/_link.scss */
.ui_link {
  color: #0d63d1;
  font: inherit;
  text-decoration: none;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 18, app/assets/stylesheets/components/ui/_link.scss */
.ui_link:hover {
  text-decoration: underline;
}

/* line 19, app/assets/stylesheets/components/ui/_link.scss */
.ui_link:active {
  color: #08408a;
}

/* line 21, app/assets/stylesheets/components/ui/_link.scss */
.ui_link:focus-visible {
  outline: 2px solid #0d63d1;
  outline-offset: 2px;
  border-radius: 2px;
}

/* line 16, app/assets/stylesheets/components/ui/_input.scss */
.ui_input {
  display: flex;
  width: 100%;
  height: 2.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  background-color: #ffffff;
  color: #0f172a;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 32, app/assets/stylesheets/components/ui/_input.scss */
.ui_input::placeholder {
  color: #94a3b8;
}

/* line 36, app/assets/stylesheets/components/ui/_input.scss */
.ui_input::file-selector-button {
  border: 0;
  background-color: transparent;
  font-size: 0.875rem;
  font-weight: 500;
}

/* line 43, app/assets/stylesheets/components/ui/_input.scss */
.ui_input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* line 50, app/assets/stylesheets/components/ui/_input.scss */
.ui_input:-webkit-autofill, .ui_input:-webkit-autofill:hover, .ui_input:-webkit-autofill:focus, .ui_input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
  -webkit-text-fill-color: #0f172a;
  transition: background-color 9999s ease-in-out 0s;
}

/* line 60, app/assets/stylesheets/components/ui/_input.scss */
.ui_input[data-variant="default"] {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* line 63, app/assets/stylesheets/components/ui/_input.scss */
.ui_input[data-variant="default"]:focus-visible {
  outline: 2px solid #0d63d1;
  outline-offset: 2px;
  border-color: #94a3b8;
}

/* line 70, app/assets/stylesheets/components/ui/_input.scss */
.ui_input[data-variant="borderless"] {
  border: 0;
}

/* line 73, app/assets/stylesheets/components/ui/_input.scss */
.ui_input[data-variant="borderless"]:focus-visible {
  outline: none;
  box-shadow: none;
}

/* line 19, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 2.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 33, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group:focus-within {
  outline: 2px solid #0d63d1;
  outline-offset: 2px;
  border-color: #94a3b8;
}

/* line 40, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group:has(> .ui_input_group-addon[data-align="block-start"]), .ui_input_group:has(> .ui_input_group-addon[data-align="block-end"]) {
  flex-direction: column;
  align-items: stretch;
}

/* line 47, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group .ui_input {
  flex: 1;
  min-width: 0;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding-inline: 0.75rem;
}

/* line 57, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group .ui_input:focus-visible {
  outline: none;
  border-color: transparent;
}

/* line 65, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group:has(> .ui_input_group-addon[data-align="inline-start"]) .ui_input {
  padding-inline-start: 0;
}

/* line 68, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group:has(> .ui_input_group-addon[data-align="inline-end"]) .ui_input {
  padding-inline-end: 0;
}

/* line 73, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group-addon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
  color: #64748b;
  white-space: nowrap;
}

/* line 84, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group-addon svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

/* line 90, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group-addon i {
  font-size: 1.125rem;
  line-height: 1;
  flex-shrink: 0;
}

/* line 98, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group-addon button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 112, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group-addon button:hover:not(:disabled) {
  color: #0f172a;
}

/* line 113, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group-addon button:focus-visible {
  outline: 2px solid #0d63d1;
  outline-offset: 2px;
}

/* line 117, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group-addon[data-align="inline-start"] {
  order: -1;
}

/* line 118, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group-addon[data-align="inline-end"] {
  order: 1;
}

/* line 121, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group-addon[data-align="block-start"], .ui_input_group-addon[data-align="block-end"] {
  justify-content: flex-start;
  padding-block: 0.5rem;
}

/* line 126, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group-addon[data-align="block-start"] {
  order: -1;
  border-bottom: 1px solid #cbd5e1;
}

/* line 127, app/assets/stylesheets/components/ui/_input_group.scss */
.ui_input_group-addon[data-align="block-end"] {
  order: 1;
  border-top: 1px solid #cbd5e1;
}

/* line 17, app/assets/stylesheets/components/ui/_field.scss */
.ui_field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* line 22, app/assets/stylesheets/components/ui/_field.scss */
.ui_field[data-orientation="horizontal"] {
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  /* line 28, app/assets/stylesheets/components/ui/_field.scss */
  .ui_field[data-orientation="responsive"] {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}

/* line 37, app/assets/stylesheets/components/ui/_field.scss */
.ui_field[data-invalid] .ui_field-label {
  color: #dc2626;
}

/* line 39, app/assets/stylesheets/components/ui/_field.scss */
.ui_field[data-invalid] .ui_input,
.ui_field[data-invalid] .ui_input_group {
  border-color: #dc2626;
}

/* line 46, app/assets/stylesheets/components/ui/_field.scss */
.ui_field-label {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 500;
}

/* line 53, app/assets/stylesheets/components/ui/_field.scss */
.ui_field-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  line-height: 1rem;
}

/* line 62, app/assets/stylesheets/components/ui/_field.scss */
.ui_field-description {
  margin: 0;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1rem;
}

/* line 69, app/assets/stylesheets/components/ui/_field.scss */
.ui_field-error {
  margin: 0;
  color: #dc2626;
  font-size: 0.75rem;
  line-height: 1rem;
}

/* line 1, app/assets/stylesheets/components/ui/_tooltip.scss */
.tooltip {
  position: relative;
  display: inline-block;
}

/* line 6, app/assets/stylesheets/components/ui/_tooltip.scss */
.tooltip-trigger {
  display: inline-flex;
  cursor: help;
}

/* line 11, app/assets/stylesheets/components/ui/_tooltip.scss */
.tooltip-wrapper {
  position: absolute;
  z-index: 50;
}

/* line 16, app/assets/stylesheets/components/ui/_tooltip.scss */
.tooltip-content {
  z-index: 9999;
  width: max-content;
  max-width: 350px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.5rem;
  background-color: #fff;
  color: #0F172A;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  outline: none;
  pointer-events: auto;
}

/* line 33, app/assets/stylesheets/components/ui/_tooltip.scss */
.tooltip-content--dark {
  background-color: #0F172A;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 39, app/assets/stylesheets/components/ui/_tooltip.scss */
.tooltip-content[data-state="closed"] {
  display: none;
}

/* line 1, app/assets/stylesheets/components/ui/_accordion.scss */
.st-accordion {
  width: 100%;
  border-bottom: 1px solid #e2e8f0;
}

/* line 5, app/assets/stylesheets/components/ui/_accordion.scss */
.st-accordion__heading {
  display: flex;
  margin: 0;
}

/* line 10, app/assets/stylesheets/components/ui/_accordion.scss */
.st-accordion__trigger {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: transparent;
  border: none;
  color: #0F172A;
  font: inherit;
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

/* line 28, app/assets/stylesheets/components/ui/_accordion.scss */
.st-accordion__trigger:hover {
  text-decoration: underline;
}

/* line 33, app/assets/stylesheets/components/ui/_accordion.scss */
.st-accordion__title {
  flex: 1;
}

/* line 37, app/assets/stylesheets/components/ui/_accordion.scss */
.st-accordion__chevron {
  height: 1rem;
  width: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* line 44, app/assets/stylesheets/components/ui/_accordion.scss */
.st-accordion__trigger[data-state="open"] .st-accordion__chevron {
  transform: rotate(180deg);
}

/* line 48, app/assets/stylesheets/components/ui/_accordion.scss */
.st-accordion__content {
  overflow: hidden;
  height: 0;
  font-size: 0.875rem;
  transition: height 0.2s ease;
}

/* line 54, app/assets/stylesheets/components/ui/_accordion.scss */
.st-accordion__content--visible {
  height: auto;
}

/* line 59, app/assets/stylesheets/components/ui/_accordion.scss */
.st-accordion__body {
  padding: 0 0 1rem;
}

/* line 7, app/assets/stylesheets/components/ui/_divider.scss */
.ui_divider {
  margin: 0;
  border: 0;
  background: none;
}

/* line 12, app/assets/stylesheets/components/ui/_divider.scss */
.ui_divider[data-orientation="horizontal"]:not([data-labeled]) {
  width: 100%;
  height: 1px;
  background-color: #dcdee0;
}

/* line 18, app/assets/stylesheets/components/ui/_divider.scss */
.ui_divider[data-orientation="vertical"]:not([data-labeled]) {
  width: 1px;
  height: 100%;
  align-self: stretch;
  background-color: #dcdee0;
}

/* line 25, app/assets/stylesheets/components/ui/_divider.scss */
.ui_divider[data-labeled="true"] {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* line 32, app/assets/stylesheets/components/ui/_divider.scss */
.ui_divider__line {
  flex: 1 0 0;
  height: 1px;
  min-width: 1px;
  background-color: #dcdee0;
}

/* line 39, app/assets/stylesheets/components/ui/_divider.scss */
.ui_divider__label {
  flex-shrink: 0;
  font-family: var(--font-family-sans);
  font-size: var(--text-xs);
  line-height: var(--leading-xs);
  font-weight: var(--font-medium);
  color: #5e656e;
  white-space: nowrap;
}

/* line 8, app/assets/stylesheets/components/_landing_accordion.scss */
.landing-accordion {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* line 18, app/assets/stylesheets/components/_landing_accordion.scss */
.landing-accordion:has(.landing-accordion__trigger[data-state="open"]) {
  border-color: #0d63d1;
  box-shadow: inset 0 0 0 1px #0d63d1;
}

/* line 23, app/assets/stylesheets/components/_landing_accordion.scss */
.landing-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #0f172a;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

/* line 40, app/assets/stylesheets/components/_landing_accordion.scss */
.landing-accordion__trigger[data-state="open"] {
  color: #0d63d1;
}

/* line 45, app/assets/stylesheets/components/_landing_accordion.scss */
.landing-accordion__title {
  flex: 1;
}

/* line 51, app/assets/stylesheets/components/_landing_accordion.scss */
.landing-accordion__indicator {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #64748b;
  transition: color 0.2s ease;
}

/* line 59, app/assets/stylesheets/components/_landing_accordion.scss */
.landing-accordion__indicator::before, .landing-accordion__indicator::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.2s ease;
}

/* line 68, app/assets/stylesheets/components/_landing_accordion.scss */
.landing-accordion__indicator::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}

/* line 77, app/assets/stylesheets/components/_landing_accordion.scss */
.landing-accordion__indicator::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  margin-left: -1px;
}

/* line 86, app/assets/stylesheets/components/_landing_accordion.scss */
.landing-accordion__trigger[data-state="open"] .landing-accordion__indicator {
  color: #0d63d1;
}

/* line 89, app/assets/stylesheets/components/_landing_accordion.scss */
.landing-accordion__trigger[data-state="open"] .landing-accordion__indicator::after {
  transform: scaleY(0);
}

/* line 102, app/assets/stylesheets/components/_landing_accordion.scss */
.landing-accordion__content {
  overflow: hidden;
  height: 0;
  transition: height 0.2s ease;
}

/* line 108, app/assets/stylesheets/components/_landing_accordion.scss */
.landing-accordion__trigger[data-state="open"] + .landing-accordion__content {
  height: auto;
}

/* line 112, app/assets/stylesheets/components/_landing_accordion.scss */
.landing-accordion__body {
  padding: 0 24px 20px;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}
