:root {
  --bg-dark: #0f0f0f;
  --bg-card: #151515;
  --bg-soft: #101010;
  --text-light: #e7e7e7;
  --text-muted: #9ca3af;
  --accent: #4bc2ff;
  --accent-soft: rgba(75, 194, 255, 0.12);
  --bg-base: #020617;
  --border-soft: rgba(148, 163, 184, 0.6);
  --border-strong: rgba(148, 163, 184, 0.9);
  --radius: 0.9rem;
  --shadow-soft: 0 1.4rem 3rem rgba(0, 0, 0, 0.6);
  --space-page: clamp(1rem, 1.8vw + 0.6rem, 1.75rem);
  --space-section: clamp(1.1rem, 1.6vw + 0.7rem, 1.6rem);
  --space-gap: clamp(1.05rem, 1vw + 0.6rem, 1.5rem);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(
    circle at 0% 0%,
    #111827 0,
    var(--bg-base) 35%,
    #000 70%
  );
  color: var(--text-light);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page-shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: var(--space-page);
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-035 {
  margin-top: 0.35rem;
}

.mt-06 {
  margin-top: 0.6rem;
}

.mt-07 {
  margin-top: 0.7rem;
}

.mt-1 {
  margin-top: 1rem;
}

.btn-wrap {
  white-space: normal;
  text-align: center;
  width: 100%;
}

header.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2rem;
  align-items: center;
  padding: calc(var(--space-section) + 0.25rem) var(--space-section);
  margin: var(--space-gap) 0 calc(var(--space-gap) + 0.4rem);
  border-radius: 1.4rem;
  background: radial-gradient(
      circle at 0 0,
      rgba(75, 194, 255, 0.26),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.92));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.3);
  position: relative;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 120% -10%,
    rgba(56, 189, 248, 0.3),
    transparent 55%
  );
  opacity: 0.8;
  pointer-events: none;
}

.hero-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-head {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-soft);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  backdrop-filter: blur(10px);
}

.hero-kicker span.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg-base);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(14, 165, 233, 0.3);
}

.hero h1 {
  font-size: clamp(2.1rem, 1.1vw + 2.1rem, 3.1rem);
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
}

.hero h1 span.highlight {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  max-width: 34rem;
}

.hero-points {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
  font-size: 0.95rem;
}

.hero-points li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e5e7eb;
}

.hero-points li span.icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent);
  background: rgba(15, 23, 42, 0.9);
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0.8rem;
  align-items: center;
  width: 100%;
}

.hero-actions--side {
  margin-top: 1rem;
}

.hero-actions--account {
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 0.5rem;
}

.hero-actions--account .btn-ghost {
  width: auto;
}

.hero-actions--account .login-chip--inline {
  justify-self: start;
  max-width: 100%;
  padding: 0.2rem 0.4rem;
  white-space: normal;
  line-height: 1.1;
  font-size: 0.65rem;
}

.btn-ghost {
  width: 50%;
  margin-bottom: 0.5rem;
}

@media (min-width: 48rem) {
  .hero-actions {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .hero-actions .btn-primary {
    justify-self: start;
  }
  .hero-actions .btn-ghost {
    justify-self: end;
  }
  .hero-actions > .btn-primary:only-child,
  .hero-actions > .btn-ghost:only-child,
  .hero-actions > .login-chip:only-child {
    justify-self: end;
  }
  .hero-actions--side {
    grid-template-columns: 1fr;
    justify-content: flex-end;
  }
  .hero-actions--side.hero-actions--account {
    grid-template-columns: 1fr auto;
  }
}

.login-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.1rem;
  /* border: 1px solid rgba(148, 163, 184, 0.55); */
  /* border-radius: 999px; */
  color: #e5e7eb;
  /* background: rgba(148, 163, 184, 0.12); */
  max-width: 100%;
  flex-wrap: nowrap;
  line-height: 1.2;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.login-chip__avatar {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.25);
  font-weight: 700;
  color: #f8fafc;
  flex: 0 0 auto;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.login-chip strong {
  flex: 1 1 auto;
  text-align: center;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 0.8rem;
}

.hero-actions.contact-actions {
  display: grid;
}

.hero-actions.contact-actions .btn-primary,
.hero-actions.contact-actions .btn-ghost {
  white-space: normal;
}

.btn-logout {
  flex-direction: column;
  gap: 0.2rem;
}

.btn-logout .login-chip--inline {
  width: auto;
  color: #e5e7eb;
  white-space: nowrap;
  font-size: 0.5rem;
  line-height: 1;
}

.btn-logout .login-chip--inline strong {
  font-size: inherit;
  line-height: 1;
}

@media (max-width: 40rem) {
  .hero-actions.contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

.hero-fold-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-soft);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  margin-left: auto;
}

.hero-fold-toggle .chevron {
  font-size: 0.9rem;
}

.hero.collapsed {
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.hero.collapsed .hero-body,
.hero.collapsed .hero-side {
  display: none;
}

/* Floating animation for hero card */
@keyframes floatCard {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Button animation: soft pulse */
@keyframes softPulse {
  0% {
    box-shadow: 0 1rem 2.4rem rgba(56, 189, 248, 0.35);
  }
  50% {
    box-shadow: 0 1.3rem 3rem rgba(56, 189, 248, 0.55);
  }
  100% {
    box-shadow: 0 1rem 2.4rem rgba(56, 189, 248, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }
  .hero-card {
    animation: none;
  }
  .btn-primary {
    animation: none;
  }
}

.btn-primary {
  animation: softPulse 3s infinite ease-in-out;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #4bc2ff, #38bdf8);
  color: var(--bg-base);
  box-shadow: 0 1rem 2.4rem rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1.3rem 2.8rem rgba(56, 189, 248, 0.45);
  background: linear-gradient(135deg, #5fd0ff, #38bdf8);
}

.btn-ghost {
  padding: 0.75rem 1.5rem;
  background: rgba(15, 23, 42, 0.7);
  color: var(--text-light);
  border-color: var(--border-soft);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.9);
  border-color: var(--accent);
  box-shadow: 0 1rem 2.4rem rgba(15, 23, 42, 0.7);
}

.hero-side {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.hero-card {
  animation: floatCard 6s ease-in-out infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1.4rem;
  background: radial-gradient(
      circle at 10% 0,
      rgba(148, 163, 184, 0.28),
      transparent 60%
    ),
    linear-gradient(145deg, var(--bg-base), var(--bg-base));
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-card-avatar {
  width: 9.2rem;
  height: 9.2rem;
  border-radius: 999px;
  border: 4px solid rgba(56, 189, 248, 0.9);
  background: url("../images/logo.449d45bb3d7d.png") center/cover no-repeat;
  background-blend-mode: soft-light, normal;
  box-shadow: 0 1.5rem 3.4rem rgba(0, 0, 0, 0.85),
    0 0 0 8px rgba(56, 189, 248, 0.12);
  margin: 0 auto 1.3rem;
  position: relative;
}

.hero-card-avatar::after {
  content: "Eugen";
  position: absolute;
  left: 50%;
  bottom: -2.9rem;
  transform: translateX(-50%) translateY(6px);
  padding: 0.35rem 0.7rem;
  border-radius: 0.65rem;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid var(--border-soft);
  color: #e7e7e7;
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.45);
}

.hero-card-avatar:hover::after,
.hero-card-avatar:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
}

.hero-card p.role {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.3rem;
  font-size: 0.87rem;
  margin-bottom: 0.9rem;
  justify-items: start;
  text-align: left;
}

.hero-card ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.hero-card ul li span.dot {
  display: inline-block;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
  background: var(--accent);
  margin-right: 0.4rem;
  transform: translateY(1px);
  flex-shrink: 0;
}

.hero-card ul li span:not(.dot) {
  padding-left: 0.1rem;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding-top: 0.5rem;
}

.hero-card-footer span:last-child {
  margin-left: auto;
  text-align: right;
}

.hero-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  width: auto;
  min-width: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: default;
}

main {
  display: grid;
  gap: var(--space-gap);
}

.section {
  background: radial-gradient(
      circle at 0 0,
      rgba(75, 194, 255, 0.13),
      transparent 55%
    ),
    linear-gradient(145deg, var(--bg-soft), var(--bg-base));
  border-radius: 1.1rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: var(--space-section);
  box-shadow: 0 1.1rem 2.2rem rgba(0, 0, 0, 0.7);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(0.8rem, 0.8vw + 0.6rem, 1.05rem);
}

.section-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.section-fold-toggle {
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-muted);
  padding: 0.35rem 0.6rem;
  border-radius: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.section-fold-toggle .chevron {
  transition: transform 0.18s ease;
}

.section-fold-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.fold-section.closed .section-fold-toggle .chevron {
  transform: rotate(-90deg);
}

.section-body {
  margin-top: 0.25rem;
}

.section-body[hidden] {
  display: none;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.section-kicker::before {
  content: "✦";
  color: #facc15;
  font-size: 0.95rem;
  line-height: 1;
}

.section-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}

.service-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 0.9rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1rem 1rem 1rem;
  display: grid;
  gap: 0.55rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: attr(data-icon);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 6.4rem;
  color: rgba(250, 204, 21, 0.42);
  opacity: 0.9;
  transform: translateY(8%);
  pointer-events: none;
}

.service-icon {
  display: none;
}

.service-title {
  font-weight: 600;
  font-size: 1rem;
}

.service-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-meta {
  font-size: 0.82rem;
  color: #9ca3af;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.badge-soft span.dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #22c55e;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.price-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 0.9rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1rem;
  display: grid;
  gap: 0.3rem;
}

.price-card.highlighted {
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 1.4rem 2.6rem rgba(8, 47, 73, 0.85);
  position: relative;
}

.price-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-value {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.price-detail {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.chip-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  gap: 0.3rem;
  margin-top: 0.4rem;
}

.chip {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 0.78rem;
  color: #d1d5db;
  background: rgba(15, 23, 42, 0.95);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.step-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 0.9rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.step-card > * {
  position: relative;
  z-index: 1;
}

.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: -0.6rem;
  right: 0.65rem;
  font-size: 3.6rem;
  font-weight: 700;
  color: rgba(250, 204, 21, 0.28);
  pointer-events: none;
  z-index: 0;
}

.step-number {
  display: none;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 1.2rem;
  margin-top: 0.5rem;
  align-items: flex-start;
}

.about-text {
  font-size: 0.93rem;
  color: var(--text-muted);
}

.about-facts {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
}

.about-facts--compact {
  margin-top: 0.7rem;
  font-size: 0.9rem;
}

.about-facts li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.about-facts span.bullet {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.9);
}

.support-cta {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.35rem;
}

.manual-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
  justify-content: space-evenly;
}

.manual-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 0.9rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  margin-bottom: 0.9rem;
  padding: 0.9rem;
  display: grid;
  gap: 0.5rem;
}

.manual-card--highlight {
  border-color: rgba(75, 194, 255, 0.8);
  box-shadow: 0 1.2rem 2.2rem rgba(8, 47, 73, 0.55);
}

.manual-card-kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.manual-list,
.manual-steps {
  margin: 0;
  padding-left: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.manual-list li,
.manual-steps li {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem;
  align-items: start;
}

.manual-list li::before {
  content: "•";
  color: var(--accent);
  font-weight: 700;
}

.manual-steps {
  counter-reset: manualstep;
}

.manual-steps li::before {
  counter-increment: manualstep;
  content: counter(manualstep) ".";
  color: var(--accent);
  font-weight: 700;
}

.manual-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.legal-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
}

.legal-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.legal-section {
  background: linear-gradient(145deg, var(--bg-soft), #020617);
  border: 1px solid rgba(31, 41, 55, 0.9);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 1.1rem 2.2rem rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legal-section h2 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.legal-section h3 {
  margin: 0.35rem 0 0.2rem;
}

.legal-section ul {
  padding-left: 1.1rem;
  color: var(--text-muted);
  margin: 0;
}

.legal-section li {
  margin: 0.18rem 0;
}

.legal-section {
  margin-bottom: 1.1rem;
}

.legal-callout {
  border: 1px solid rgba(56, 189, 248, 0.6);
  background: rgba(56, 189, 248, 0.08);
  border-radius: 0.75rem;
  padding: 0.75rem;
  color: #e0f2fe;
  margin-top: 0.35rem;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.legal-actions a {
  margin-right: 0;
}

.legal-actions .btn-primary,
.legal-actions .btn-ghost {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.96rem;
  box-shadow: none;
  animation: none;
}

@media (min-width: 426px) {
  .legal-actions .btn-primary,
  .legal-actions .btn-ghost {
    padding: 0.75rem 1.5rem;
    font-size: 0.96rem;
  }
}

.support-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.6rem;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  margin-top: 0.5rem;
  align-items: flex-start;
}

.contact-text {
  font-size: 0.93rem;
  color: var(--text-muted);
}

.contact-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(234, 179, 8, 0.45);
  background: linear-gradient(
      120deg,
      rgba(234, 179, 8, 0.12),
      rgba(59, 130, 246, 0.09)
    ),
    rgba(15, 23, 42, 0.72);
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.35);
}

.contact-notice-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: rgba(250, 204, 21, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.35);
  font-size: 1.2rem;
}

.contact-notice-label {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
}

.contact-notice-text {
  margin: 0.1rem 0 0;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.45;
}

.contact-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 0.9rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1rem;
  font-size: 0.9rem;
  display: grid;
  gap: 0.6rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.contact-call {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.65);
  color: var(--text-light);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
  max-width: 100%;
  flex: 1 1 auto;
}

.contact-call em {
  white-space: normal;
  word-break: break-word;
}

.messenger-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.2rem;
}

.messenger-icon {
  width: 0.9rem;
  height: 0.9rem;
  fill: var(--accent);
}

.messenger-icon--signal {
  fill: #ffffff;
}

.messenger-icon-wrapper--signal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3a76f0;
  border-radius: 6px;
  padding: 0.14rem;
  border: 1px dotted #ffffff;
}

.messenger-icon--whatsapp {
  fill: #25d366;
}

.contact-call:hover,
.contact-call:focus-visible {
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.55);
}

.map-card {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(
      circle at 10% 10%,
      rgba(75, 194, 255, 0.1),
      transparent 50%
    ),
    rgba(15, 23, 42, 0.7);
  box-shadow: 0 1.4rem 2.8rem rgba(0, 0, 0, 0.45);
}

.map-card-header {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.map-card-title {
  margin: 0.1rem 0;
}

.map-card-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.map-card-body {
  margin-top: 0.25rem;
}

.map-frame {
  width: 100%;
  height: 360px;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.65);
  color: var(--text-light);
}

.availability-pill.open {
  border-color: rgba(34, 197, 94, 0.6);
  background: rgba(34, 197, 94, 0.15);
  color: #bbf7d0;
}

.availability-pill.soon {
  border-color: rgba(234, 179, 8, 0.7);
  background: rgba(234, 179, 8, 0.15);
  color: #fef08a;
}

.availability-pill.closed {
  border-color: rgba(239, 68, 68, 0.7);
  background: rgba(239, 68, 68, 0.15);
  color: #fecaca;
}

.contact-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
}

footer.site-footer {
  margin-top: 1.2rem;
  padding: 1rem 1.6rem 1.25rem;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: var(--bg-base);
  color: #6b7280;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

footer.site-footer span.brand {
  color: #d1d5db;
  font-weight: 600;
  line-height: 1.4;
}

footer.site-footer .footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

footer.site-footer .footer-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

footer.site-footer .footer-link:hover {
  text-decoration: underline;
}

@media (max-width: 55rem) {
  header.hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side {
    order: -1;
  }

  .hero-card {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .two-col,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .login-chip {
    width: 100%;
    justify-content: center;
  }

  .login-chip strong {
    text-align: center;
  }
}

@media (max-width: 45rem) {
  .map-frame {
    height: 260px;
  }

  .calendar-section .calendar-shell {
    padding: 1rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .services-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 40rem) {
  .support-actions {
    grid-template-columns: 1fr;
  }

  .page-shell {
    padding-inline: 1rem;
  }

  header.hero {
    padding: 1.4rem 1.1rem;
    margin-block: 1.1rem 1.6rem;
  }

  .hero-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero-fold-toggle {
    margin-left: 0;
    align-self: flex-start;
  }

  .section {
    padding: 1.1rem 1.05rem 1.2rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .login-chip {
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
  }

  .login-chip__avatar {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1rem;
  }

  .login-chip strong {
    font-size: 0.95rem;
  }

  .legal-section,
  .legal-section h1,
  .legal-section h2,
  .legal-section h3,
  .legal-section p,
  .legal-section li {
    white-space: normal;
    word-break: break-word;
    hyphens: auto;
  }

  .btn-primary,
  .btn-ghost {
    justify-content: center;
    width: 100%;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
  }

  .manual-actions a {
    min-width: 0;
  }

  body {
    /* padding-bottom: calc(5.8rem + env(safe-area-inset-bottom, 0px)); */
    padding-bottom: 0;
  }

  .mobile-action-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    justify-items: stretch;
    align-items: stretch;
    max-width: none;
  }

  .mobile-action-bar .mobile-btn {
    max-width: 14rem;
    width: 100%;
    justify-self: center;
  }

  footer.site-footer {
    width: 100%;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }

  footer.site-footer .footer-meta {
    justify-content: flex-start;
    text-align: left;
  }

  footer.site-footer .footer-link {
    white-space: normal;
    word-break: break-word;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hero-lang {
    position: static;
    margin-top: 0.5rem;
  }

  .lang-menu {
    position: static;
    width: 100%;
  }

  .lang-tooltip {
    display: none;
  }
}

/* Mobile bottom fixed action bar */
.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  transform: none;
  width: 100%;
  max-width: 100%;
  padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  display: none;
  z-index: 999;
  box-shadow: 0 -0.8rem 2rem rgba(0, 0, 0, 0.4);
}

.mobile-action-bar .mobile-btn {
  flex: 1;
  text-align: center;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: normal;
}

.mobile-btn.primary {
  background: linear-gradient(135deg, #4bc2ff, #38bdf8);
  color: var(--bg-base);
  box-shadow: 0 0.6rem 1.4rem rgba(56, 189, 248, 0.35);
}

.mobile-btn.secondary {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-soft);
  color: #e5e7eb;
}

@media (max-width: 30rem) {
  .mobile-action-bar {
    grid-template-columns: 1fr;
    padding: 0.55rem 0.9rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    gap: 0.55rem;
  }

  .mobile-action-bar .mobile-btn {
    max-width: none;
    width: 100%;
    font-size: 0.9rem;
    padding: 0.65rem 0.85rem;
  }

  footer.site-footer {
    padding-bottom: calc(1.8rem + env(safe-area-inset-bottom, 0px));
    align-items: center;
    text-align: center;
  }

  footer.site-footer .footer-meta {
    justify-content: center;
    text-align: center;
  }
}

.lang-inline {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.lang-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  background: rgba(15, 23, 42, 0.85);
  /* border: 1px solid rgba(148, 163, 184, 0.45); */
  border: none;
  border-radius: 0.9rem;
  color: #e5e7eb;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.45);
  transition: transform 0.18s ease, border-color 0.18s ease,
    background 0.18s ease;
}

.lang-switcher:hover,
.lang-switcher:focus-visible {
  background: rgba(30, 41, 59, 0.95);
  /* border-color: var(--accent); */
  transform: translateY(-1px);
  outline: none;
}

.lang-icon {
  font-size: 1rem;
  line-height: 1;
}

.lang-current {
  background: var(--accent);
  color: #0b1224;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 12rem;
  background: rgba(2, 6, 23, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 0.85rem;
  box-shadow: 0 1.2rem 2.2rem rgba(0, 0, 0, 0.55);
  padding: 0.4rem;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 10;
}

.lang-option {
  width: 100%;
  text-align: left;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: #e5e7eb;
  padding: 0.55rem 0.65rem;
  border-radius: 0.7rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease;
}

.lang-option:hover,
.lang-option:focus-visible {
  background: rgba(30, 41, 59, 0.9);
  border-color: var(--accent);
  outline: none;
  transform: translateY(-1px);
}

.lang-option.active {
  background: var(--accent);
  color: #0b1224;
  border-color: var(--accent);
}

.lang-tooltip {
  position: absolute;
  top: -3.4rem;
  right: 0.1rem;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 0.85rem;
  padding: 0.55rem 0.75rem;
  box-shadow: 0 0.9rem 1.8rem rgba(0, 0, 0, 0.45);
  min-width: 12rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lang-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.lang-tooltip-title {
  font-weight: 700;
  margin: 0;
}

.lang-tooltip-sub {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.lang-inline button {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  padding: 0.45rem 0.75rem;
  border-radius: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease;
  box-shadow: 0 0.9rem 1.8rem rgba(0, 0, 0, 0.35);
}

.lang-inline button:hover,
.lang-inline button:focus-visible {
  background: rgba(30, 41, 59, 0.9);
  border-color: var(--accent);
  outline: none;
  transform: translateY(-1px);
}

.hero-lang {
  position: absolute;
  top: 0;
  right: 1rem;
  /* padding: 0.35rem; */
  border-radius: 0.95rem;
  /* border: 1px solid rgba(148, 163, 184, 0.4); */
  background: rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(10px);
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.calendar-section .calendar-shell {
  margin-top: 1.4rem;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(75, 194, 255, 0.12),
      transparent 45%
    ),
    rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 1.6rem 3.2rem rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.calendar-legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.9rem 1.2rem;
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.legend-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-block;
}

.legend-dot.free {
  background: rgba(34, 197, 94, 0.8);
}

.legend-dot.busy {
  background: rgba(251, 191, 36, 0.9);
}

.legend-dot.blocked {
  background: rgba(148, 163, 184, 0.8);
}

.legend-dot.holiday {
  background: #ef4444;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.calendar-nav-btn {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e7e7e7;
  border-radius: 0.6rem;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease;
}

.calendar-nav-btn:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: var(--border-soft);
  transform: translateY(-1px);
}

.calendar-title {
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: capitalize;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.calendar-weekday {
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.calendar-day {
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.015);
  color: var(--text-light);
  border-radius: 0.8rem;
  min-height: 4.5rem;
  padding: 0.5rem;
  text-align: left;
  display: grid;
  align-content: space-between;
  gap: 0.35rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease,
    border-color 0.18s ease;
  position: relative;
  overflow: visible;
}

.calendar-day:hover:not(.is-placeholder):not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
  border-color: rgba(148, 163, 184, 0.5);
}

.calendar-day.is-placeholder {
  background: transparent;
  border: 1px dashed rgba(148, 163, 184, 0.15);
  cursor: default;
}

.calendar-day-number {
  font-weight: 700;
  color: #e5e7eb;
}

.calendar-day-status {
  display: inline-block;
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.9);
  opacity: 0.95;
}

.calendar-day.calendar-unavailable {
  background: rgba(148, 163, 184, 0.18);
  color: #9ca3af;
}

.calendar-day.calendar-free {
  background: rgba(34, 197, 94, 0.18);
  color: #e8ffe8;
}

.calendar-day.calendar-busy {
  background: rgba(255, 255, 255, 0.02);
}

.calendar-day.calendar-holiday {
  border-color: rgba(239, 68, 68, 0.6);
  box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.3);
  position: relative;
}

.calendar-day.calendar-today {
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.6);
}

.calendar-day.calendar-free .calendar-day-status {
  background: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.5);
}

.calendar-day.calendar-busy .calendar-day-status {
  background: rgba(251, 191, 36, 0.9);
}

.calendar-day.calendar-unavailable .calendar-day-status {
  background: rgba(148, 163, 184, 0.8);
}

.calendar-day.calendar-holiday .calendar-day-status {
  background: #ef4444;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.5);
}

.calendar-day.calendar-sunday {
  border-color: rgba(239, 68, 68, 0.6);
  box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.3);
}

.calendar-day.calendar-sunday .calendar-day-status {
  background: #ef4444;
}

.calendar-day.calendar-holiday .calendar-day-status::after {
  content: none;
}

.calendar-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 2000;
}

.calendar-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.calendar-modal__dialog {
  position: relative;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 1rem;
  padding: 1.4rem 1.2rem 1.2rem;
  width: min(520px, 100%);
  box-shadow: 0 1.8rem 3.2rem rgba(0, 0, 0, 0.5);
}

.calendar-modal__kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.calendar-modal__title {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.calendar-modal__note {
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.calendar-modal__list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-top: 0.8rem;
  padding: 0;
}

.calendar-modal__list li {
  padding: 0.65rem 0.8rem;
  border-radius: 0.75rem;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.3);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.calendar-modal__list time {
  color: #cbd5e1;
  font-weight: 600;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  border-radius: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0f172a;
}

.status-busy {
  background: rgba(251, 191, 36, 0.9);
  color: #0f172a;
}

.status-free {
  background: #34d399;
}

.status-unavailable {
  background: #cbd5e1;
}

.calendar-modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  background: rgba(30, 41, 59, 0.8);
  color: #e7e7e7;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  font-size: 1.1rem;
}

.calendar-modal__backdrop {
  position: absolute;
  inset: 0;
}

.calendar-tooltip {
  position: absolute;
  min-width: 240px;
  max-width: 320px;
  padding: 0.85rem 0.95rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 0.9rem;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.5);
  color: var(--text-light);
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.12s ease, transform 0.12s ease;
}

.calendar-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.calendar-tooltip__date {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.calendar-tooltip__note {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.calendar-tooltip__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.calendar-tooltip__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 0.65rem;
  padding: 0.4rem 0.55rem;
}

.calendar-tooltip__time {
  color: #cbd5e1;
  font-weight: 600;
}

@media screen and (max-width: 40rem) {
  .calendar-weekdays {
    gap: 0.25rem;
    font-size: 0.8rem;
  }

  .calendar-grid {
    gap: 0.25rem;
  }

  .calendar-day {
    min-height: 3.4rem;
    padding: 0.45rem 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    justify-content: space-between;
  }

  .calendar-day-number {
    font-size: 1.05rem;
    flex: 0 0 auto;
  }

  .calendar-day-status {
    position: static;
    flex: 0 0 auto;
    width: 0.35rem;
    height: 0.35rem;
  }
}

/* Extra-small screens */
@media screen and (max-width: 32rem) {
  .btn-primary,
  .btn-ghost {
    width: 100%;
    min-width: 0;
    padding: 0.7rem 0.85rem;
    font-size: 0.9rem;
  }

  .calendar-weekdays {
    font-size: 0.75rem;
    gap: 0.2rem;
  }

  .calendar-grid {
    gap: 0.2rem;
  }

  .calendar-day {
    min-height: 3rem;
    padding: 0.35rem 0.45rem;
    gap: 0.25rem;
  }

  .calendar-day-number {
    font-size: 0.95rem;
  }

  .calendar-day-status {
    width: 0.3rem;
    height: 0.3rem;
  }

  .login-chip {
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
  }

  .login-chip__avatar {
    width: 2rem;
    height: 2rem;
    font-size: 0.95rem;
  }

  .login-chip strong {
    font-size: 0.9rem;
  }

  /* Ultra small (≤320px) tweak */
  @media screen and (max-width: 20rem) {
    .calendar-weekdays {
      font-size: 0.7rem;
      gap: 0.18rem;
    }
    .calendar-grid {
      gap: 0.18rem;
    }
    .calendar-day {
      min-height: 2.8rem;
      padding: 0.32rem 0.4rem;
    }
    .calendar-day-number {
      font-size: 0.62rem;
    }
    .calendar-day-status {
      width: 0.26rem;
      height: 0.26rem;
    }
    .btn-primary,
    .btn-ghost {
      font-size: 0.85rem;
      padding: 0.65rem 0.8rem;
    }
    .login-chip {
      gap: 0.35rem;
      padding: 0.4rem 0.7rem;
    }
    .login-chip__avatar {
      width: 1.8rem;
      height: 1.8rem;
      font-size: 0.85rem;
    }
    .login-chip strong {
      font-size: 0.8rem;
    }
  }

  .page-shell {
    padding-inline: 0.75rem;
  }

  header.hero {
    padding: 1.1rem 1rem;
    gap: 1.2rem;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 4.5vw + 1rem, 2.1rem);
    line-height: 1.25;
  }

  .highlight {
    font-size: 1.05rem;
  }

  .hero-subtitle {
    font-size: 0.96rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .login-chip {
    justify-content: center;
  }

  .login-chip strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .hero-card {
    max-width: none;
    width: 100%;
  }

  .section {
    padding: 1rem;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  }

  .map-frame {
    min-height: 240px;
  }

  .service-card,
  .step-card,
  .contact-card {
    padding: 0.9rem 0.95rem;
  }

  .section-title {
    font-size: 1rem;
  }
}

@media screen and (max-width: 360px) {
  body {
    font-size: 15px;
  }

  .page-shell {
    padding-inline: 0.65rem;
  }

  header.hero {
    padding: 0.95rem 0.9rem;
  }

  .hero h1 {
    font-size: 1.25rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .map-frame {
    min-height: 210px;
  }
}

/* Print friendly view */
@media print {
  :root {
    --bg-dark: #fff;
    --bg-card: #fff;
    --bg-soft: #fff;
    --text-light: #111;
    --text-muted: #444;
    --accent: #111;
  }

  body {
    background: #fff;
    color: #111;
    line-height: 1.4;
  }

  .page-shell {
    max-width: none;
    padding: 1.2cm;
    margin: 0 auto;
  }

  header.hero,
  .section,
  .hero-card,
  .card {
    background: #fff;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  header.hero::before,
  .hero::before {
    display: none;
  }

  a {
    color: #111;
    text-decoration: underline;
  }

  /* Buttons im Print nicht pauschal ausblenden, nur UI-spezifische Elemente */
  .mobile-action-bar,
  .lang-inline {
    display: none;
  }
}

/* ENBT Chatbot */
.chatbot-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-end;
  z-index: 1200;
}

.chatbot-panel {
  width: min(360px, 88vw);
  max-height: 70vh;
  background: rgba(12, 16, 28, 0.92);
  border: 1px solid var(--border-soft, rgba(148, 163, 184, 0.25));
  border-radius: 16px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  pointer-events: auto;
}

.chatbot-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(75, 194, 255, 0.35),
    rgba(255, 255, 255, 0)
  );
  /* -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); */
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.chatbot-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border-soft, rgba(148, 163, 184, 0.2));
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0)
  );
}

.chatbot-panel__kicker {
  font-size: 0.85rem;
  color: var(--text-muted, #9ca3af);
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.chatbot-panel__title {
  margin: 0.1rem 0;
  font-size: 1.1rem;
  color: var(--text-light, #e7e7e7);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
}

.chatbot-panel__subtitle {
  margin: 0;
  color: var(--text-muted, #9ca3af);
  font-size: 0.9rem;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.chatbot-panel__actions {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.chatbot-panel__actions button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.05rem;
  min-width: 32px;
  min-height: 32px;
  border-radius: 8px;
  transition: background 0.2s ease;
  color: var(--text-light, #e7e7e7);
}

.chatbot-panel__actions button:hover {
  background: rgba(255, 255, 255, 0.06);
}

.chatbot-panel__actions button:focus-visible {
  outline: 2px solid var(--accent, #4bc2ff);
  outline-offset: 2px;
}

.chatbot-panel__body {
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-light, #e7e7e7);
  background: radial-gradient(
      circle at 20% 0%,
      rgba(75, 194, 255, 0.08),
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 255, 255, 0.05),
      transparent 35%
    );
}

.chatbot-panel__footer {
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--border-soft, rgba(148, 163, 184, 0.25));
}

.chatbot-msg {
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  line-height: 1.4;
  font-size: 0.95rem;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.chatbot-msg--bot {
  background: rgba(75, 194, 255, 0.08);
  color: var(--text-light, #e7e7e7);
  align-self: flex-start;
}

.chatbot-msg--user {
  background: var(--accent, #4bc2ff);
  color: #fff;
  align-self: flex-end;
}

.chatbot-page .chatbot-widget {
  position: static;
  right: auto;
  bottom: auto;
  align-items: center;
  width: 100%;
}

.chatbot-page .chatbot-panel {
  width: min(960px, 100%);
  min-height: min(70vh, 720px);
  max-height: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.chatbot-page .chatbot-panel__body {
  max-height: none;
  min-height: 360px;
}

.chatbot-page-header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.chatbot-page-shell {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.chatbot-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent, #4bc2ff);
  text-decoration: none;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft, rgba(148, 163, 184, 0.3));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.chatbot-back-link:hover {
  background: rgba(75, 194, 255, 0.1);
}

.chatbot-link-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.15rem;
  min-width: 3.25rem;
  min-height: 3.25rem;
  color: #333;
  border-radius: 999px;
  /* border: 1px solid rgba(255, 255, 255, 0.6); */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  /* backdrop-filter: blur(10px); */
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  z-index: 2000;
  transition: filter 0.35s ease, background 0.35s ease, color 0.35s ease,
    opacity 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, gap 0.3s ease,
    max-width 0.35s ease;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}

.chatbot-link-fab__badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, 0.85); */
  color: #333;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.chatbot-link-fab__badge--image {
  background: url("/static/images/smily.f6a2696a803a.png") center center / cover no-repeat;
  color: transparent;
}

.chatbot-link-fab__text {
  color: inherit;
  font-size: 1rem;
}

.chatbot-link-fab.is-compact {
  padding: 0.55rem;
  gap: 0;
  max-width: 3.5rem;
  width: 3.5rem;
  height: 3.5rem;
  min-width: 3.5rem;
  min-height: 3.5rem;
  justify-content: center;
}

.chatbot-link-fab.is-compact .chatbot-link-fab__text {
  opacity: 0;
  transform: scaleX(0.6);
  width: 0;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 640px) {
  .chatbot-link-fab {
    right: 1rem;
    top: auto;
    bottom: 1rem;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
  }
}

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

/* Manual page */
.manual-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
  display: grid;
  gap: 1.25rem;
}

.manual-page h1 {
  font-size: clamp(1.2rem, 1.2vw + 0.9rem, 1.6rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  word-break: break-word;
  text-align: center;
  hyphens: auto;
}

.manual-section {
  background: linear-gradient(145deg, #0b1224, #020617);
  border: 1px solid rgba(31, 41, 55, 0.9);
  border-radius: 1rem;
  padding: 1.1rem;
  box-shadow: 0 1.1rem 2.2rem rgba(0, 0, 0, 0.7);
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.manual-section h2 {
  margin: 0;
  font-size: 1.2rem;
}

.manual-section h3 {
  margin: 0.25rem 0;
}

.manual-section ul,
.manual-section ol {
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.manual-section li {
  margin: 0.15rem 0;
}

.manual-callout {
  border: 1px solid rgba(56, 189, 248, 0.6);
  background: rgba(56, 189, 248, 0.08);
  border-radius: 0.75rem;
  padding: 0.75rem;
  color: #e0f2fe;
  margin-top: 0.35rem;
}

.manual-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.manual-actions a {
  margin: 0;
  max-width: 100%;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: center;
}

.lang-inline {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin-top: 0.35rem;
  margin-bottom: 0.5rem;
}

.lang-inline button {
  padding: 0.35rem 0.6rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.8);
  color: #e7e7e7;
  cursor: pointer;
}

.lang-inline button:hover {
  border-color: rgba(56, 189, 248, 0.7);
}

@media (max-width: 32rem) {
  .manual-page {
    padding: 1rem 0.9rem 1.5rem;
  }
  .manual-page h1 {
    font-size: 0.9rem;
    line-height: 1.2;
  }
  .manual-actions {
    gap: 0.35rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    display: flex;
  }
  .manual-actions a {
    width: auto;
    max-width: 86vw;
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 20rem) {
  .manual-page {
    padding: 0.7rem 0.65rem 1rem;
  }
  .manual-page h1 {
    font-size: 0.85rem;
    line-height: 1.2;
  }
  .manual-actions {
    gap: 0.3rem;
  }
  .manual-actions a {
    max-width: 82vw;
    padding: 0.5rem 0.65rem;
    font-size: 0.8rem;
  }
}

.chatbot-btn {
  border: 1px solid var(--border-soft, rgba(148, 163, 184, 0.3));
  background: var(--bg-dark, #0f0f0f);
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  color: var(--text-light, #e7e7e7);
}

.chatbot-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent, #4bc2ff);
}

.chatbot-input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.chatbot-input textarea {
  width: 100%;
  min-height: 64px;
  padding: 0.65rem;
  border-radius: 10px;
  border: 1px solid var(--border-soft, rgba(148, 163, 184, 0.35));
  background: var(--bg-dark, #0f0f0f);
  color: var(--text-light, #e7e7e7);
  resize: vertical;
}
.chatbot-input button {
  align-self: flex-end;
}

.chatbot-lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chatbot-lang {
  border: 1px solid var(--border-soft, rgba(148, 163, 184, 0.3));
  background: var(--bg-dark, #0f0f0f);
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-light, #e7e7e7);
}

.chatbot-lang.active {
  background: var(--accent, #4bc2ff);
  color: #fff;
  border-color: var(--accent, #4bc2ff);
}

.chatbot-other-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chatbot-other-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border-soft, rgba(148, 163, 184, 0.3));
  padding: 0.6rem;
  font-family: inherit;
  background: var(--bg-dark, #0f0f0f);
  color: var(--text-light, #e7e7e7);
}

.chatbot-upload-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border: 1px dashed var(--border-soft, rgba(148, 163, 184, 0.35));
  padding: 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.chatbot-upload__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.6rem;
}

.chatbot-upload__label {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0b1018;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  border: 1px solid rgba(250, 204, 21, 0.6);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.chatbot-upload__label:hover,
.chatbot-upload__label:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0.7rem 1.6rem rgba(250, 204, 21, 0.35);
  filter: brightness(1.05);
  outline: none;
}

.chatbot-upload-form input[type="file"] {
  font-size: 0.9rem;
  color: var(--text-light, #e7e7e7);
}
.chatbot-upload__hint {
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.78);
  margin: 0;
}
.chatbot-upload__status {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted, #cbd5e1);
}
.chatbot-upload__status[data-state="pending"] {
  color: #fcd34d;
}
.chatbot-upload__status[data-state="success"] {
  color: #4ade80;
}
.chatbot-upload__status[data-state="error"] {
  color: #fca5a5;
}
.chatbot-upload__preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 100%;
  padding-top: 0.15rem;
}
.chatbot-upload__preview[hidden] {
  display: none;
}
.chatbot-upload__preview-item {
  display: grid;
  gap: 0.3rem;
  justify-items: center;
  padding: 0.45rem;
  border: 1px solid var(--border-soft, rgba(148, 163, 184, 0.35));
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}
.chatbot-upload__preview-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-soft, rgba(148, 163, 184, 0.35));
}
.chatbot-upload__remove {
  position: absolute;
  top: 6px;
  right: 6px;
  border: none;
  background: rgba(248, 113, 113, 0.16);
  color: #f87171;
  border-radius: 999px;
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
}
.chatbot-upload__remove:hover {
  background: rgba(248, 113, 113, 0.28);
}
.chatbot-upload__preview-icon {
  font-size: 1.4rem;
}
.chatbot-upload__preview-item span {
  font-size: 0.8rem;
  color: var(--text-light, #e7e7e7);
  word-break: break-all;
  text-align: center;
}

/* Auth / Reset pages */
.auth-page {
  min-height: 100vh;
  background: var(--bg, #0b1018);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.auth-shell {
  width: 100%;
  max-width: 480px;
}
.auth-card {
  background: rgba(15, 23, 42, 0.85);
  color: var(--text-light, #e7e7e7);
  padding: 1.75rem;
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.18);
}
.auth-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}
.auth-subtitle {
  margin: 0 0 1.25rem;
  color: rgba(226, 232, 240, 0.8);
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.auth-input {
  width: 100%;
  padding: 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--border-soft, rgba(148, 163, 184, 0.35));
  background: var(--bg-dark, #0f0f0f);
  color: var(--text-light, #e7e7e7);
}
.auth-btn {
  width: 100%;
  justify-content: center;
}
.auth-footer {
  margin-top: 1.5rem;
  text-align: center;
}
.auth-footer a {
  color: var(--accent, #4bc2ff);
}

@media screen and (max-width: 640px) {
  .chatbot-widget {
    right: 0.75rem;
    bottom: 0.9rem;
    align-items: stretch;
    left: 0.75rem;
    width: auto;
  }

  .chatbot-panel {
    width: 100%;
    max-height: 78vh;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  }

  .chatbot-panel__header {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .chatbot-panel__actions {
    margin-left: auto;
  }

  .chatbot-panel__body {
    max-height: 58vh;
  }
}

@media screen and (max-width: 768px) {
  .btn-primary,
  .btn-ghost {
    width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .hero-actions,
  .manual-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin: 0 auto;
  }
}
