/* ---------- Base ---------- */
:root {
  --bg: #0b1220;
  --text: #0f172a;
  --muted: #475569;
  --white: #ffffff;

  --card: #ffffff;
  --cardBorder: rgba(15, 23, 42, 0.12);

  --accent: #11a7ff; /* ähnlich blau wie im Screenshot */
  --accentSoft: rgba(17, 167, 255, 0.12);

  --shadow: 0 14px 40px rgba(2, 6, 23, 0.18);
  --radius: 16px;

  --container: 1100px;
}

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

html {
  scroll-behavior: smooth;
  /* Sprungpunkt-Offset für sticky header wäre hier möglich */
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: #eef2f7;
  line-height: 1.5;
}

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 240px;

  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 23, 0.15),
      rgba(2, 6, 23, 0.30)
    ),
    url("assets/banner.webp");

  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: #0b1220;

  display: flex;
  align-items: center;
}



.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    1200px 500px at 50% 20%,
    rgba(17, 167, 255, 0.16),
    transparent 60%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 28px 0;
}

.brand {
  text-decoration: none;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__text {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.brand__logo {
  height: 56px;
  width: auto;
  display: block;
}

.hero__tagline {
  margin: 10px 0 0;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  opacity: 0.95;
}

/* ---------- Intro ---------- */
.intro {
  padding: 46px 0 22px;
}

.intro h1 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
}

.intro p {
  margin: 0;
  color: var(--muted);
  max-width: 75ch;
}

.pill-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--white);
  border: 1px solid var(--cardBorder);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: #0b3a55;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.06);
}

/* ---------- Cards ---------- */
.cards {
  padding: 22px 0 8px;
}

.cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  display: block;
  background: var(--card);
  border: 1px solid var(--cardBorder);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -60px -60px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: var(--accentSoft);
  transform: rotate(10deg);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(17, 167, 255, 0.35);
}

.card__icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(17, 167, 255, 0.12);
  border: 1px solid rgba(17, 167, 255, 0.28);
  font-size: 20px;
  margin-bottom: 12px;
}

.card h2 {
  position: relative;
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card__cta {
  position: relative;
  display: inline-block;
  margin-top: 14px;
  color: #0b3a55;
  font-weight: 700;
  font-size: 13px;
}

/* ---------- Sections ---------- */
.section {
  padding: 54px 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.section h2 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 850;
}

.section p {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 80ch;
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: #334155;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.info-box {
  background: var(--white);
  border: 1px solid var(--cardBorder);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
}

.info-box h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.callout {
  background: rgba(17, 167, 255, 0.12);
  border: 1px solid rgba(17, 167, 255, 0.28);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: #0b3a55;
}

.pricing-note h3 {
  margin: 0 0 8px;
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  align-items: start;
}

.form {
  background: var(--white);
  border: 1px solid var(--cardBorder);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 650;
  color: #0f172a;
  font-size: 13px;
}

input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  outline: none;
  font: inherit;
  background: #f8fafc;
}

input:focus,
textarea:focus {
  border-color: rgba(17, 167, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(17, 167, 255, 0.15);
  background: var(--white);
}

button {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #19b2ff, #0a8fd8);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(17, 167, 255, 0.22);
}

button:hover {
  filter: brightness(1.03);
}

.contact-image {
  margin-top: 10px;
  max-width: 340px;
  user-select: none;
}

.contact-image svg {
  width: 100%;
  height: auto;
  display: block;
}


.form__hint {
  margin: 10px 0 0;
  font-size: 12px;
  color: #64748b;
}

/* ---------- Footer ---------- */
.footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.85);
  padding: 22px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .cards__grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 200px;
  }
  .hero__tagline {
    letter-spacing: 0.1em;
  }
}
