/* ── Farbpalette & Tokens ── */
:root {
  --color-bg:          #050816;
  --color-bg-alt:      #0b1120;
  --color-primary:     #38bdf8;
  --color-primary-soft: rgba(56, 189, 248, 0.15);
  --color-accent:      #818cf8;
  --color-text:        #e5e7eb;
  --color-muted:       #9ca3af;
  --radius-lg:         18px;
  --radius-md:         12px;
  --shadow-soft:       0 18px 45px rgba(15, 23, 42, 0.75);
}

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

html { overflow-x: hidden; scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout ── */
.page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  max-width: 100%;
}

/* ── Header / Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: linear-gradient(
    to bottom,
    rgba(5, 8, 22, 0.85),
    rgba(5, 8, 22, 0.6),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 82px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.logo:hover .logo-img {
  opacity: 0.88;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.88rem;
}

.nav-links a {
  padding: 0.3rem 0.4rem;
  color: var(--color-muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #050816;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.35);
  white-space: nowrap;
  transition: filter 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  filter: brightness(1.08);
  box-shadow: 0 12px 32px rgba(56, 189, 248, 0.5);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.3rem;
}

.nav-toggle span { font-size: 1.5rem; }

/* ── Hero ── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem 4rem 5rem;
  border-radius: 24px;
  margin: 1.2rem -1.5rem 0;
  min-height: 680px;
  overflow: hidden;
}

/* Animated star canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Gradient overlay for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,
      rgba(5, 8, 22, 0.82) 0%,
      rgba(5, 8, 22, 0.62) 45%,
      rgba(5, 8, 22, 0.18) 100%
    ),
    linear-gradient(to top,
      rgba(5, 8, 22, 0.65) 0%,
      transparent 55%
    );
}

.hero-text-col {
  position: relative;
  z-index: 3;
}

.hero-text-col { max-width: 640px; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.35);
  font-size: 0.74rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #22c55e, #16a34a);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.25); }
}

.hero-title {
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(5, 8, 22, 0.85);
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(229, 231, 235, 0.88);
  max-width: 34rem;
  margin: 0 0 0.6rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.badge {
  font-size: 0.76rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--color-muted);
  background: rgba(15, 23, 42, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #050816;
  box-shadow: 0 12px 32px rgba(56, 189, 248, 0.45);
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.55);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--color-text);
}

.btn-ghost:hover {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.4);
}

/* Hero card */
/* ── Hero Carousel (full-bleed background) ── */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050816;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
  pointer-events: none;
}

.hero-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Arrows */
.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(5,8,22,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(148,163,184,0.25);
  color: #e2e8f0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.hero-carousel-btn svg {
  width: 18px;
  height: 18px;
}

.hero-carousel-btn:hover {
  background: rgba(56,189,248,0.2);
  transform: translateY(-50%) scale(1.08);
}

.hero-carousel-btn.prev { left: 12px; }
.hero-carousel-btn.next { right: 12px; }

/* Dots */
.hero-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.hero-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.hero-carousel-dot.active {
  background: #38bdf8;
  transform: scale(1.35);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  font-size: 0.7rem;
  color: #7dd3fc;
  white-space: nowrap;
}

/* ── Sections ── */
.section {
  padding: 3rem 0 1.5rem;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.section-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #38bdf8;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--color-text);
}

.section-description {
  font-size: 0.92rem;
  color: var(--color-muted);
  max-width: 30rem;
  line-height: 1.65;
  margin: 0;
}

/* ── Service Cards ── */
.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  position: relative;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #0a0f1f 0%, #050816 60%);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 1.4rem 1.2rem;
  box-shadow: 0 12px 36px rgba(5, 8, 22, 0.85);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(5, 8, 22, 0.9), 0 0 0 1px rgba(56, 189, 248, 0.25);
  border-color: rgba(56, 189, 248, 0.38);
}

.card:hover::before { opacity: 1; }

.card-icon-wrap {
  margin-bottom: 0.9rem;
}

.card-icon {
  font-size: 2rem;
  line-height: 1;
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(56, 189, 248, 0.3));
}

/* ── Card image thumbnail ── */
.card-img-wrap {
  margin: -1.4rem -1.2rem 1.1rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  height: 190px;
  position: relative;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  transition: transform 0.45s ease;
}

a.card-link:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.card-title {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  line-height: 1.3;
}

.card-pill {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #7dd3fc;
  white-space: nowrap;
  flex-shrink: 0;
}

.card-body {
  font-size: 0.87rem;
  color: #94a3b8;
  line-height: 1.65;
}

/* ── Highlight banner ── */
.highlight-banner {
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-left: 4px solid #38bdf8;
  padding: 1.1rem 1.3rem;
  font-size: 0.88rem;
  color: #bae6fd;
  font-weight: 500;
  line-height: 1.7;
  margin: 1.6rem 0;
}

.highlight-banner strong {
  color: var(--color-text);
}

/* ── Stats strip ── */
.stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 0.5rem;
}

.stat-strip-item {
  flex: 1 1 130px;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.stat-strip-item strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.1rem;
}

/* ── About section ── */
.content {
  max-width: 54rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: #94a3b8;
}

.content p { margin: 0 0 0.9rem; }
.content strong { color: var(--color-text); }

.about-values {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-value {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.86rem;
  color: var(--color-muted);
  line-height: 1.55;
  transition: border-color 0.2s;
}

.about-value:hover {
  border-color: rgba(56, 189, 248, 0.35);
}

.about-value strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

/* ── FAQ ── */
.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(10, 15, 31, 0.9);
  padding: 1rem 1.1rem;
  transition: border-color 0.2s;
}

.faq-item[open],
.faq-item:hover {
  border-color: rgba(56, 189, 248, 0.3);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.93rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--color-text);
}

.faq-toggle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  flex-shrink: 0;
  transition: transform 0.2s ease, border-color 0.2s;
}

details[open] .faq-toggle {
  transform: rotate(45deg);
  border-color: #38bdf8;
  color: #38bdf8;
}

.faq-answer {
  margin-top: 0.75rem;
  font-size: 0.87rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.faq-answer ul {
  margin: 0.5rem 0 0 1.1rem;
  padding: 0;
}

.faq-answer li {
  margin-bottom: 0.3rem;
}

/* ── Contact ── */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.contact-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: radial-gradient(circle at top left, #0a0f1f, #050816 60%);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.contact-panel-title {
  margin: 0 0 1.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 0.87rem;
  color: var(--color-muted);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-row:first-child { padding-top: 0; }

.contact-row-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
}

.contact-row-icon svg { width: 18px; height: 18px; }

.contact-row-body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding-top: 0.1rem;
}

.contact-row-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #38bdf8;
  font-weight: 700;
  margin-bottom: 0.08rem;
}

.contact-row-body strong {
  color: var(--color-text);
  font-size: 0.92rem;
}

.contact-row-body span { font-size: 0.85rem; }

.contact-row-body a { color: inherit; transition: color 0.18s; }
.contact-row-body a:hover { color: #38bdf8; }

/* Contact form */
.contact-form { display: grid; gap: 0.8rem; }

.field {
  display: grid;
  gap: 0.3rem;
  font-size: 0.84rem;
}

.field label { color: var(--color-muted); }

.field input,
.field select,
.field textarea {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.9);
  padding: 0.65rem 0.9rem;
  font-size: 0.87rem;
  color: var(--color-text);
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field select option { background: #0b1120; }

.field textarea {
  border-radius: 12px;
  min-height: 115px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

.field-hint {
  font-size: 0.74rem;
  color: var(--color-muted);
  margin: 0.15rem 0 0;
  line-height: 1.5;
}

/* ── WhatsApp FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-fab svg { width: 40px; height: 40px; }

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.75);
}

.whatsapp-fab-tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a2e;
  color: #fff;
  font-size: 0.76rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.whatsapp-fab:hover .whatsapp-fab-tooltip { opacity: 1; }

/* ── Footer ── */
.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(5, 8, 22, 0.98);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.6rem 1.5rem 2rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "copy links"
    "area links"
    "legal legal";
  align-items: start;
  gap: 0.8rem 1.5rem;
}

.footer-inner > span:first-child { grid-area: copy; }

.footer-links {
  grid-area: links;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  align-self: center;
}

.footer-links a { color: var(--color-muted); transition: color 0.18s; }
.footer-links a:hover { color: var(--color-text); }

.footer-area {
  grid-area: area;
  max-width: 620px;
  line-height: 1.4;
}

.footer-legal {
  grid-area: legal;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  padding-top: 0.9rem;
  margin-top: 0.2rem;
  font-size: 0.76rem;
}

.footer-legal a { color: rgba(148, 163, 184, 0.6); transition: color 0.18s; text-decoration: none; }
.footer-legal a:hover { color: var(--color-text); }

/* ── Legal pages ── */
.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 2rem 0 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.legal-content h3 {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 1.3rem 0 0.3rem;
}

.legal-content p {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin: 0.4rem 0;
}

.legal-content ul, .legal-content ol {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.75;
  padding-left: 1.3rem;
  margin: 0.4rem 0;
}

.legal-content ul li, .legal-content ol li {
  margin-bottom: 0.25rem;
}

.legal-content a {
  color: #38bdf8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: #7dd3fc;
}

.legal-info-box {
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.legal-info-box strong {
  color: var(--color-text);
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

/* ── Service grid (2-col) ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.2rem 0;
}

/* ── Service hero image ── */
.service-hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 1.2rem 0 2rem;
  max-height: 500px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  box-shadow: 0 12px 40px rgba(5, 8, 22, 0.5);
  border: 1px solid rgba(56, 189, 248, 0.15);
}

/* ── Service hero banner (replaces image) ── */
.service-hero-banner {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 1.2rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  padding: 3.5rem 2rem;
  background: radial-gradient(ellipse at 30% 50%, rgba(56, 189, 248, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(129, 140, 248, 0.09) 0%, transparent 60%),
              rgba(10, 15, 31, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.2);
  box-shadow: 0 12px 40px rgba(5, 8, 22, 0.6);
  position: relative;
  overflow: hidden;
}

.service-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 24px,
    rgba(56, 189, 248, 0.03) 24px,
    rgba(56, 189, 248, 0.03) 25px
  );
}

.service-hero-banner-icon {
  font-size: 4rem;
  line-height: 1;
  position: relative;
  filter: drop-shadow(0 4px 20px rgba(56, 189, 248, 0.4));
}

.service-hero-banner-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #38bdf8;
  font-weight: 700;
  position: relative;
}

/* ── Erfolgsfaktoren grid ── */
.erfolgsfaktoren-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.2rem 0;
}

.erfolgsfaktor-item {
  padding: 1.3rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(10, 15, 31, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.18);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

.erfolgsfaktor-item:hover {
  border-color: rgba(56, 189, 248, 0.35);
}

.erfolgsfaktor-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.6), rgba(129, 140, 248, 0.5));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.erfolgsfaktor-item h3 {
  font-size: 0.93rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--color-text);
}

.erfolgsfaktor-item p {
  font-size: 0.83rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Card link wrapper ── */
a.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  transition: transform 0.18s ease;
}

a.card-link:hover {
  transform: translateY(-3px);
}

a.card-link:hover .card {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.12);
}

a.card-link .card-more {
  font-size: 0.78rem;
  color: #38bdf8;
  font-weight: 600;
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  opacity: 0.8;
  transition: opacity 0.15s;
}

a.card-link:hover .card-more {
  opacity: 1;
}

/* ── Section forward link ── */
.section-forward {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.3rem;
  margin-top: 1.8rem;
  border-radius: var(--radius-md);
  background: rgba(10, 15, 31, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-left: 3px solid #38bdf8;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.88rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
}

.section-forward:hover {
  background: rgba(56, 189, 248, 0.06);
  border-color: rgba(56, 189, 248, 0.4);
  border-left-color: #38bdf8;
  transform: translateX(4px);
}

.section-forward-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.section-forward-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.section-forward-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text);
}

.section-forward-arrow {
  font-size: 1.3rem;
  color: #38bdf8;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.section-forward:hover .section-forward-arrow {
  transform: translateX(4px);
}

/* ── Page hero (sub-pages) ── */
.page-hero {
  padding: 3rem 0 1.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: #38bdf8;
  font-weight: 500;
  transition: color 0.15s;
}

.breadcrumb a:hover { color: #7dd3fc; }

.breadcrumb-sep { color: rgba(148, 163, 184, 0.5); }

.page-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #38bdf8;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.page-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.9rem;
  color: var(--color-text);
  line-height: 1.1;
}

.page-intro {
  max-width: 60rem;
  font-size: 0.96rem;
  color: var(--color-muted);
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

/* ── Why grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.4rem 0;
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 0.75rem;
  padding: 1.4rem 1.2rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #0a0f1f, #050816 60%);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 12px 32px rgba(5, 8, 22, 0.7);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.why-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.15), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.why-item:hover { transform: translateY(-3px); border-color: rgba(56, 189, 248, 0.35); }
.why-item:hover::before { opacity: 1; }

.why-item--wide {
  grid-column: span 2;
}

.why-item-icon {
  grid-column: 1;
  grid-row: 1;
  font-size: 1.6rem;
  line-height: 1;
  align-self: center;
  position: relative;
}

.why-item h3 {
  grid-column: 2;
  grid-row: 1;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  align-self: center;
  color: var(--color-text);
  position: relative;
}

.why-item p {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 0.86rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0.4rem 0 0;
  position: relative;
}

/* ── Service features list ── */
.service-features {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.service-feature {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(10, 15, 31, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.18);
  font-size: 0.87rem;
  color: var(--color-muted);
  line-height: 1.6;
  transition: border-color 0.2s;
}

.service-feature:hover { border-color: rgba(56, 189, 248, 0.3); }

.service-feature-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #38bdf8;
  font-weight: 700;
}

.service-feature strong {
  display: block;
  color: var(--color-text);
  font-size: 0.91rem;
  margin-bottom: 0.18rem;
}

/* ── CTA block ── */
.cta-block {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 55%),
    rgba(10, 15, 31, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.22);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 2.5rem 0;
}

.cta-block h2 {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 0.6rem;
  color: var(--color-text);
}

.cta-block p {
  color: var(--color-muted);
  font-size: 0.92rem;
  max-width: 38rem;
  margin: 0 auto 1.6rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

/* ── About box ── */
.about-box {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero {
    padding: 4rem 2.5rem 3.5rem;
    margin: 1rem 0 0;
    min-height: 580px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    inset: 56px 1rem auto;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    background: rgba(5, 8, 22, 0.97);
    border: 1px solid rgba(56, 189, 248, 0.2);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    transform-origin: top;
    transform: scaleY(0.85);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    max-width: calc(100vw - 2rem);
    z-index: 50;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .contact { grid-template-columns: minmax(0, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-values { grid-template-columns: minmax(0, 1fr); }
  .why-grid { grid-template-columns: minmax(0, 1fr); }
  .why-item--wide { grid-column: span 1; }
  .about-box { grid-template-columns: minmax(0, 1fr); }
  .service-grid { grid-template-columns: minmax(0, 1fr); }
  .erfolgsfaktoren-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .grid-3,
  .grid-2 { grid-template-columns: minmax(0, 1fr); }
  .about-values { grid-template-columns: minmax(0, 1fr); }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "area" "links";
    justify-items: start;
  }

  .footer-links { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .page { padding: 0 1rem 2.5rem; }

  .nav { padding: 0.4rem 1rem; }
  .logo-img { height: 64px; }

  .hero {
    padding: 3rem 1.4rem 3rem;
    margin: 0.5rem 0 0;
    min-height: 480px;
    border-radius: 14px;
  }
  .hero-overlay {
    background:
      rgba(5, 8, 22, 0.72),
      linear-gradient(to top, rgba(5, 8, 22, 0.7) 0%, transparent 60%);
  }

  .hero-title {
    font-size: clamp(1.65rem, 7vw, 2.3rem);
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    justify-content: center;
    padding: 0.85rem 1rem;
  }

  .section { padding: 2rem 0 1rem; }
  .section-title { font-size: 1.35rem; }
  .page-title { font-size: clamp(1.4rem, 6.5vw, 1.9rem); }
  .erfolgsfaktoren-grid { grid-template-columns: minmax(0, 1fr); }
  .service-hero-banner { padding: 2.5rem 1.5rem; }
  .service-hero-banner-icon { font-size: 3rem; }
  .cta-block { padding: 2rem 1.2rem; }
  .cta-block h2 { font-size: 1.25rem; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .cta-actions .btn-primary,
  .cta-actions .btn-ghost { justify-content: center; }

  .section-header { flex-direction: column; gap: 0.4rem; }

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

  .faq-item summary { font-size: 0.88rem; }

  .highlight-banner { font-size: 0.84rem; padding: 0.9rem 1rem; }

  .footer-inner { padding: 1.4rem 1rem; }

  .badge, .card-pill { white-space: normal; }
  .card { min-width: 0; word-break: break-word; }

  .field input,
  .field select,
  .field textarea { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-dot { animation: none; }
}
