/* soft-cards.css — Style B: Modern, rounded cards, soft shadows */

body {
  background: var(--bg);
}

/* Header */
.sb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border-soft);
}
.sb-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--s-3);
  gap: var(--s-5);
}
.sb-header img {
  height: 42px;
  width: auto;
}
@media (min-width: 880px) {
  .sb-header img {
    height: 48px;
  }
}
.sb-header nav {
  display: none;
  gap: var(--s-5);
  align-items: center;
}
.sb-header nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: var(--fs-small);
  transition: color var(--transition);
}
.sb-header nav a:hover {
  color: var(--slate);
}
.sb-header .header-cta {
  display: none;
}
.sb-header .menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--slate);
}
@media (min-width: 880px) {
  .sb-header nav {
    display: flex;
  }
  .sb-header .header-cta {
    display: inline-flex;
  }
  .sb-header .menu-btn {
    display: none;
  }
}
.mobile-nav {
  display: none;
  padding: var(--s-3) 0 var(--s-5);
  border-top: 1px solid var(--border-soft);
}
.mobile-nav.open {
  display: block;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-3);
}
.mobile-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: var(--s-2) 0;
  display: block;
}
.mobile-nav a.btn {
  color: #fff;
  padding: 0.8rem 1.5rem;
  margin-top: var(--s-2);
  width: 100%;
  justify-content: center;
}
@media (min-width: 880px) {
  .mobile-nav {
    display: none !important;
  }
}

/* Hero — Banner oben, Text darunter */
.hero {
  padding-top: var(--s-2);
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.hero-banner {
  position: relative;
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--slate);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 720px) {
  .hero-banner {
    aspect-ratio: 16 / 10;
  }
}
.hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 41, 59, 0.18) 0%,
    rgba(30, 41, 59, 0.55) 100%
  );
}
.hero-banner .badge {
  position: absolute;
  left: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  background: rgba(255, 255, 255, 0.92);
  color: var(--slate);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: var(--fs-tiny);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.hero .container {
  display: block;
}
.hero-text {
  max-width: 900px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw + 1rem, 3.75rem);
  max-width: 22ch;
  margin-bottom: var(--s-4);
  text-wrap: balance;
  line-height: 1.1;
}
.hero .sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: var(--s-5);
}
.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}

.hero-panel {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      120% 80% at 20% 0%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    ),
    linear-gradient(135deg, var(--slate) 0%, #2a3a55 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-panel .mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-panel .mark svg {
  width: 60%;
  height: auto;
  opacity: 0.95;
}
.hero-panel .dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 18px 18px;
  pointer-events: none;
}
.hero-panel .badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: var(--fs-tiny);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  margin-top: var(--s-5);
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.hero-trust svg {
  color: var(--slate);
}

/* About */
.about {
  background: #fff;
}
.about .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (min-width: 880px) {
  .about .container {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}
.about-text {
  max-width: 56ch;
}
.about .eyebrow {
  color: var(--grey);
}
.about h2 {
  margin-bottom: var(--s-5);
}
.about p {
  font-size: 1.0625rem;
  color: var(--text-muted);
}
.about p + p {
  margin-top: var(--s-4);
}
.about-image {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.about-image picture,
.about-image img {
  width: 100%;
  height: 100%;
  display: block;
}
.about-image img {
  object-fit: cover;
  object-position: center;
}
@media (max-width: 879px) {
  .about-image {
    aspect-ratio: 16 / 10;
  }
}

/* Services */
.services {
  background: var(--bg-soft);
}
.services .intro {
  max-width: 60ch;
  color: var(--text-muted);
  margin-bottom: var(--s-7);
}
.services .intro .eyebrow {
  color: var(--grey);
}
.services h2 {
  margin-bottom: var(--s-4);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: var(--s-5);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--grey-soft);
}
.service-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  margin-bottom: var(--s-4);
}
.service-card h3 {
  margin-bottom: var(--s-2);
  font-size: 1.125rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* Tenant tiles */
.tenant {
  background: #fff;
}
.tenant .intro {
  max-width: 70ch;
  color: var(--text-muted);
  margin-bottom: var(--s-6);
}
.tenant h2 {
  margin-bottom: var(--s-4);
}
.tiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 720px) {
  .tiles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s-5) var(--s-5) var(--s-5) calc(var(--s-5) + 6px);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--slate);
}
.tile.urgent::before {
  background: var(--danger);
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.tile .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  margin-bottom: var(--s-3);
}
.tile.urgent .icon {
  color: var(--danger);
}
.tile h3 {
  margin-bottom: var(--s-2);
  font-size: 1.125rem;
}
.tile p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  flex-grow: 1;
  margin-bottom: var(--s-4);
}
.tile .arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: var(--fs-small);
  color: var(--slate);
}
.tile .arrow::after {
  content: "→";
  transition: transform var(--transition);
}
.tile:hover .arrow::after {
  transform: translateX(4px);
}

/* FAQ */
.faq {
  background: var(--bg-soft);
}
.faq .container {
  max-width: 880px;
}
.faq h2 {
  margin-bottom: var(--s-5);
}
.faq details {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-bottom: var(--s-3);
  padding: 0 var(--s-5);
  box-shadow: var(--shadow-sm);
}
.faq details:last-of-type {
  border-bottom: 1px solid var(--border-soft);
}
.faq summary {
  padding: var(--s-4) 0;
}
.faq details > p {
  padding-bottom: var(--s-5);
}

/* Contact */
.contact {
  background: #fff;
}
.contact .container {
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .contact .container {
    grid-template-columns: 1fr 1.1fr;
  }
}
.contact h2 {
  margin-bottom: var(--s-4);
}
.contact-info p {
  color: var(--text-muted);
  margin-bottom: var(--s-5);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-4);
}
.contact-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: var(--s-3);
}
.contact-list .ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
}
.contact-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 2px;
  font-weight: 500;
}
.contact-list a {
  color: var(--slate);
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}
.contact-list .label {
  display: block;
  font-size: var(--fs-tiny);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 2px;
}

.form-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.form-card h3 {
  margin-bottom: var(--s-4);
  font-size: 1.125rem;
}
.form-card .field input,
.form-card .field select,
.form-card .field textarea {
  background: #fff;
}
