
:root {
  --radius: 0.75rem;
  --background: #e8edf3;
  --foreground: #0f1b3d;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --primary: #0f1b3d;
  --primary-foreground: #ffffff;
  --secondary: #f5f7fb;
  --secondary-foreground: #0f1b3d;
  --muted: #eef1f6;
  --muted-foreground: #4a5a7a;
  --accent: #3b6fa0;
  --accent-foreground: #ffffff;
  --navy: #0f1b3d;
  --navy-deep: #1e3a5f;
  --brand-blue: #3b6fa0;
  --border: rgba(15, 27, 61, 0.10);
  --font-sans: "Epilogue", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Urbanist", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); letter-spacing: -0.025em; margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(232, 237, 243, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
header .container { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.logo img { height: 3.5rem; width: auto; }
nav.desktop { display: none; gap: 2rem; }
nav.desktop a { font-size: 0.875rem; font-weight: 600; color: rgba(15,27,61,0.8); transition: color .2s; }
nav.desktop a:hover, nav.desktop a.active { color: var(--brand-blue); }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary); color: var(--primary-foreground);
  border-radius: 9999px; padding: .75rem 1.5rem;
  font-size: 0.875rem; font-weight: 700;
  box-shadow: 0 10px 25px -8px rgba(15,27,61,0.35);
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--brand-blue); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid rgba(15,27,61,0.1); background: #fff;
  color: var(--foreground); border-radius: 1rem; padding: 1rem 2rem;
  font-size: 1rem; font-weight: 700; transition: border-color .2s;
}
.btn-secondary:hover { border-color: rgba(59,111,160,0.5); }
#menu-toggle { display: block; background: none; border: 1px solid var(--border); border-radius: .5rem; padding: .5rem; cursor: pointer; }
#mobile-nav { display: none; border-top: 1px solid var(--border); background: var(--background); }
#mobile-nav a { display: block; padding: .75rem 1rem; font-weight: 600; border-radius: .5rem; }
#mobile-nav a:hover { background: var(--surface-2); color: var(--brand-blue); }
#mobile-nav .btn-primary { display: block; text-align: center; margin-top: .75rem; }
@media (min-width: 1024px) {
  nav.desktop { display: flex; }
  #menu-toggle { display: none; }
  #mobile-nav { display: none !important; }
}
main { flex: 1; }
.page { display: flex; flex-direction: column; min-height: 100vh; }
.section { padding: 5rem 0; }
.section-white { background: #fff; }
.section-navy { background: var(--primary); color: #fff; }
.label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--brand-blue); margin-bottom: 1rem; display: block;
}
.hero { position: relative; overflow: hidden; text-align: center; padding: 6rem 0; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(15,27,61,0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(15,27,61,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at top, black 40%, transparent 80%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid var(--border); background: #fff;
  border-radius: 9999px; padding: .375rem 1rem;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--brand-blue);
}
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-blue); }
.hero h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.05; margin-top: 1.5rem; }
.hero h1 span { color: var(--brand-blue); font-style: italic; }
.hero p { font-size: 1.125rem; max-width: 42rem; margin: 1.5rem auto 0; color: var(--navy-deep); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
.hero-note { margin-top: 1.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .audience-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .audience-grid { grid-template-columns: repeat(5, 1fr); } }
.audience-card {
  background: var(--secondary); border-radius: 1.5rem; padding: 2rem;
  transition: transform .3s, background .3s, color .3s;
}
.audience-card:hover { transform: translateY(-4px); background: var(--primary); color: #fff; }
.audience-card:hover .audience-icon { background: var(--brand-blue); color: #fff; }
.audience-icon { width: 3rem; height: 3rem; border-radius: 1rem; background: #fff; color: var(--brand-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: .3s; }
.audience-card h3 { font-size: 1.125rem; font-weight: 800; }
.audience-card p { font-size: 0.875rem; margin-top: .5rem; opacity: 0.7; }
.services-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--secondary); border-radius: 2.5rem; padding: 2.5rem;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -12px rgba(15,27,61,0.3); }
.service-card .icon { color: var(--brand-blue); }
.service-card h3 { font-size: 1.75rem; font-weight: 800; margin-top: 1.5rem; }
.service-card .price { font-weight: 700; font-style: italic; color: var(--navy-deep); margin-top: .5rem; }
.service-card .note { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); margin-top: .25rem; }
.service-card p { flex: 1; margin-top: 1.5rem; color: var(--navy-deep); line-height: 1.65; }
.service-card .btn-outline {
  display: block; text-align: center; margin-top: 2rem;
  border: 2px solid var(--primary); border-radius: 1rem; padding: 1rem;
  font-weight: 800; transition: .2s;
}
.service-card .btn-outline:hover { background: var(--primary); color: #fff; }
.why-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-grid h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; }
.why-grid h2 span { color: var(--brand-blue); }
.promise-box { background: #fff; border: 1px solid var(--border); border-radius: 3rem; padding: 2.5rem; box-shadow: 0 20px 40px -12px rgba(15,27,61,0.3); }
.promise-box ul { list-style: none; padding: 0; margin: 0; }
.promise-box li { display: flex; gap: 1rem; margin-top: 1.25rem; }
.check { width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--brand-blue); color: #fff; font-size: 0.7rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.stats { display: flex; gap: 2rem; align-items: center; margin-top: 2.5rem; }
.stats .stat { font-size: 2.5rem; font-weight: 800; color: var(--primary); font-family: var(--font-display); line-height: 1; }
.stats .label2 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); margin-top: .5rem; }
.stats .divider { width: 1px; height: 3rem; background: var(--border); }
.steps-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(6, 1fr); } }
.step-num { font-size: 4rem; font-weight: 800; color: rgba(255,255,255,0.1); font-family: var(--font-display); line-height: 1; margin-bottom: .75rem; }
.step h5 { font-size: 1.125rem; font-weight: 800; }
.step p { font-size: 0.875rem; margin-top: .5rem; opacity: 0.6; }
.teaser-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .teaser-grid { grid-template-columns: auto 2fr; } }
.avatar-lg { width: 8rem; height: 8rem; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; font-family: var(--font-display); box-shadow: 0 20px 40px -12px rgba(15,27,61,0.3); }
.placeholder-box { border: 2px dashed rgba(59,111,160,0.3); background: var(--secondary); border-radius: 2.5rem; padding: 3rem; text-align: center; }
.hosting-box { background: #fff; border-radius: 3rem; padding: 2.5rem; box-shadow: 0 20px 40px -12px rgba(15,27,61,0.3); }
.hosting-icon { width: 4rem; height: 4rem; border-radius: 1rem; background: var(--secondary); font-size: 1.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.badge { display: inline-flex; gap: .75rem; background: var(--secondary); border-radius: 9999px; padding: .5rem 1.25rem; font-size: 0.875rem; font-weight: 700; color: var(--brand-blue); }
.cta-banner { position: relative; overflow: hidden; border-radius: 3rem; background: var(--brand-blue); color: #fff; padding: 4rem; text-align: center; box-shadow: 0 20px 40px -12px rgba(15,27,61,0.3); }
.cta-banner::before { content: ""; position: absolute; top: -8rem; right: -8rem; width: 24rem; height: 24rem; border-radius: 50%; background: rgba(255,255,255,0.05); }
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; }
.cta-banner p { max-width: 42rem; margin: 1.5rem auto 0; font-size: 1.125rem; opacity: 0.9; font-style: italic; }
.cta-banner .btn-cta { margin-top: 2.5rem; display: inline-flex; gap: .75rem; background: var(--primary); color: #fff; border-radius: 1rem; padding: 1.25rem 2.5rem; font-size: 1.125rem; font-weight: 800; box-shadow: 0 15px 35px -10px rgba(0,0,0,0.3); transition: transform .2s; }
.cta-banner .btn-cta:hover { transform: scale(1.05); }
.page-header { position: relative; overflow: hidden; padding: 5rem 0 3rem; }
.page-header::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(15,27,61,0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(15,27,61,0.05) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse at top, black 40%, transparent 80%); pointer-events: none; }
.page-header h1 { font-size: clamp(2.25rem, 4vw, 3.75rem); font-weight: 800; line-height: 1.1; position: relative; z-index: 1; }
.page-header h1 span { color: var(--brand-blue); font-style: italic; }
.page-header p { position: relative; z-index: 1; max-width: 42rem; font-size: 1.125rem; color: var(--navy-deep); margin-top: 1.5rem; }
.leistung-card { display: grid; gap: 2.5rem; border: 1px solid var(--border); background: var(--secondary); border-radius: 2.5rem; padding: 2rem; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
@media (min-width: 768px) { .leistung-card { grid-template-columns: 1.4fr 1fr; padding: 3rem; } }
.leistung-tag { font-size: 3rem; font-weight: 800; color: rgba(15,27,61,0.1); font-family: var(--font-display); line-height: 1; }
.price-box { background: #fff; border-radius: 1.5rem; padding: 2rem; box-shadow: 0 20px 40px -12px rgba(15,27,61,0.3); display: flex; flex-direction: column; justify-content: space-between; }
.price-box .price { font-size: 2.5rem; font-weight: 800; color: var(--primary); font-family: var(--font-display); line-height: 1; }
.price-box .suffix { font-size: 0.875rem; font-weight: 700; font-style: italic; color: var(--navy-deep); margin-top: .25rem; }
.price-box .note { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 1rem; line-height: 1.5; }
.browser-frame { border: 1px solid rgba(15,27,61,0.1); border-radius: 1rem; background: var(--secondary); box-shadow: 0 20px 40px -12px rgba(15,27,61,0.3); overflow: hidden; height: min(70vh, 640px); display: flex; flex-direction: column; }
.browser-header { display: flex; align-items: center; gap: .5rem; border-bottom: 1px solid rgba(15,27,61,0.1); background: #fff; padding: .75rem 1rem; }
.browser-header span { width: .75rem; height: .75rem; border-radius: 50%; }
.browser-header .red { background: #f87171; }
.browser-header .yellow { background: #facc15; }
.browser-header .green { background: #4ade80; }
.browser-header .url { margin-left: 1rem; font-size: 0.75rem; color: var(--navy-deep); opacity: 0.6; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.browser-body { position: relative; overflow-y: auto; flex: 1; background: #fff; }
.browser-body img { width: 100%; display: block; }
.browser-overlay { position: absolute; inset: 0; pointer-events: none; }
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.4fr; } }
.contact-card { background: #fff; border-radius: 3rem; padding: 2rem; box-shadow: 0 20px 40px -12px rgba(15,27,61,0.3); }
.contact-row { display: block; border: 1px solid var(--border); background: var(--secondary); border-radius: 1rem; padding: 1rem 1.5rem; margin-bottom: 1rem; transition: border-color .2s; }
.contact-row:hover { border-color: var(--brand-blue); }
.contact-row .label { margin-bottom: .25rem; }
.contact-row .value { font-weight: 500; color: var(--primary); }
.contact-highlight { background: var(--primary); color: #fff; border-radius: 1.5rem; padding: 2rem; }
.contact-highlight h3 { font-size: 1.25rem; }
.contact-highlight p { font-size: 0.875rem; margin-top: .75rem; opacity: 0.8; line-height: 1.6; }
form.card { background: var(--secondary); border: 1px solid var(--border); border-radius: 2rem; padding: 2rem; }
@media (min-width: 768px) { form.card { padding: 3rem; } }
form.card label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand-blue); margin-bottom: .5rem; }
form.card input, form.card textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 1rem;
  background: #fff; padding: .875rem 1rem; color: var(--navy-deep);
  font-family: inherit; font-size: 1rem; outline: none;
}
form.card input:focus, form.card textarea:focus { border-color: var(--brand-blue); }
form.card textarea { resize: vertical; }
form.card .form-group { margin-bottom: 1.25rem; }
form.card .hidden { display: none; }
form.card .status { padding: .875rem 1rem; border-radius: 1rem; font-size: 0.875rem; font-weight: 500; margin-top: 1rem; }
form.card .status.success { background: #f0fdf4; color: #15803d; }
form.card .status.error { background: #fef2f2; color: #b91c1c; }
footer { background: #fff; border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
footer .grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { footer .grid { grid-template-columns: 2fr 1fr 1fr; } }
footer p { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.6; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li + li { margin-top: .75rem; }
footer a { font-size: 0.875rem; font-weight: 500; color: rgba(15,27,61,0.7); transition: color .2s; }
footer a:hover { color: var(--brand-blue); }
footer .bottom { display: flex; flex-direction: column; gap: .75rem; justify-content: space-between; align-items: flex-start; border-top: 1px solid var(--border); margin-top: 3rem; padding-top: 2rem; font-size: 0.75rem; color: var(--muted-foreground); }
@media (min-width: 768px) { footer .bottom { flex-direction: row; align-items: center; } }
.text-center { text-align: center; }
.max-w-5xl { max-width: 64rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-14 { margin-bottom: 3.5rem; }
.pb-24 { padding-bottom: 6rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.rounded-t { border-top-left-radius: 3rem; border-top-right-radius: 3rem; }
@media (min-width: 768px) { .rounded-t { border-top-left-radius: 5rem; border-top-right-radius: 5rem; } }
.impressum { max-width: 48rem; margin: 0 auto; padding: 5rem 1.5rem; }
.impressum h1 { font-size: 2.5rem; font-weight: 600; }
.impressum h2 { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--foreground); margin-top: 2rem; }
.impressum p { color: var(--muted-foreground); font-size: 0.875rem; margin-top: .75rem; line-height: 1.6; }
.impressum a { color: var(--foreground); text-decoration: underline; }
.impressum a:hover { color: var(--primary); }
@media (max-width: 640px) {
  .hero { padding: 4rem 0; }
  .cta-banner { padding: 2.5rem; }
  .service-card, .leistung-card, .contact-card, form.card { border-radius: 1.5rem; padding: 1.5rem; }
  .promise-box, .hosting-box { border-radius: 1.5rem; padding: 1.5rem; }
  .audience-card { padding: 1.5rem; }
}
