@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/space-grotesk-var.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/inter-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy-950: #0d1b2a;
  --navy-800: #1b3a4b;
  --mint-500: #2ec4a9;
  --mint-300: #9be8d8;
  --mint-700: #197d6d;
  --off-white: #f2f7f5;
  --grey-600: #5b6a72;
  --grey-300: #cdd8d4;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--navy-950);
  background: #fff;
  line-height: 1.6;
  font-size: 17px;
}

h1, h2, h3 { font-family: 'Space Grotesk', system-ui, sans-serif; letter-spacing: -0.02em; line-height: 1.15; }

a { color: var(--mint-700); }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 1.25rem; }

/* Nav */
nav { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--navy-950); }
.brand strong { font-family: 'Space Grotesk'; font-size: 1.25rem; }
.brand strong span { color: var(--mint-700); }
.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  padding: 0.75rem 1.5rem; border-radius: 10px; text-align: center;
}
.btn-primary { background: var(--navy-950); color: #fff; }
.btn-mint { background: var(--mint-500); color: var(--navy-950); }
.btn-ghost { border: 1.5px solid var(--grey-300); color: var(--navy-800); }

/* Hero */
.hero { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center; padding: 3.5rem 0 4rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); margin: 0 0 1rem; }
.hero p.lead { font-size: 1.2rem; color: var(--grey-600); margin: 0 0 1.8rem; }
.hero .cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.phone { width: 100%; max-width: 300px; margin: 0 auto; display: block; }

.trust { background: var(--off-white); padding: 1rem 0; }
.trust .wrap { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; font-size: 0.95rem; color: var(--navy-800); font-weight: 500; }

/* Sections */
section.block { padding: 4rem 0; }
section.block h2 { font-size: 1.9rem; margin: 0 0 0.4rem; }
section.block p.sub { color: var(--grey-600); margin: 0 0 2.2rem; max-width: 620px; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.feature { background: var(--off-white); border-radius: 14px; padding: 1.5rem; }
.feature h3 { font-size: 1.1rem; margin: 0.7rem 0 0.4rem; }
.feature p { margin: 0; font-size: 0.95rem; color: var(--grey-600); }
.feature svg { width: 30px; height: 30px; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; counter-reset: step; }
.step { border: 1.5px solid var(--grey-300); border-radius: 14px; padding: 1.5rem; }
.step .num { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.6rem; color: var(--mint-700); }
.step h3 { font-size: 1.1rem; margin: 0.3rem 0 0.4rem; }
.step p { margin: 0; font-size: 0.95rem; color: var(--grey-600); }

/* Preise */
.prices { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; max-width: 780px; }
.price { border: 1.5px solid var(--grey-300); border-radius: 14px; padding: 1.8rem; }
.price.hi { border-color: var(--mint-500); border-width: 2px; }
.price .tag { font-size: 0.85rem; font-weight: 600; color: var(--mint-700); }
.price .amount { font-family: 'Space Grotesk'; font-size: 2.4rem; font-weight: 700; }
.price .amount small { font-size: 1rem; color: var(--grey-600); font-weight: 400; }
.price ul { padding-left: 1.1rem; margin: 0.8rem 0 0; color: var(--grey-600); font-size: 0.95rem; }
.fine { font-size: 0.85rem; color: var(--grey-600); margin-top: 1.2rem; }

/* ND-Block */
.nd { background: var(--navy-950); color: var(--off-white); }
.nd h2 { color: #fff; }
.nd p { color: #b3c8d6; max-width: 640px; }
.nd a { color: var(--mint-300); }

footer { padding: 2rem 0 2.5rem; border-top: 1px solid var(--grey-300); }
footer .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.9rem; color: var(--grey-600); }
footer a { color: var(--grey-600); }

/* Unterseiten */
main.page { padding: 2.5rem 0 4rem; max-width: 760px; }
main.page h1 { font-size: 2rem; }
main.page h2 { font-size: 1.25rem; margin-top: 2rem; }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding: 2rem 0 2.5rem; }
  .phone { max-width: 230px; }
}
