:root {
  --bg: #09111f;
  --bg-elevated: #0f1729;
  --surface: rgba(15, 23, 41, 0.82);
  --surface-strong: #121b2f;
  --surface-soft: rgba(255, 255, 255, 0.04);
  --card: rgba(14, 21, 37, 0.88);
  --card-2: rgba(18, 28, 47, 0.92);
  --text: #f4f7fb;
  --muted: rgba(226, 232, 240, 0.74);
  --muted-strong: rgba(226, 232, 240, 0.88);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(103, 232, 249, 0.25);
  --accent: #4cc9f0;
  --accent-strong: #38bdf8;
  --accent-soft: rgba(76, 201, 240, 0.16);
  --success: #8bd3ff;
  --shadow: 0 30px 80px rgba(2, 8, 23, 0.42);
  --shadow-soft: 0 20px 50px rgba(2, 8, 23, 0.28);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 28px;
  --space-6: 40px;
  --space-7: 56px;
  --space-8: 72px;
  --space-9: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(76, 201, 240, 0.07), transparent 22%),
    linear-gradient(180deg, #09111f 0%, #0a1120 48%, #070d18 100%);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--text);
  color: #08111d;
}

.skip-link:focus {
  left: 12px;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  filter: blur(24px);
}

.site-shell::before {
  top: -120px;
  right: -120px;
  background: rgba(76, 201, 240, 0.08);
}

.site-shell::after {
  bottom: -160px;
  left: -120px;
  background: rgba(96, 165, 250, 0.08);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 13, 24, 0.72);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.site-header.is-open {
  border-bottom-color: rgba(76, 201, 240, 0.16);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(76, 201, 240, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(2, 8, 23, 0.22);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark--logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.brand-copy span {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-strong), #54d7f5);
  color: #08111d;
  box-shadow: 0 16px 36px rgba(56, 189, 248, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(56, 189, 248, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(148, 163, 184, 0.16);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: rgba(76, 201, 240, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.14);
}

.btn-icon {
  width: 48px;
  min-width: 48px;
  padding: 0;
  border-radius: 50%;
}

.burger {
  display: inline-flex;
}

.burger svg {
  width: 18px;
  height: 18px;
}

.mobile-panel {
  display: none;
  padding: 0 0 18px;
}

.mobile-panel.open {
  display: grid;
}

.mobile-panel-inner {
  display: grid;
  gap: 10px;
  padding-top: 10px;
}

.mobile-link {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
}

main {
  display: block;
}

section,
.page-section {
  padding: var(--space-8) 0;
}

.hero {
  padding-top: clamp(52px, 8vw, 96px);
  padding-bottom: clamp(52px, 9vw, 112px);
}

.hero-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(76, 201, 240, 0.08);
  color: #d7f4fc;
  font-size: 13px;
  font-weight: 700;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(76, 201, 240, 0.12);
}

h1,
.display {
  margin: 18px 0 18px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.lead,
.section-intro p,
.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  max-width: 62ch;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}

.trust-box {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.trust-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.trust-box span {
  color: var(--muted);
  font-size: 15px;
}

.floating-visual {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(9, 17, 31, 0.7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.floating-visual::before {
  content: "";
  position: absolute;
  inset: auto -60px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(76, 201, 240, 0.11);
  filter: blur(20px);
}

.floating-visual::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.visual-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 201, 240, 0.2), rgba(76, 201, 240, 0));
  filter: blur(10px);
}

.visual-orb.one {
  width: 220px;
  height: 220px;
  top: -30px;
  left: -40px;
}

.visual-orb.two {
  width: 180px;
  height: 180px;
  bottom: 60px;
  right: -30px;
}

.floating-card {
  position: absolute;
  width: min(84%, 360px);
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 41, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.floating-card.booking {
  top: 46px;
  left: 28px;
  transform: rotate(-7deg);
}

.floating-card.flyer {
  top: 190px;
  right: 20px;
  transform: rotate(6deg);
}

.floating-card.social {
  bottom: 26px;
  left: 68px;
  transform: rotate(-3deg);
}

.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.mock-dots {
  display: inline-flex;
  gap: 6px;
}

.mock-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.mock-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-screen,
.mini-flyer,
.mini-social {
  display: grid;
  gap: 12px;
}

.mini-screen-panel,
.mini-flyer-panel,
.mini-social-panel {
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.mini-title {
  font-size: 18px;
  font-weight: 700;
}

.mini-copy {
  font-size: 13px;
  color: var(--muted);
}

.mini-lines {
  display: grid;
  gap: 8px;
}

.mini-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.14);
}

.mini-line.lg {
  width: 92%;
}

.mini-line.md {
  width: 72%;
}

.mini-line.sm {
  width: 44%;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-tile {
  min-height: 74px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.section-intro {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.section-kicker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.grid-3,
.grid-4,
.detail-grid,
.price-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-soft);
}

.card p,
.card li,
.card span {
  color: var(--muted);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border: 1px solid rgba(76, 201, 240, 0.16);
  color: var(--accent);
}

.list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.list li + li {
  margin-top: 10px;
}

.split-layout {
  display: grid;
  gap: 20px;
}

.panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.panel.dark {
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.92), rgba(11, 18, 31, 0.84));
}

.stats-row {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 24px;
}

.page-hero {
  padding-top: 72px;
  padding-bottom: 36px;
}

.page-lead {
  max-width: 72ch;
}

.detail-section {
  display: grid;
  gap: 18px;
}

.detail-header {
  display: grid;
  gap: 10px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: var(--muted-strong);
  font-size: 13px;
}

.tag.active {
  background: rgba(76, 201, 240, 0.12);
  border-color: rgba(76, 201, 240, 0.26);
  color: var(--text);
}

.example-note,
.price-note,
.contact-note,
.status-box {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
}

.examples-stack {
  display: grid;
  gap: 22px;
}

.example-showcase {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-soft);
}

.example-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.meta-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(76, 201, 240, 0.08);
  border: 1px solid rgba(76, 201, 240, 0.18);
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.showcase-layout {
  display: grid;
  gap: 20px;
  align-items: center;
}

.browser-mockup,
.phone-mockup,
.poster-mockup {
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(11, 18, 31, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.browser-top,
.poster-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.browser-body,
.poster-body {
  padding: 20px;
  display: grid;
  gap: 16px;
}

.mock-hero {
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(76, 201, 240, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.mock-hero strong,
.mock-price strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.mock-subtext {
  color: var(--muted);
  font-size: 14px;
}

.mock-columns {
  display: grid;
  gap: 12px;
}

.mock-module,
.mock-price,
.mock-contact,
.social-preview {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.social-stack {
  display: grid;
  gap: 14px;
}

.social-preview {
  min-height: 172px;
  background:
    radial-gradient(circle at top left, rgba(76, 201, 240, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.social-preview.story {
  aspect-ratio: 9 / 16;
}

.social-preview.post {
  aspect-ratio: 1 / 1;
}

.social-label {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(76, 201, 240, 0.2);
  background:
    radial-gradient(circle at top right, rgba(76, 201, 240, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.price-card.featured::after {
  content: "Empfohlen";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(76, 201, 240, 0.12);
  border: 1px solid rgba(76, 201, 240, 0.18);
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 10px;
}

.price-value {
  margin: 16px 0 4px;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-caption {
  color: var(--muted);
  font-size: 14px;
}

.request-layout {
  display: grid;
  gap: 20px;
  align-items: start;
}

.request-card,
.contact-side {
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.fields {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-label {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(7, 13, 24, 0.58);
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(76, 201, 240, 0.4);
  box-shadow: 0 0 0 4px rgba(76, 201, 240, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(226, 232, 240, 0.42);
}

.helper {
  color: var(--muted);
  font-size: 13px;
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.message-preview {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(6, 11, 21, 0.64);
}

.message-preview pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--muted-strong);
  font-family: inherit;
  line-height: 1.6;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.contact-link strong {
  display: block;
  margin-bottom: 4px;
}

.contact-link span {
  color: var(--muted);
  font-size: 14px;
}

.cta-banner {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(76, 201, 240, 0.16);
  background:
    radial-gradient(circle at top right, rgba(76, 201, 240, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.03);
}

.site-footer {
  padding: 32px 0 44px;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.footer-grid {
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-link {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.footer-link:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 760px) {
  .container {
    width: min(calc(100% - 56px), var(--container));
  }

  .nav-links {
    display: flex;
  }

  .burger {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  }

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

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

  .split-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }

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

  .detail-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .showcase-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .request-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }

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

  .field.span-2 {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .cta-banner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 1040px) {
  .grid-4,
  .price-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .example-showcase.reverse .showcase-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  }

  .example-showcase.reverse .showcase-copy {
    order: 2;
  }

  .example-showcase.reverse .showcase-visual {
    order: 1;
  }
}

@media (max-width: 759px) {
  .nav-actions .btn-primary {
    display: none;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy span {
    font-size: 11px;
  }

  .floating-visual {
    min-height: 520px;
  }

  .floating-card.booking {
    left: 18px;
  }

  .floating-card.flyer {
    right: 12px;
  }

  .floating-card.social {
    left: 24px;
    bottom: 18px;
  }
}

/* Advisor Section */
.advisor-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.14);
  background:
    radial-gradient(circle at top right, rgba(76, 201, 240, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.business-grid {
  display: grid;
  gap: 14px;
}

.business-card {
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 18px;
  text-align: left;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.business-card:hover {
  transform: translateY(-2px);
  border-color: rgba(76, 201, 240, 0.24);
  box-shadow: 0 18px 36px rgba(2, 8, 23, 0.22);
}

.business-card.is-active {
  border-color: rgba(76, 201, 240, 0.3);
  background:
    radial-gradient(circle at top right, rgba(76, 201, 240, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 42px rgba(2, 8, 23, 0.28);
}

.business-card-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.business-card-copy {
  color: var(--muted);
  font-size: 14px;
}

.advisor-recommendation {
  margin-top: 22px;
}

.advisor-recommendation.is-hidden {
  display: none;
}

.recommendation-layout {
  display: grid;
  gap: 18px;
}

.package-card,
.selection-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.package-card {
  background:
    radial-gradient(circle at top right, rgba(76, 201, 240, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-soft);
}

.premium-package {
  margin-top: 20px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(76, 201, 240, 0.16);
  background: rgba(8, 15, 29, 0.54);
}

.premium-label {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(76, 201, 240, 0.12);
  border: 1px solid rgba(76, 201, 240, 0.18);
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-package strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.advisor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.advisor-status {
  margin-top: 16px;
}

.service-grid {
  display: grid;
  gap: 12px;
}

.service-choice {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  text-align: left;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-weight: 650;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.service-choice:hover {
  transform: translateY(-1px);
  border-color: rgba(76, 201, 240, 0.2);
}

.service-choice.is-active {
  background: rgba(76, 201, 240, 0.12);
  border-color: rgba(76, 201, 240, 0.26);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-choice.featured {
  position: relative;
  padding-top: 20px;
  border-color: rgba(76, 201, 240, 0.22);
  background:
    radial-gradient(circle at top right, rgba(76, 201, 240, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.04);
}

.service-choice.featured::after {
  content: "Beste Empfehlung";
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(76, 201, 240, 0.12);
  border: 1px solid rgba(76, 201, 240, 0.18);
  color: var(--text);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selection-summary {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(7, 13, 24, 0.48);
}

.selection-summary strong {
  display: block;
  margin-bottom: 8px;
}

.selection-summary p {
  margin: 0;
  color: var(--muted);
}

.choice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.choice-tag {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
}

@media (min-width: 760px) {
  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommendation-layout {
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  }

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

@media (min-width: 1040px) {
  .business-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Bright Hamburg Studio Refresh */
:root {
  --bg: #07111f;
  --bg-elevated: #0b1220;
  --surface: rgba(8, 15, 31, 0.78);
  --surface-strong: #111c2e;
  --surface-soft: rgba(255, 255, 255, 0.04);
  --card: rgba(255, 255, 255, 0.055);
  --card-2: rgba(17, 28, 46, 0.92);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --muted-strong: #e2e8f0;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(56, 189, 248, 0.24);
  --accent: #38bdf8;
  --accent-strong: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.12);
  --success: #0ea5e9;
  --shadow: 0 26px 64px rgba(3, 7, 18, 0.34);
  --shadow-soft: 0 18px 42px rgba(3, 7, 18, 0.28);
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.14), transparent 28%),
    radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.08), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b1220 45%, #102a43 100%);
  color: var(--text);
}

.skip-link {
  background: rgba(8, 15, 31, 0.95);
  color: #f8fafc;
  box-shadow: 0 12px 28px rgba(3, 7, 18, 0.32);
}

.site-shell::before,
.site-shell::after {
  filter: blur(48px);
}

.site-shell::before {
  top: -80px;
  right: -70px;
  background: rgba(56, 189, 248, 0.12);
}

.site-shell::after {
  bottom: -120px;
  left: -80px;
  background: rgba(14, 165, 233, 0.08);
}

.site-header {
  background: rgba(8, 15, 31, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 44px rgba(3, 7, 18, 0.24);
  backdrop-filter: blur(20px);
}

.site-header.is-open {
  border-bottom-color: rgba(56, 189, 248, 0.24);
}

.nav {
  min-height: 86px;
}

.brand {
  gap: 14px;
  align-items: center;
}

.brand-mark {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(56, 189, 248, 0.08)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 42px rgba(3, 7, 18, 0.2);
}

.brand-mark--logo img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
  border-radius: 14px;
}

.brand-copy {
  gap: 4px;
  min-width: 0;
  justify-content: center;
}

.brand-copy strong {
  color: #f8fafc;
  font-size: 16px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: #9cb0c7;
  display: block;
  max-width: 230px;
  font-size: 12px;
  line-height: 1.3;
}

.nav-link {
  padding: 11px 16px;
  color: #cbd5e1;
}

.nav-link:hover,
.nav-link.active {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.22), rgba(14, 165, 233, 0.14));
  color: #f8fafc;
}

.btn {
  min-height: 50px;
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #ffffff;
  border-color: rgba(56, 189, 248, 0.24);
  box-shadow: 0 14px 32px rgba(14, 165, 233, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
  box-shadow: 0 18px 36px rgba(14, 165, 233, 0.28);
}

.btn-secondary,
.btn-ghost,
.mobile-link,
.footer-link {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  backdrop-filter: blur(18px);
}

.btn-secondary:hover,
.btn-ghost:hover,
.mobile-link:hover,
.footer-link:hover {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.22);
  color: #f8fafc;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(56, 189, 248, 0.16), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(14, 165, 233, 0.12), transparent 24%),
    linear-gradient(135deg, #07111f 0%, #0b1220 45%, #102a43 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.08), transparent 38%);
  pointer-events: none;
}

.hero > .container,
.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-section {
  position: relative;
}

.page-section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
}

.trust-box,
.card,
.panel,
.stat,
.example-note,
.price-note,
.contact-note,
.status-box,
.example-showcase,
.browser-mockup,
.phone-mockup,
.poster-mockup,
.social-preview,
.mock-module,
.mock-price,
.mock-contact,
.request-card,
.contact-side,
.contact-link,
.message-preview,
.cta-banner,
.advisor-panel,
.business-card,
.package-card,
.selection-card,
.premium-package,
.selection-summary,
.service-choice,
.mini-screen-panel,
.mini-flyer-panel,
.mini-social-panel,
.floating-card,
.floating-visual {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(3, 7, 18, 0.28);
  backdrop-filter: blur(18px);
}

.floating-visual {
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 28%),
    rgba(17, 28, 46, 0.78);
}

.panel.dark,
.browser-mockup,
.phone-mockup,
.poster-mockup,
.floating-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    #111c2e;
}

.browser-top,
.poster-top,
.mock-top {
  background: rgba(255, 255, 255, 0.04);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.mock-dots span {
  background: rgba(148, 163, 184, 0.32);
}

.card:hover,
.business-card:hover,
.service-choice:hover,
.contact-link:hover,
.footer-link:hover,
.mobile-link:hover,
.floating-card:hover {
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: 0 22px 54px rgba(3, 7, 18, 0.3);
}

.card p,
.card li,
.card span,
.list li,
.mock-subtext,
.mini-copy,
.price-caption,
.contact-link span,
.helper,
.field input::placeholder,
.field textarea::placeholder {
  color: #94a3b8;
}

.section-kicker,
.mock-label,
.eyebrow,
.tag.active,
.meta-pill,
.premium-label,
.price-card.featured::after {
  color: #f8fafc;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 189, 248, 0.18);
  box-shadow: 0 16px 34px rgba(3, 7, 18, 0.18);
}

.eyebrow-dot {
  background: #38bdf8;
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.1);
}

.card-icon,
.meta-pill,
.premium-label,
.price-card.featured::after {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(14, 165, 233, 0.08));
  border: 1px solid rgba(56, 189, 248, 0.18);
}

.tag {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.tag.active,
.business-card.is-active,
.service-choice.is-active,
.service-choice.featured,
.price-card.featured,
.premium-package,
.mock-hero,
.cta-banner,
.advisor-panel {
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 189, 248, 0.24);
}

.service-choice {
  color: #f8fafc;
}

.service-choice.featured::after {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #ffffff;
  border: none;
}

.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f8fafc;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(56, 189, 248, 0.44);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.message-preview {
  background: rgba(8, 15, 31, 0.54);
}

.message-preview pre,
.status-box,
.contact-note,
.example-note,
.price-note {
  color: #cbd5e1;
}

.social-label {
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

.floating-visual::after {
  border-color: rgba(255, 255, 255, 0.08);
}

.visual-orb {
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18), rgba(56, 189, 248, 0));
}

.mini-line {
  background: rgba(255, 255, 255, 0.08);
}

.mini-tile {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.footer-link {
  color: #cbd5e1;
}

@media (max-width: 759px) {
  .site-header {
    background: rgba(8, 15, 31, 0.9);
  }

  .nav {
    min-height: 74px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 16px;
  }

  .brand-mark--logo img {
    padding: 3px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy span {
    max-width: 144px;
    font-size: 10.5px;
    line-height: 1.2;
  }

  .mobile-panel {
    padding-bottom: 14px;
  }
}