: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);
  --radius: 0.9rem;
  --shadow-soft: 0 1.4rem 3rem rgba(0, 0, 0, 0.6);
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(
    circle at 0% 0%,
    #111827 0,
    #020617 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;
  padding: 1.5rem 1.25rem 2.5rem;
  margin: 0 auto;
}

header.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 1.5rem;
  margin: 1.5rem 0 2rem;
  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;
}

.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 rgba(148, 163, 184, 0.6);
  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.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #020617;
  font-size: 0.8rem;
  font-weight: 700;
}

.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(11rem, 1fr));
  gap: 0.8rem;
  align-items: center;
}

/* 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);
  }
}

.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-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  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: #020617;
  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 {
  background: rgba(15, 23, 42, 0.7);
  color: var(--text-light);
  border-color: rgba(148, 163, 184, 0.6);
}

.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: 19rem;
  border-radius: 1.4rem;
  background: radial-gradient(
      circle at 10% 0,
      rgba(148, 163, 184, 0.28),
      transparent 60%
    ),
    linear-gradient(145deg, #020617, #020617);
  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;
}

.hero-card-avatar {
  width: 9.2rem;
  height: 9.2rem;
  border-radius: 999px;
  border: 4px solid rgba(56, 189, 248, 0.9);
  background: radial-gradient(
      circle at 18% 18%,
      rgba(56, 189, 248, 0.22),
      rgba(2, 6, 23, 0.9)
    ),
    url("../images/profil.png") center/cover no-repeat;
  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 & Djens";
  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 rgba(148, 163, 184, 0.6);
  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;
}

.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;
}

.hero-card-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(148, 163, 184, 0.45);
  padding-top: 0.75rem;
}

.hero-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.55rem 1rem;
  width: auto;
  min-width: 8rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.55);
  color: #e0f2fe;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

main {
  display: grid;
  gap: 1.6rem;
}

.section {
  background: radial-gradient(
      circle at 0 0,
      rgba(75, 194, 255, 0.13),
      transparent 55%
    ),
    linear-gradient(145deg, var(--bg-soft), #020617);
  border-radius: 1.1rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.4rem 1.4rem 1.5rem;
  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: 0.95rem;
}

.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);
}

.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;
}

.service-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.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);
}

.step-number {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 1);
  border: 1px solid rgba(148, 163, 184, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.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 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;
}

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

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

.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;
}

.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;
}

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

.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: auto;
  padding: 1.2rem 1.4rem 1.3rem;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: #020617;
  color: #6b7280;
  font-size: 0.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.8rem;
  align-items: center;
}

footer.site-footer span.brand {
  color: #9ca3af;
}

footer.site-footer .footer-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 0.6rem;
}

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

  .hero-side {
    order: -1;
  }

  .hero-card {
    max-width: 16.5rem;
  }

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

@media (max-width: 720px) {
  .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;
  }

  .calendar-legend {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding-inline: 1rem;
  }

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

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

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

  .btn-primary,
  .btn-ghost {
    justify-content: center;
    width: 100%;
  }
}
/* 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: #020617;
  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 rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

@media (max-width: 40rem) {
  body {
    padding-bottom: calc(5.8rem + env(safe-area-inset-bottom, 0px));
  }

  .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(6rem + env(safe-area-inset-bottom, 0px));
    margin-bottom: 2rem;
  }
  .hero-actions {
    display: none;
  }
}

@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(7.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Language switcher UI */
.lang-wrapper {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  z-index: 1100;
  /* border: solid 5px red; */
}

.lang-switcher {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--text-light);
  font-size: 1.2rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.8rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.4);
}

.lang-switcher:hover,
.lang-switcher:focus-visible {
  background: rgba(15, 23, 42, 0.92);
  transform: translateY(-2px);
  outline: none;
  box-shadow: 0 1.1rem 2.3rem rgba(56, 189, 248, 0.3);
}

.lang-tooltip {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 16rem;
  max-width: 18rem;
  padding: 0.75rem 0.9rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

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

.lang-tip-header {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.lang-tip-icon {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.75rem;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(56, 189, 248, 0.8),
    rgba(15, 23, 42, 0.8)
  );
  border: 1px solid rgba(148, 163, 184, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0.7rem 1.8rem rgba(0, 0, 0, 0.55);
}

.lang-tip-title {
  font-weight: 700;
  font-size: 0.96rem;
}

.lang-tip-sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.lang-tip-visual {
  height: 78px;
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(
      135deg,
      rgba(56, 189, 248, 0.2),
      rgba(15, 23, 42, 0.65)
    ),
    radial-gradient(circle at 20% 30%, rgba(75, 194, 255, 0.4), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(30, 64, 175, 0.5), transparent 55%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 60" opacity="0.7"><circle cx="20" cy="30" r="7" fill="%234bc2ff"/><circle cx="50" cy="25" r="7" fill="%2348a0ff"/><circle cx="80" cy="32" r="7" fill="%233b82f6"/><path d="M15 40 Q35 15 55 38 T95 36" stroke="%23a5b4fc" stroke-width="2" fill="none" stroke-linecap="round"/></svg>');
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.lang-menu {
  position: absolute;
  top: 4rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.6rem;
  border-radius: 0.8rem;
  backdrop-filter: blur(10px);
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 1001;
  width: min(16rem, 80vw);
}

.lang-menu button {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e7e7e7;
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  border-radius: 0.6rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
  min-width: 8rem;
}

.lang-menu button:hover {
  background: rgba(56, 189, 248, 0.25);
}

@media (max-width: 640px) {
  .lang-wrapper {
    position: fixed;
    top: 0.8rem;
    right: 0.8rem;
    gap: 0.3rem;
  }

  .lang-menu {
    top: 3.2rem;
    right: 0.5rem;
  }
}

.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-section .fc {
  color: var(--text-light);
}

.calendar-section .fc-theme-standard td,
.calendar-section .fc-theme-standard th {
  border-color: rgba(148, 163, 184, 0.15);
}

.calendar-section .fc-toolbar-title {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.calendar-section .fc-button {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e7e7e7;
  box-shadow: none;
  text-transform: none;
  border-radius: 0.6rem;
}

.calendar-section .fc-button:hover {
  background: rgba(56, 189, 248, 0.2);
}

.calendar-section .fc-daygrid-day {
  background: rgba(255, 255, 255, 0.015);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease;
}

.calendar-section .fc-daygrid-day:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
}

.calendar-section .fc-daygrid-day-number {
  color: #e5e7eb;
  font-weight: 600;
}

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

.calendar-section .fc-daygrid-day.calendar-busy {
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
}

.calendar-section .fc-daygrid-day.calendar-mixed {
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
}

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

.calendar-section
  .fc-daygrid-day.calendar-holiday
  .fc-daygrid-day-number::after {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #ef4444;
  margin-left: 0.35rem;
  vertical-align: middle;
}

.calendar-section .fc-daygrid-day-frame {
  padding: 0.65rem;
}

.calendar-section .fc-daygrid-event {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 0.5rem;
  padding: 0.1rem 0.4rem;
  font-size: 0.85rem;
}

.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;
}

.weather-card {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: grid;
  gap: 0.75rem;
}

.weather-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

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

.weather-temp {
  font-size: 2.3rem;
  font-weight: 700;
}

.weather-meta {
  display: grid;
  gap: 0.25rem;
  color: var(--text-muted);
}

.weather-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.weather-foot {
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 40rem) {
  .weather-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .weather-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .calendar-section .fc-daygrid-event {
    padding: 0.25rem;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .calendar-section .fc-daygrid-event .fc-event-time,
  .calendar-section .fc-daygrid-event .fc-event-title {
    display: none;
  }

  .calendar-section .fc-daygrid-event-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: #3b82f6;
    border: none;
    margin: 0;
  }
}

@media (max-width: 720px) {
  .calendar-section .calendar-shell {
    padding: 1rem;
  }
}

/* Extra-small screens */
@media screen and (max-width: 480px) {
  .page-shell {
    padding-inline: 0.75rem;
  }

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

  .hero h1 {
    font-size: clamp(1.75rem, 5vw + 1.1rem, 2.35rem);
  }

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

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

  .section {
    padding: 1rem;
  }

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

/* 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 !important;
    color: #111 !important;
    line-height: 1.4;
  }

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

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

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

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

  .btn-primary,
  .btn-ghost,
  .mobile-action-bar,
  .lang-wrapper {
    display: none !important;
  }
}
