:root {
  --bg: #f8f8fb;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --surface-muted: #eef3fb;
  --surface-warm: #fff6f4;
  --text: #1d2433;
  --text-soft: #667085;
  --brand: #0038a8;
  --brand-soft: #2852b8;
  --accent: #d52b1e;
  --accent-soft: #ffe2df;
  --border: rgba(0, 56, 168, 0.1);
  --shadow: 0 18px 42px rgba(26, 44, 88, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(213, 43, 30, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

button,
input,
select {
  font: inherit;
}

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

code {
  padding: 0.15rem 0.4rem;
  border-radius: 8px;
  background: #eef3fb;
  color: var(--brand);
  font-size: 0.92em;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 56, 168, 0.96), rgba(213, 43, 30, 0.92));
  color: #ffffff;
}

.hero--flag {
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 255, 255, 0.08), transparent 14%),
    linear-gradient(135deg, rgba(0, 56, 168, 0.98) 0%, rgba(0, 56, 168, 0.94) 52%, rgba(213, 43, 30, 0.9) 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 55%),
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.16), transparent 20%);
  pointer-events: none;
}

.hero--flag .hero__overlay {
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(255, 255, 255, 0.08) 58% 62%, transparent 62% 100%),
    linear-gradient(120deg, transparent 0 63%, rgba(213, 43, 30, 0.12) 63% 68%, transparent 68% 100%),
    radial-gradient(circle at 82% 26%, rgba(255, 255, 255, 0.08), transparent 10%),
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 52%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0.8rem 0 2.1rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 0 1rem;
}

.topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.topbar__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.topbar__link {
  color: rgba(255, 250, 242, 0.8);
  transition: color 0.18s ease, opacity 0.18s ease;
}

.topbar__link:hover,
.topbar__link:focus-visible {
  color: #ffffff;
}

.topbar__link--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.topbar__link--cta:hover,
.topbar__link--cta:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.language-switcher__button {
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-switcher__button:hover,
.language-switcher__button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  outline: none;
}

.language-switcher__button.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  box-shadow: 0 10px 24px rgba(13, 30, 68, 0.16);
}

.badge,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  margin-top: 0.35rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.eyebrow {
  color: #f7b9b3;
  margin-bottom: 0.7rem;
}

.hero__grid {
  display: grid;
  gap: 1.6rem;
}

.hero__art {
  display: none;
}

.hero__art-frame {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  padding: 1.1rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 38%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 28px 56px rgba(12, 30, 74, 0.2);
  backdrop-filter: blur(14px);
}

.hero__art-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 72% 28%, rgba(213, 43, 30, 0.18), transparent 26%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__art-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
}

.hero__page-art {
  display: none;
}

.hero__page-art-card {
  position: relative;
  width: min(100%, 320px);
  min-height: 248px;
  margin-inline: auto;
  padding: 1.2rem;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.18), transparent 30%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 24px 54px rgba(12, 30, 74, 0.18);
  backdrop-filter: blur(14px);
}

.hero__page-art-card::before,
.hero__page-art-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.88;
}

.hero__page-art-card::before {
  width: 168px;
  height: 168px;
  top: -36px;
  right: -28px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 68%, transparent 72%);
}

.hero__page-art-card::after {
  width: 146px;
  height: 146px;
  bottom: -48px;
  left: -34px;
  background: radial-gradient(circle, rgba(213, 43, 30, 0.18), rgba(213, 43, 30, 0.04) 66%, transparent 74%);
}

.hero__page-art-card--directory {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    radial-gradient(circle at 22% 20%, rgba(120, 209, 255, 0.18), transparent 34%);
}

.hero__page-art-card--roadmap {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    radial-gradient(circle at 22% 20%, rgba(255, 219, 124, 0.2), transparent 34%);
}

.hero__page-art-card--assistant {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    radial-gradient(circle at 22% 20%, rgba(126, 255, 218, 0.18), transparent 34%);
}

.hero__page-art-card--pricing {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    radial-gradient(circle at 22% 20%, rgba(255, 173, 126, 0.2), transparent 34%);
}

.hero__page-art-card--signup {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    radial-gradient(circle at 22% 20%, rgba(161, 188, 255, 0.18), transparent 34%);
}

.hero__page-art-card--dashboard {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    radial-gradient(circle at 22% 20%, rgba(255, 147, 201, 0.2), transparent 34%);
}

.hero__page-art-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff7ef;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__page-art-emoji {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-top: 1.05rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-size: 2.45rem;
}

.hero__page-art-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.hero__page-art-line {
  display: block;
  width: 100%;
  height: 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.hero__page-art-line--short {
  width: 68%;
}

.hero__page-art-line--mid {
  width: 82%;
}

.hero__page-art-pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hero__page-art-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.77rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__text h1 {
  margin: 0;
  font-size: clamp(1.55rem, 4.7vw, 2.9rem);
  line-height: 0.98;
  max-width: 13ch;
  letter-spacing: -0.03em;
}

.hero__lead {
  max-width: 32rem;
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.6;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 33px;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff8ef;
  font-size: 0.79rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.hero__stats {
  display: grid;
  gap: 0.85rem;
}

.stat-card,
.step-card,
.helper-card,
.filters,
.modal__panel {
  backdrop-filter: blur(12px);
}

.stat-card {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 36px rgba(18, 47, 109, 0.12);
}

.stat-card__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-card__label {
  color: rgba(255, 250, 242, 0.8);
  font-size: 0.82rem;
  margin-top: 0.28rem;
}

.stat-card:last-child {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(213, 43, 30, 0.12));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.68rem 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(213, 43, 30, 0.22);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button--small {
  min-height: 44px;
  padding: 0.5rem 0.8rem;
  font-size: 0.86rem;
}

.helper-card .button--ghost,
.modal-detail__contact .button--ghost {
  background: #ffffff;
  color: var(--brand);
  border: 1px solid rgba(0, 56, 168, 0.14);
}

.helper-card__media {
  margin: -0.7rem -0.7rem 0.45rem;
  border-radius: 14px 14px 10px 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #dbe7ff, #f5f8ff);
}

.helper-card__media.media-frame--contain,
.modal-detail__image-wrap.media-frame--contain {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
}

.helper-card__image,
.modal-detail__image,
.provider-profile-card__image,
.admin-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.media-image--contain {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.field__hint {
  display: block;
  margin-top: 0.45rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.package-decision-note {
  grid-column: 1 / -1;
  margin: -0.2rem 0 0.25rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(213, 43, 30, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(213, 43, 30, 0.12), transparent 34%),
    linear-gradient(135deg, #fff8f4 0%, #fffefe 54%, #f4f8ff 100%);
  box-shadow:
    0 14px 28px rgba(18, 47, 109, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.package-decision-note__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.42rem;
  padding: 0.26rem 0.62rem;
  border-radius: 999px;
  background: rgba(213, 43, 30, 0.1);
  color: #972f24;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-decision-note__title {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: #1f2d47;
}

.package-decision-note__copy {
  margin: 0;
  color: #4a5a75;
  line-height: 1.58;
}

.package-decision-note__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.package-decision-note__actions .button {
  min-height: 38px;
}

.field--top-gap {
  margin-top: 0.6rem;
}

.image-upload-preview {
  margin-top: 0.6rem;
  width: min(100%, 420px);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.image-upload-preview__image {
  width: 100%;
  height: 100%;
  max-width: calc(100% - 1.5rem);
  max-height: calc(100% - 1.5rem);
  object-fit: contain;
  object-position: center;
  display: block;
}

.section {
  padding: 3rem 0;
}

.section--compact {
  padding: 2rem 0 0.75rem;
}

.notice-banner {
  margin-bottom: 1.25rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(213, 43, 30, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff7f6 0%, #fffdfd 100%);
  color: #7c2d26;
  line-height: 1.6;
}

.notice-banner--soft {
  border-color: rgba(0, 56, 168, 0.12);
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  color: var(--text);
}

[data-founder-offer-counter] {
  display: inline-flex;
  align-items: center;
  margin-top: 0.8rem;
  padding: 0.85rem 1.05rem 0.85rem 1.2rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(213, 43, 30, 0.12), rgba(255, 255, 255, 0.95) 42%, rgba(0, 56, 168, 0.08) 100%);
  border: 1px solid rgba(213, 43, 30, 0.24);
  box-shadow:
    0 14px 28px rgba(18, 47, 109, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  color: #1a2340;
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.01em;
  position: relative;
}

[data-founder-offer-counter]::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7b66 0%, #d52b1e 100%);
  box-shadow:
    0 0 0 5px rgba(213, 43, 30, 0.12),
    0 0 18px rgba(213, 43, 30, 0.22);
  transform: translateY(-50%);
}

@media (max-width: 640px) {
  [data-founder-offer-counter] {
    display: flex;
    width: 100%;
    font-size: 0.98rem;
  }
}

.section-heading h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.results {
  color: var(--text-soft);
}

.steps {
  display: grid;
  gap: 1rem;
}

.quick-start-grid {
  margin-bottom: 1.15rem;
}

.step-card {
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow);
}

.step-card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
}

.step-card--warning {
  border-color: rgba(213, 43, 30, 0.12);
  background: linear-gradient(180deg, #fffaf9 0%, #ffffff 100%);
}

.roadmap-card {
  padding: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96));
  box-shadow: var(--shadow);
}

.pricing-grid {
  display: grid;
  gap: 1rem;
}

.pricing-invest-note {
  margin: 1.1rem 0 1.35rem;
  padding: 1.1rem 1.15rem 1.15rem;
  border: 2px solid rgba(213, 43, 30, 0.34);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(213, 43, 30, 0.18), transparent 36%),
    linear-gradient(135deg, #fff3ed 0%, #fffdfa 46%, #eef5ff 100%);
  box-shadow:
    0 18px 38px rgba(18, 47, 109, 0.1),
    0 0 0 4px rgba(213, 43, 30, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.pricing-invest-note__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.7rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(213, 43, 30, 0.14), rgba(0, 56, 168, 0.08));
  color: #8f281f;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-invest-note__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.pricing-invest-note__chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.5rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(213, 43, 30, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: #1f2e49;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.pricing-invest-note__chip--premium {
  background: linear-gradient(135deg, rgba(213, 43, 30, 0.1), rgba(255, 255, 255, 0.94));
}

.pricing-invest-note__chip--featured {
  background: linear-gradient(135deg, rgba(0, 56, 168, 0.08), rgba(255, 255, 255, 0.94));
}

.pricing-invest-note p {
  margin: 0;
  color: #20314c;
  font-size: 1.02rem;
  line-height: 1.68;
}

.pricing-card {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: var(--shadow);
}

.pricing-card--popular {
  border-color: rgba(213, 43, 30, 0.18);
  background: linear-gradient(180deg, #fff8f6 0%, #ffffff 100%);
  box-shadow: 0 20px 40px rgba(213, 43, 30, 0.08);
}

.pricing-card--featured {
  border-color: rgba(213, 43, 30, 0.18);
  background: linear-gradient(180deg, #fff9f8 0%, #ffffff 100%);
}

.pricing-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d52b1e 0%, #0038a8 100%);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.pricing-card__label,
.pricing-card__price {
  display: block;
}

.pricing-card__label {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card h3 {
  margin: 0.35rem 0 0.6rem;
}

.pricing-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.pricing-card__price {
  margin-top: 0.95rem;
  font-size: 1.3rem;
  font-weight: 800;
}

.pricing-card__meta {
  margin-top: 0.45rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.package-list {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.package-cta {
  margin-top: 1rem;
}

.pricing-table-wrapper {
  margin-top: 1.25rem;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table th,
.pricing-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(0, 56, 168, 0.08);
  text-align: left;
}

.pricing-table th {
  background: #f4f8ff;
}

.pricing-table__plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.pricing-table__plan--free {
  background: #eef4ff;
  color: var(--brand-blue);
}

.pricing-table__plan--premium {
  background: linear-gradient(180deg, #fff4f2 0%, #fffdfd 100%);
  color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(213, 43, 30, 0.12);
}

.pricing-table__plan--featured {
  background: linear-gradient(135deg, #d52b1e 0%, #0038a8 100%);
  color: #ffffff;
}

.pricing-table__badge {
  display: inline-flex;
  margin-top: 0.45rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff4f2 0%, #fffdfd 100%);
  box-shadow: inset 0 0 0 1px rgba(213, 43, 30, 0.12);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
}

.pricing-table__value {
  font-weight: 600;
}

.pricing-table__value--yes,
.pricing-table__value--strong {
  color: #0f5132;
}

.pricing-table__value--no {
  color: #8a94a6;
}

.pricing-table__value--featured {
  color: var(--brand);
  font-weight: 800;
}

.pricing-table__value--price,
.pricing-table__value--price-featured {
  font-size: 1.02rem;
  font-weight: 800;
}

.pricing-table__value--price-featured {
  color: var(--brand);
}

.pricing-table__row--highlight td {
  background: linear-gradient(180deg, #fffdfd 0%, #fff8f8 100%);
}

.pricing-table__row--price td {
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.roadmap-card__header {
  display: grid;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.roadmap-card__lead,
.roadmap-card__meta {
  margin: 0;
}

.roadmap-card__lead {
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
  font-size: 0.92rem;
}

.roadmap-card__meta {
  margin-top: 0.5rem;
  color: var(--text-soft);
}

.roadmap-progress {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.roadmap-progress__bar {
  overflow: hidden;
  width: min(100%, 260px);
  height: 10px;
  border-radius: 999px;
  background: #e9efff;
}

.roadmap-progress__bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: width 180ms ease;
}

.roadmap-list {
  display: grid;
  gap: 0.6rem;
}

.roadmap-item {
  display: flex;
  gap: 0.7rem;
  align-items: start;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(0, 56, 168, 0.08);
  border-radius: 14px;
  background: #ffffff;
}

.roadmap-item__check {
  flex: 0 0 auto;
}

.roadmap-item__checkbox {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
  flex: 0 0 auto;
}

.roadmap-item__content {
  min-width: 0;
}

.roadmap-item__title,
.roadmap-item__description {
  margin: 0;
}

.roadmap-item__title {
  font-size: 0.92rem;
  font-weight: 700;
}

.roadmap-item__description {
  margin-top: 0.2rem;
  color: var(--text-soft);
  line-height: 1.4;
  font-size: 0.84rem;
}

.roadmap-item__outcome {
  margin: 0.42rem 0 0;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}

.roadmap-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.6rem;
}

.roadmap-item--done {
  background: linear-gradient(180deg, #f7fbff 0%, #fdfefe 100%);
  border-color: rgba(0, 56, 168, 0.14);
}

.roadmap-item--done .roadmap-item__title {
  color: var(--brand);
}

.roadmap-summary {
  margin-top: 0.95rem;
}

.filters {
  display: grid;
  gap: 1rem;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96));
  box-shadow: var(--shadow);
}

.filters__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.65rem;
}

.filters__actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand);
  border: 1px solid rgba(0, 56, 168, 0.16);
  box-shadow: 0 8px 20px rgba(13, 30, 68, 0.08);
  font-weight: 600;
}

.filters__actions .button:hover,
.filters__actions .button:focus-visible {
  background: #f5f8ff;
  border-color: rgba(0, 56, 168, 0.24);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field span {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-soft);
}

.field input,
.field select {
  width: 100%;
  min-height: 42px;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(20, 38, 31, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
}

.field input:focus,
.field select:focus {
  outline: 3px solid rgba(0, 56, 168, 0.12);
  border-color: rgba(0, 56, 168, 0.35);
}

.password-input-wrap {
  position: relative;
  width: 100%;
}

.password-input-wrap input {
  padding-right: 3.3rem;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border: 1px solid rgba(20, 38, 31, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-soft);
  cursor: pointer;
  transform: translateY(-50%);
}

.password-toggle:hover {
  color: var(--brand);
  border-color: rgba(0, 56, 168, 0.2);
}

.password-toggle:focus-visible {
  outline: 3px solid rgba(0, 56, 168, 0.12);
  border-color: rgba(0, 56, 168, 0.35);
}

.password-toggle__icon {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.helpers-grid {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.85rem;
  align-items: stretch;
}

.helper-card {
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr auto;
  gap: 0.55rem;
  padding: 0.78rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 12px 28px rgba(21, 42, 84, 0.07);
  position: relative;
  height: 100%;
}

.helper-card--free {
  border-color: rgba(132, 149, 178, 0.24);
}

.helper-card--premium {
  border-color: rgba(0, 56, 168, 0.24);
  box-shadow: 0 16px 34px rgba(18, 47, 109, 0.12);
}

.helper-card--featured {
  border-color: rgba(213, 43, 30, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 248, 247, 0.98) 0%, rgba(251, 252, 255, 0.98) 100%);
  box-shadow:
    0 22px 46px rgba(163, 42, 31, 0.18),
    0 0 0 3px rgba(213, 43, 30, 0.08);
  transform: translateY(-2px);
}

.helper-card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(213, 43, 30, 0.88), rgba(0, 56, 168, 0.7));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.favorite-button {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(0, 56, 168, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-soft);
  cursor: pointer;
}

.favorite-button.is-active {
  background: #fff1ef;
  color: var(--accent);
  border-color: rgba(213, 43, 30, 0.18);
}

.helper-card__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.4rem;
}

.helper-card__location,
.helper-card__languages,
.helper-card__summary {
  margin: 0;
}

.helper-card__summary {
  min-height: 2.8rem;
}

.helper-card__type {
  margin: 0 0 0.2rem;
  color: var(--brand-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.62rem;
}

.helper-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-badge--verified {
  background: #edf4ff;
  color: var(--brand);
}

.status-badge--free {
  background: #f2f5fb;
  color: #53627d;
}

.status-badge--premium {
  background: #eef3ff;
  color: #0f3e9a;
}

.status-badge--featured {
  background: linear-gradient(135deg, #d52b1e 0%, #0038a8 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(163, 42, 31, 0.18);
}

.status-badge--founder {
  background: linear-gradient(135deg, #fff4d6 0%, #ffe5a0 100%);
  color: #7a4a00;
  border: 1px solid rgba(181, 121, 0, 0.2);
}

.status-badge--state-new {
  background: #eef4ff;
  color: #35579a;
}

.status-badge--state-progress {
  background: #fff4e7;
  color: #9a5a13;
}

.status-badge--state-answered {
  background: #ecf9f0;
  color: #1f7a45;
}

.status-badge--state-closed {
  background: #f1f3f8;
  color: #5c6478;
}

.helper-card__name {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.22;
}

.helper-card__location,
.helper-card__languages,
.helper-card__summary {
  color: var(--text-soft);
  line-height: 1.32;
  font-size: 0.72rem;
}

.helper-card__summary {
  min-height: 2.9rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.helper-card__location {
  margin-top: 0.12rem;
  font-weight: 600;
  color: var(--brand-soft);
}

.helper-card__trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  align-content: start;
}

.helper-card__meta-item {
  min-width: 0;
  padding: 0.42rem 0.5rem;
  border-radius: 10px;
  background: #f6f9ff;
  border: 1px solid rgba(0, 56, 168, 0.08);
}

.helper-card__meta-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text-soft);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.helper-card__response-time,
.helper-card__member-since,
.helper-card__price-range,
.helper-card__main-service,
.helper-card__lead-count {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.helper-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
}

.helper-card__hint {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.helper-card__actions .button {
  flex: 1 1 128px;
  min-height: 38px;
  padding: 0.52rem 0.72rem;
  font-size: 0.78rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.helper-card__services {
  align-content: start;
  min-height: 2.2rem;
}

.helper-card__package-highlight {
  padding: 0.6rem 0.72rem;
  border-radius: 14px;
  border: 1px solid rgba(132, 149, 178, 0.18);
  background: #f6f8fc;
}

.helper-card--free .helper-card__package-highlight {
  background: #f5f7fb;
  border-color: rgba(132, 149, 178, 0.2);
}

.helper-card--premium .helper-card__package-highlight {
  background: linear-gradient(180deg, #eef4ff 0%, #f7faff 100%);
  border-color: rgba(0, 56, 168, 0.18);
}

.helper-card--featured .helper-card__package-highlight {
  background: linear-gradient(180deg, #fff0ec 0%, #fff7f4 58%, #fffdfd 100%);
  border-color: rgba(213, 43, 30, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.helper-card__package-title,
.helper-card__package-copy {
  display: block;
  margin: 0;
}

.helper-card__package-title {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--text);
}

.helper-card__package-copy {
  margin-top: 0.18rem;
  color: var(--text-soft);
  font-size: 0.73rem;
  line-height: 1.4;
}

.directory-page .helper-card--compact {
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 0.45rem;
  padding: 0.62rem;
}

.directory-page .helper-card--compact .helper-card__media {
  margin: -0.54rem -0.54rem 0.3rem;
  aspect-ratio: 16 / 10;
}

.directory-page .helper-card--compact .helper-card__badges {
  gap: 0.25rem;
}

.directory-page .helper-card--compact .status-badge,
.directory-page .helper-card--compact .price-pill,
.directory-page .helper-card--compact .chip {
  font-size: 0.58rem;
  padding: 0.16rem 0.36rem;
}

.directory-page .helper-card--compact .helper-card__type {
  margin-bottom: 0.14rem;
  font-size: 0.58rem;
}

.directory-page .helper-card--compact .helper-card__name {
  font-size: 0.86rem;
}

.directory-page .helper-card--compact .helper-card__location,
.directory-page .helper-card--compact .helper-card__summary,
.directory-page .helper-card--compact .helper-card__languages {
  font-size: 0.68rem;
}

.directory-page .helper-card--compact .helper-card__summary {
  min-height: 0;
  -webkit-line-clamp: 2;
}

.directory-page .helper-card--compact-free {
  background: linear-gradient(180deg, #fcfdff 0%, #f7faff 100%);
  border-color: rgba(160, 176, 204, 0.34);
  box-shadow: 0 10px 24px rgba(18, 47, 109, 0.08);
}

.directory-page .helper-card--compact-free .helper-card__summary {
  display: none;
  color: #66748d;
}

.directory-page .helper-card--compact-free .helper-card__trust {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.directory-page .helper-card--compact-free .helper-card__services {
  min-height: 0;
}

.directory-page .helper-card--compact-free .helper-card__actions .button {
  flex: 1 1 100%;
}

.directory-page .helper-card--compact .helper-card__package-highlight {
  display: none;
}

.directory-page .helper-card--compact .helper-card__package-title {
  font-size: 0.7rem;
}

.directory-page .helper-card--compact .helper-card__package-copy {
  display: none;
}

#homeDirectoryPreview .helpers-grid {
  gap: 0.5rem;
}

#homeDirectoryPreview .helper-card {
  gap: 0.42rem;
  padding: 0.62rem;
  border-radius: 14px;
}

#homeDirectoryPreview .helper-card__media {
  aspect-ratio: 16 / 9;
}

#homeDirectoryPreview .helper-card__badges {
  gap: 0.24rem;
}

#homeDirectoryPreview .status-badge,
#homeDirectoryPreview .price-pill,
#homeDirectoryPreview .chip {
  font-size: 0.57rem;
  padding: 0.14rem 0.34rem;
}

#homeDirectoryPreview .favorite-button {
  min-width: 38px;
  min-height: 38px;
}

#homeDirectoryPreview .helper-card__type {
  margin-bottom: 0.12rem;
  font-size: 0.56rem;
}

#homeDirectoryPreview .helper-card__name {
  font-size: 0.84rem;
}

#homeDirectoryPreview .helper-card__location,
#homeDirectoryPreview .helper-card__summary,
#homeDirectoryPreview .helper-card__languages {
  font-size: 0.67rem;
}

#homeDirectoryPreview .helper-card__summary {
  min-height: 0;
  -webkit-line-clamp: 2;
}

#homeDirectoryPreview .helper-card__package-highlight {
  padding: 0.48rem 0.58rem;
  border-radius: 12px;
}

#homeDirectoryPreview .helper-card__package-title {
  font-size: 0.7rem;
}

#homeDirectoryPreview .helper-card__package-copy {
  font-size: 0.68rem;
}

#homeDirectoryPreview .helper-card__trust {
  gap: 0.28rem;
}

#homeDirectoryPreview .helper-card__meta-item {
  padding: 0.34rem 0.4rem;
}

#homeDirectoryPreview .helper-card__meta-label {
  margin-bottom: 0.14rem;
  font-size: 0.56rem;
}

#homeDirectoryPreview .helper-card__response-time,
#homeDirectoryPreview .helper-card__member-since,
#homeDirectoryPreview .helper-card__price-range,
#homeDirectoryPreview .helper-card__main-service,
#homeDirectoryPreview .helper-card__lead-count {
  font-size: 0.67rem;
  line-height: 1.25;
}

#homeDirectoryPreview .helper-card__services {
  min-height: 0;
  gap: 0.3rem;
}

#homeDirectoryPreview .helper-card__actions {
  gap: 0.28rem;
}

#homeDirectoryPreview .helper-card__actions .button {
  min-height: 34px;
  padding: 0.42rem 0.56rem;
  font-size: 0.72rem;
  flex: 1 1 108px;
}

.directory-page .helper-card--compact .helper-card__trust {
  gap: 0.3rem;
}

.directory-page .helper-card--compact .price-pill {
  display: none;
}

.directory-page .helper-card--compact .helper-card__meta-item {
  padding: 0.34rem 0.42rem;
}

.directory-page .helper-card--compact .helper-card__meta-label {
  margin-bottom: 0.16rem;
  font-size: 0.58rem;
}

.directory-page .helper-card--compact .helper-card__response-time,
.directory-page .helper-card--compact .helper-card__member-since,
.directory-page .helper-card--compact .helper-card__price-range,
.directory-page .helper-card--compact .helper-card__main-service,
.directory-page .helper-card--compact .helper-card__lead-count {
  font-size: 0.68rem;
  line-height: 1.25;
}

.directory-page .helper-card--compact .helper-card__services {
  min-height: 0;
  gap: 0.3rem;
}

.directory-page .helper-card--compact .helper-card__actions {
  gap: 0.3rem;
}

.directory-page .helper-card--compact .helper-card__actions .button {
  min-height: 34px;
  padding: 0.42rem 0.58rem;
  font-size: 0.73rem;
  flex: 1 1 110px;
}

.chip,
.price-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--brand);
  font-size: 0.64rem;
  font-weight: 600;
}

.price-pill {
  background: #e8efff;
  color: #1f46a4;
  font-size: 0.68rem;
}

.price-pill--free {
  background: #eef2f7;
  color: #4b5c77;
}

.price-pill--premium {
  background: linear-gradient(180deg, #eef3ff 0%, #dfe9ff 100%);
  color: #0f3e9a;
}

.price-pill--featured {
  background: linear-gradient(135deg, #d52b1e 0%, #0038a8 100%);
  color: #ffffff;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  font-weight: 700;
  font-size: 0.76rem;
  line-height: 1.2;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.empty-state {
  padding: 2rem 1.2rem;
  border: 1px dashed rgba(20, 38, 31, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-soft);
  text-align: center;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 15, 0.64);
}

.modal__panel {
  position: relative;
  width: min(100%, 720px);
  max-height: min(90vh, 860px);
  overflow-y: auto;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  background: rgba(255, 252, 248, 0.98);
  box-shadow: 0 30px 80px rgba(5, 23, 18, 0.32);
}

.modal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--brand);
  font-size: 1.2rem;
  cursor: pointer;
}

.modal-detail {
  display: grid;
  gap: 0.75rem;
}

.modal-detail__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
}

.modal-detail__image-wrap {
  margin-bottom: 0.45rem;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 6.8;
  background: linear-gradient(135deg, #dbe7ff, #f5f8ff);
}

.modal-detail__header h3 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.15rem, 3.2vw, 1.55rem);
}

.modal-detail__description,
.modal-detail__info p {
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 0.88rem;
}

.modal-detail__description {
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.modal-detail__grid {
  display: grid;
  gap: 0.7rem;
}

.modal-detail__info {
  padding: 0.75rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.modal-detail__info h4 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

.modal-detail__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.modal-detail__notice {
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  background: #fff8f7;
  border: 1px solid rgba(213, 43, 30, 0.12);
  color: #7c2d26;
  line-height: 1.45;
  font-size: 0.84rem;
}

.modal-detail__notice--package {
  background: #f5f8ff;
  border-color: rgba(0, 56, 168, 0.12);
  color: #22437f;
}

.legal-grid {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.legal-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(0, 56, 168, 0.08);
}

.site-footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-soft);
}

.site-footer__content p {
  margin: 0;
  max-width: 48rem;
  line-height: 1.6;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.site-footer__links a {
  color: var(--brand);
  font-weight: 600;
}

.site-footer__project-note {
  flex-basis: 100%;
  font-size: 0.95rem;
}

.site-footer__project-note a {
  color: var(--brand);
  font-weight: 600;
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 56, 168, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  transform: translateY(-2px);
  background: var(--brand-soft);
  box-shadow: 0 16px 34px rgba(0, 56, 168, 0.28);
}

.hero--compact .hero__content {
  padding-bottom: 1.05rem;
}

.hero--compact .hero__text h1 {
  max-width: 18ch;
}

.form-layout {
  display: grid;
  gap: 1rem;
}

.form-layout--wide {
  grid-template-columns: 1fr;
}

.form-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: var(--shadow);
}

.form-card--active {
  border-color: rgba(0, 56, 168, 0.28);
  box-shadow: 0 0 0 4px rgba(0, 56, 168, 0.08), var(--shadow);
}

#providerDashboardSection .legal-card,
#providerDashboardSection .form-card,
#adminPanelSection .legal-card {
  padding: 0.9rem;
  border-radius: 16px;
}

#providerDashboardSection .section-heading h2,
#adminPanelSection .section-heading h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
}

#providerDashboardSection .roadmap-card__lead,
#providerDashboardSection .notice-banner,
#adminPanelSection .notice-banner {
  font-size: 0.92rem;
  line-height: 1.55;
}

#providerDashboardSection .admin-card h3,
#adminPanelSection .admin-card h3 {
  font-size: 1.02rem;
  line-height: 1.25;
}

#providerDashboardSection .helper-card__type,
#providerDashboardSection .helper-card__location,
#adminPanelSection .helper-card__type,
#adminPanelSection .helper-card__location {
  font-size: 0.78rem;
}

#providerDashboardSection .modal-detail__info,
#adminPanelSection .modal-detail__info {
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
}

#providerDashboardSection .modal-detail__info p,
#adminPanelSection .modal-detail__info p {
  font-size: 0.84rem;
  line-height: 1.45;
}

#providerDashboardSection .field textarea,
#adminPanelSection .field textarea {
  min-height: 110px;
}

#providerDashboardSection .helper-card__actions,
#adminPanelSection .helper-card__actions {
  gap: 0.4rem;
}

#providerDashboardSection .helper-card__actions .button,
#adminPanelSection .helper-card__actions .button {
  flex: 1 1 116px;
  min-height: 36px;
  padding: 0.46rem 0.66rem;
  font-size: 0.76rem;
}

#providerDashboardSection .status-badge,
#providerDashboardSection .price-pill,
#adminPanelSection .status-badge,
#adminPanelSection .price-pill {
  font-size: 0.62rem;
}

.submission-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field textarea {
  width: 100%;
  min-height: 140px;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(20, 38, 31, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  resize: vertical;
}

.field textarea:focus {
  outline: 3px solid rgba(0, 56, 168, 0.12);
  border-color: rgba(0, 56, 168, 0.35);
}

.consent-list {
  display: grid;
  gap: 0.75rem;
}

.checkbox-row {
  display: flex;
  gap: 0.7rem;
  align-items: start;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 56, 168, 0.08);
  border-radius: 16px;
  background: #ffffff;
}

.checkbox-row input {
  margin-top: 0.15rem;
  accent-color: var(--brand);
}

.checkbox-row--compact {
  gap: 0.55rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(75, 112, 211, 0.16);
  border-radius: 0.85rem;
  background: rgba(248, 250, 255, 0.95);
}

.admin-service-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.55rem;
}

.admin-service-option span {
  font-size: 0.94rem;
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
}

.selection-option span {
  font-size: 0.88rem;
  line-height: 1.25;
  font-weight: 600;
}

.selection-grid .selection-option {
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.55rem;
  border-radius: 0.8rem;
}

.selection-grid .selection-option input {
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0;
  flex: 0 0 auto;
}

.selection-grid .selection-option span {
  flex: 1 1 auto;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.form-feedback {
  margin: 0;
  color: var(--brand);
  font-weight: 600;
  line-height: 1.6;
}

.form-feedback--success {
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(22, 163, 74, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, #f4fff7 0%, #ffffff 100%);
  color: #166534;
}

.form-feedback--error {
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(213, 43, 30, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff6f4 0%, #ffffff 100%);
  color: #9f1239;
}

.admin-list {
  display: grid;
  gap: 0.8rem;
}

.auth-layout {
  display: grid;
  gap: 1rem;
}

.auth-card {
  max-width: 620px;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  gap: 0.8rem;
}

.admin-helper-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(220px, 0.8fr);
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.admin-helper-searchbar {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.admin-helper-searchbar input {
  flex: 1 1 auto;
}

.admin-helper-searchbar .button {
  flex: 0 0 auto;
}

.admin-helper-results {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.admin-pagination {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.admin-pagination__label {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

.admin-tabs-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0;
}

.admin-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(0, 56, 168, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.admin-tab:hover,
.admin-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 56, 168, 0.2);
}

.admin-tab.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}

.admin-tab__count {
  display: inline-flex;
  min-width: 1.3rem;
  min-height: 1.3rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: rgba(0, 56, 168, 0.08);
  color: inherit;
  font-size: 0.72rem;
  line-height: 1;
}

@media (max-width: 820px) {
  .admin-tabs-row {
    flex-direction: column;
    align-items: stretch;
  }
}

.admin-tab.is-active .admin-tab__count {
  background: rgba(255, 255, 255, 0.18);
}

.admin-panel {
  display: block;
}

.admin-panel[hidden] {
  display: none;
}

.admin-tab-note {
  margin-bottom: 0.85rem;
}

#adminPanelSection > .container > #adminActionFeedback {
  margin-bottom: 0.85rem;
}

.admin-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: var(--shadow);
}

.admin-card--helper .admin-card__header {
  align-items: flex-start;
}

.admin-helper-editor {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.admin-card__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.admin-card__media,
.provider-profile-card__media {
  margin-bottom: 0.8rem;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 7.5;
  background: linear-gradient(135deg, #dbe7ff, #f5f8ff);
}

.admin-card--with-media .admin-card__header,
.provider-profile-card--compact {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.9rem;
}

.admin-card--with-media .admin-card__media,
.provider-profile-card--compact .provider-profile-card__media {
  width: 118px;
  min-width: 118px;
  margin-bottom: 0;
  aspect-ratio: 1 / 1;
}

.admin-card--helper .admin-card__header {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.9rem;
}

.admin-card--helper .admin-card__media {
  width: 118px;
  min-width: 118px;
  margin-bottom: 0;
  aspect-ratio: 1 / 1;
}

.admin-card--helper .chips {
  justify-content: flex-end;
  align-self: start;
}

.provider-profile-card--compact h3 {
  margin-top: 0.1rem;
}

.provider-profile-card--compact .hero__actions {
  margin-top: 0.65rem;
}

.admin-card__header h3 {
  margin: 0;
}

.admin-card__grid {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.admin-metrics {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

.metric-card {
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: var(--shadow);
}

.metric-card__value,
.metric-card__label {
  display: block;
}

.metric-card__value {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.05;
}

.metric-card__label {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.admin-analytics-panel {
  margin-bottom: 1.4rem;
}

.provider-profile-list {
  display: grid;
  gap: 0.8rem;
}

.provider-dashboard-grid {
  margin-bottom: 1.05rem;
}

.provider-dashboard-shell {
  display: grid;
  gap: 1rem;
}

.provider-dashboard-main {
  display: grid;
  gap: 1rem;
}

.provider-dashboard-column {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.provider-dashboard-card {
  height: 100%;
}

.provider-dashboard-card--full {
  height: auto;
}

.provider-inquiry-list,
.provider-package-status {
  display: grid;
  gap: 0.8rem;
}

.provider-package-status .admin-card {
  height: 100%;
}

.provider-profile-card h3 {
  margin: 0.2rem 0 0.4rem;
}

.provider-profile-card .hero__actions {
  margin-top: 0.9rem;
}

#providerDashboardSection .provider-dashboard-card h2 {
  margin-bottom: 0.65rem;
}

#providerDashboardSection .provider-dashboard-card .section-heading {
  margin-bottom: 0.7rem;
}

#providerDashboardSection .provider-dashboard-card .section-heading h2 {
  margin-bottom: 0;
}

.assistant-card,
.assistant-sidecard {
  align-self: start;
}

.assistant-topic-groups {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.assistant-topic-group {
  display: grid;
  gap: 0.45rem;
}

.assistant-topic-group__title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.assistant-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.assistant-prompt {
  border: none;
  cursor: pointer;
}

.assistant-chat {
  display: grid;
  gap: 0.9rem;
  min-height: 220px;
  max-height: 520px;
  overflow-y: auto;
  overflow-anchor: none;
  overscroll-behavior: contain;
  margin-bottom: 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.assistant-conversation {
  display: grid;
  gap: 0.65rem;
}

.assistant-message {
  max-width: 90%;
  padding: 1rem 1rem 0.9rem;
  border-radius: 18px;
  line-height: 1.65;
}

.assistant-message p,
.assistant-message h3,
.assistant-message h4,
.assistant-message ul {
  margin-top: 0;
}

.assistant-message--assistant {
  justify-self: start;
  background: #ffffff;
  border: 1px solid rgba(0, 56, 168, 0.08);
}

.assistant-message--user {
  justify-self: end;
  background: #eef4ff;
  border: 1px solid rgba(0, 56, 168, 0.12);
}

.assistant-form {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.assistant-chat-panel__eyebrow {
  margin-bottom: 0.7rem;
}

.assistant-chat-panel {
  margin-bottom: 1rem;
}

.assistant-bullets ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

.assistant-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.assistant-suggestions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.assistant-helper-card {
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #ffffff;
}

.assistant-helper-card h4,
.assistant-helper-card p {
  margin: 0.2rem 0;
}

.assistant-disclaimer {
  margin-top: 1rem;
  color: #7c2d26;
}

.assistant-sidecard__list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.assistant-sidecard__list p {
  margin: 0;
}

.cta-panel {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: var(--shadow);
}

.cta-panel__text {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 700px) {
  .hero__grid,
  .steps,
  .helpers-grid,
  .modal-detail__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .roadmap-card__header {
    grid-template-columns: 1.4fr auto;
    align-items: center;
  }

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

  .form-layout {
    grid-template-columns: 1.4fr 0.8fr;
    align-items: start;
  }

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

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

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

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

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

@media (min-width: 1100px) {
  .admin-metrics {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .provider-dashboard-main {
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.92fr);
    align-items: start;
  }
}

@media (max-width: 699px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: calc(100% - 1.25rem);
  }

  .container,
  .hero__grid,
  .hero__text,
  .hero__stats,
  .topbar,
  .topbar__links,
  .hero__actions,
  .trust-strip,
  .section-heading--row,
  .steps,
  .filters,
  .helpers-grid,
  .roadmap-card__header,
  .roadmap-item__content {
    min-width: 0;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .brand {
    display: block;
    width: 100%;
    max-width: none;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .topbar__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: 100%;
    overflow: visible;
    padding-bottom: 0;
  }

  .topbar__links::-webkit-scrollbar {
    display: none;
  }

  .topbar__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
    white-space: normal;
  }

  .hero__content {
    padding-bottom: 1.8rem;
  }

  .assistant-chat {
    min-height: 240px;
    max-height: 420px;
  }

  .hero__text h1 {
    max-width: 12ch;
    line-height: 1.08;
  }

  .hero__lead {
    width: 100%;
    max-width: none;
    overflow-wrap: anywhere;
  }

  .trust-strip {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .trust-pill {
    justify-content: center;
    text-align: center;
  }

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

  .hero__actions .button,
  .roadmap-item__actions .button,
  .section-cta .button {
    width: 100%;
    min-width: 0;
  }

  .hero__stats,
  .stat-card {
    width: 100%;
    max-width: 100%;
  }

  .hero__art {
    display: none;
  }

  .section-heading--row {
    align-items: start;
    flex-direction: column;
    margin-bottom: 1rem;
  }

  .results {
    width: 100%;
  }

  .assistant-topic-group__title {
    font-size: 0.72rem;
  }

  .filters__actions {
    justify-content: stretch;
  }

  .filters__actions .button {
    width: 100%;
  }

  .admin-card--with-media .admin-card__header,
  .provider-profile-card--compact {
    grid-template-columns: 1fr;
  }

  .admin-card--helper .admin-card__header {
    grid-template-columns: 1fr;
  }

  .admin-card--with-media .admin-card__media,
  .provider-profile-card--compact .provider-profile-card__media,
  .admin-card--helper .admin-card__media {
    width: 100%;
    min-width: 0;
    aspect-ratio: 16 / 9;
  }

  .admin-card--helper .chips {
    justify-content: flex-start;
  }

  .admin-helper-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-helper-searchbar {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-helper-results {
    align-items: stretch;
    flex-direction: column;
  }

  .roadmap-card__header {
    gap: 0.75rem;
  }

  .helper-card {
    padding: 1rem;
  }

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

  .price-pill {
    align-self: start;
  }

  .helper-card__trust {
    grid-template-columns: 1fr;
  }

  .modal__panel {
    padding: 1rem;
    border-radius: 22px;
  }

  .pricing-table-wrapper {
    margin-inline: -0.35rem;
    padding-inline: 0.35rem;
  }
}

@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(260px, 0.68fr) minmax(280px, 0.82fr);
    align-items: center;
  }

  .hero__art {
    display: flex;
    justify-content: center;
  }

  .hero__stats {
    padding-left: 1rem;
  }

  .hero--compact.hero--with-page-art .hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.76fr);
    align-items: center;
  }

  .hero--compact.hero--with-page-art .hero__page-art {
    display: flex;
    justify-content: center;
  }

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

  .filters {
    grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
    align-items: end;
  }

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

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

  .modal-detail__grid {
    grid-template-columns: 1.2fr 0.9fr;
  }

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

@media (min-width: 1380px) {
  .directory-page .helpers-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

html[lang="de"] .lang-es {
  display: none;
}

html[lang="es"] .lang-de {
  display: none;
}

@media print {
  .topbar,
  .scroll-top,
  .site-footer,
  .hero__overlay,
  .hero__lead,
  #resetRoadmapButton,
  #printRoadmapButton {
    display: none !important;
  }

  .hero,
  .section,
  .roadmap-card,
  .roadmap-step {
    background: #fff !important;
    box-shadow: none !important;
  }

  body {
    background: #fff !important;
    color: #111 !important;
  }

  .container,
  .roadmap-card {
    max-width: none !important;
    width: 100% !important;
  }

  .roadmap-progress__bar {
    border: 1px solid #bbb;
  }

  .roadmap-progress__bar span {
    background: #444 !important;
  }

  a {
    color: #111 !important;
    text-decoration: none !important;
  }
}
