:root {
  --c-bg: #252729;
  --c-surface: #2f3235;
  --c-brand: #00B8C8;
  --c-secondary: #5CCF8A;
  --c-accent: #E24666;
  --c-light: #E8ECEF;
  --c-highlight: #98DEDE;
  --c-text: #f5fbfb;
  --c-muted: #cfdddd;
  --radius-lg: 26px;
  --radius-md: 16px;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Outfit, Segoe UI, sans-serif;
  background:
    linear-gradient(124deg, rgba(152, 222, 222, 0.06), transparent 38%),
    linear-gradient(305deg, rgba(226, 70, 102, 0.08), transparent 35%),
    radial-gradient(circle at 50% 88%, rgba(92, 207, 138, 0.06), transparent 24%),
    var(--c-bg);
  color: var(--c-text);
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}

body::before {
  width: 420px;
  height: 420px;
  right: -150px;
  top: 70px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(152, 222, 222, 0.18), rgba(152, 222, 222, 0)),
    repeating-linear-gradient(
      0deg,
      rgba(152, 222, 222, 0.08),
      rgba(152, 222, 222, 0.08) 2px,
      transparent 2px,
      transparent 18px
    );
  border: 1px solid rgba(152, 222, 222, 0.2);
  transform: perspective(1000px) rotateX(67deg) rotateZ(16deg);
  opacity: 0.6;
}

body::after {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: -120px;
  border-radius: 999px;
  border: 1px solid rgba(226, 70, 102, 0.25);
  background:
    conic-gradient(
      from 180deg,
      rgba(226, 70, 102, 0.08),
      rgba(92, 207, 138, 0.1),
      rgba(226, 70, 102, 0.08)
    );
  transform: perspective(1100px) rotateX(72deg) rotateZ(-20deg);
  opacity: 0.6;
}

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

main {
  min-height: 70vh;
}

.container {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
}

.section {
  padding: 4.3rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(37, 39, 41, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(152, 222, 222, 0.2);
  will-change: transform;
  contain: layout style;
}

.nav-shell {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.mobile-nav-toggle {
  display: inline-flex;
  position: absolute;
  left: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(152, 222, 222, 0.35);
  background: rgba(152, 222, 222, 0.08);
  color: var(--c-text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 100;
}

.mobile-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: auto;
  height: 40px;
  max-width: 164px;
  object-fit: contain;
  display: block;
}

.brand-word {
  font-family: Sora, Outfit, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
}

.pricing-tool {
  display: grid;
  gap: 1.15rem;
}

.pricing-controls {
  display: grid;
  gap: 0.8rem;
}

.category-switch {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.category-tab {
  border: 2px solid rgba(152, 222, 222, 0.25);
  background: transparent;
  color: var(--c-muted);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  position: relative;
}

.category-tab:hover {
  border-color: rgba(152, 222, 222, 0.55);
  background: rgba(152, 222, 222, 0.05);
  color: var(--c-text);
  transform: translateY(-2px);
}

.category-tab.is-active {
  color: #fff;
  border-color: #00B8C8;
  background: linear-gradient(135deg, rgba(0, 184, 200, 0.15), rgba(0, 184, 200, 0.08));
  box-shadow: 0 4px 12px rgba(0, 184, 200, 0.2);
  font-weight: 700;
  transform: translateY(-2px);
}

.pricing-controls label,
.pdf-form label {
  font-size: 0.92rem;
  color: var(--c-muted);
  display: grid;
  gap: 0.35rem;
}

.input,
.select,
.textarea {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #444;
  background: rgba(37, 39, 41, 0.56);
  color: var(--c-text);
  padding: 12px;
  font: inherit;
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: #00B8C8;
  box-shadow: 0 0 0 2px rgba(0, 184, 200, 0.25);
}

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

.addon-list {
  display: grid;
  gap: 0.5rem;
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border: 1px solid rgba(152, 222, 222, 0.2);
  border-radius: 12px;
  padding: 0.5rem 0.7rem;
  background: rgba(152, 222, 222, 0.04);
}

.addon-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--c-text);
}

.total-box {
  border: 1px solid rgba(92, 207, 138, 0.45);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  background: linear-gradient(140deg, rgba(92, 207, 138, 0.12), rgba(92, 207, 138, 0));
}

.total-box p {
  margin: 0;
  color: var(--c-muted);
}

.total-box strong {
  color: var(--c-secondary);
  font-size: 1.45rem;
}

.pdf-form {
  display: grid;
  gap: 1rem;
  margin-top: 0.9rem;
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.status-text {
  color: var(--c-muted);
  min-height: 1.2rem;
  margin: 0.3rem 0 0;
}

.btn-primary {
  background: #E24666;
  border-color: #E24666;
  color: #fff;
}

.btn-primary:hover {
  background: #E24666;
  border-color: #E24666;
}

.btn-ghost {
  background: rgba(0, 184, 200, 0.12);
  border-color: #00B8C8;
  color: #c4f0f5;
}

.btn-ghost:hover {
  background: rgba(0, 184, 200, 0.2);
}

.desktop-nav {
  display: none !important;
}

.mobile-nav {
  display: grid;
  gap: 0.35rem;
  padding: 0.7rem 1rem 1rem;
  border-top: 1px solid rgba(152, 222, 222, 0.18);
  background: rgba(37, 39, 41, 0.97);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--c-muted);
  padding: 0.55rem 0.7rem;
  font-size: 0.95rem;
  transition: all 0.15s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--c-text);
  border-color: rgba(152, 222, 222, 0.34);
  background: rgba(152, 222, 222, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
}

.hero-grid::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: 38%;
  top: -26px;
  border-radius: 38% 62% 46% 54% / 50% 42% 58% 50%;
  background: radial-gradient(circle, rgba(152, 222, 222, 0.16), rgba(152, 222, 222, 0));
  filter: blur(4px);
  pointer-events: none;
}

.hero-grid::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  left: 34%;
  bottom: -30px;
  border-radius: 50%;
  border: 1px solid rgba(92, 207, 138, 0.18);
  transform: perspective(700px) rotateX(72deg) rotateZ(-18deg);
  pointer-events: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-brand);
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  font-family: Sora, Outfit, sans-serif;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0.4rem 0 0.7rem;
}

.hero-subline {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(226, 70, 102, 0.45);
  background: rgba(226, 70, 102, 0.12);
  padding: 0.45rem 0.9rem;
}

.hero-copy p {
  color: var(--c-muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease;
  will-change: transform;
}

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

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(152, 222, 222, 0.28);
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 22px;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  border: 1px solid rgba(92, 207, 138, 0.22);
  transform: rotate(18deg) translateZ(0);
  pointer-events: none;
}

.hero-media img {
  transform: scale(1.01);
}

.hero-media::after,
.page-image-card::after,
.content-card::after,
.service-card::after,
.testimonial-card::after,
.shop-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.05), transparent 32%),
    radial-gradient(circle at top right, rgba(152, 222, 222, 0.12), transparent 35%);
  pointer-events: none;
}

.hero-media,
.page-image-card,
.content-card,
.service-card,
.testimonial-card,
.shop-card {
  position: relative;
}

.hero-media img {
  width: 100%;
  display: block;
}

.hero-badge {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(37, 39, 41, 0.72);
  border: 1px solid rgba(92, 207, 138, 0.56);
  color: var(--c-secondary);
  font-size: 0.84rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  margin: 0 0 0.65rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c-brand), var(--c-accent), var(--c-secondary));
}

.section-text {
  color: var(--c-muted);
  max-width: 65ch;
}

.areas-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.areas-grid::before {
  content: '';
  grid-column: 1 / -1;
  height: 0;
}

.area-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(152, 222, 222, 0.24);
}

.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.area-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(37, 39, 41, 0.05), rgba(37, 39, 41, 0.93));
  transform: translateY(30%);
  transition: transform 0.35s ease;
}

.area-id {
  display: inline-flex;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(37, 39, 41, 0.8);
  border: 1px solid rgba(152, 222, 222, 0.46);
  color: #c8eff5;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.area-overlay p {
  color: var(--c-muted);
}

.area-card:hover img {
  transform: scale(1.06);
  filter: contrast(1.06) saturate(1.08);
}

.area-card:hover .area-overlay {
  transform: translateY(0);
}

.area-card:nth-child(2n) {
  transform: translateY(10px);
}

.area-card:nth-child(2n)::before {
  content: '';
  position: absolute;
  inset: 14px auto auto 14px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(92, 207, 138, 0.28);
  pointer-events: none;
}

.area-card:nth-child(3n) .area-overlay {
  background: linear-gradient(180deg, rgba(37, 39, 41, 0.03), rgba(37, 39, 41, 0.95)),
    radial-gradient(circle at top right, rgba(92, 207, 138, 0.12), transparent 32%);
}

.services-grid,
.testimonials-grid,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.service-card,
.testimonial-card,
.shop-card {
  background: linear-gradient(165deg, rgba(152, 222, 222, 0.12), rgba(255, 255, 255, 0));
  border: 1px solid rgba(152, 222, 222, 0.24);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.service-card,
.testimonial-card,
.shop-card,
.content-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  contain: layout style paint;
}

.service-card:hover,
.testimonial-card:hover,
.shop-card:hover,
.content-card:hover {
  transform: translateY(-6px);
}

.service-id {
  color: var(--c-secondary);
  font-weight: 700;
}

.service-card ul,
.feature-list {
  color: var(--c-muted);
  padding-left: 1.1rem;
}

.service-card li::marker,
.feature-list li::marker {
  color: var(--c-brand);
}

.stars {
  color: var(--c-brand);
  font-weight: 600;
}

.meta span {
  color: var(--c-muted);
}

.page-shell .narrow,
.narrow {
  width: min(100% - 2rem, 860px);
  margin: 0 auto;
}

.page-hero-grid {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.page-image-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(152, 222, 222, 0.24);
  box-shadow: var(--shadow);
}

.page-image-card img {
  width: 100%;
  display: block;
}

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

.content-card {
  background: linear-gradient(165deg, rgba(152, 222, 222, 0.1), rgba(255, 255, 255, 0));
  border: 1px solid rgba(152, 222, 222, 0.2);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.content-card h2 {
  margin-top: 0;
}

.process-list {
  color: var(--c-muted);
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.process-list li::marker {
  color: var(--c-brand);
}

.page-shell p,
.legal p {
  color: var(--c-muted);
}

.price {
  color: var(--c-secondary);
  font-size: 1.2rem;
  font-weight: 700;
}

.note {
  color: var(--c-muted);
}

.pricing-section {
  padding-top: 0.4rem;
}

.pricing-section.alt-bg {
  background: linear-gradient(180deg, rgba(152, 222, 222, 0.05), rgba(37, 39, 41, 0));
}

.pricing-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}

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

.package-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

.pricing-card {
  background: linear-gradient(160deg, rgba(152, 222, 222, 0.12), rgba(255, 255, 255, 0));
  border: 1px solid rgba(152, 222, 222, 0.25);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  contain: layout style paint;
}

.pricing-card:hover {
  border-color: rgba(152, 222, 222, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.pricing-card h3 {
  margin: 0.1rem 0 0.2rem;
  color: var(--c-secondary);
  font-size: 1.6rem;
}

.pricing-card .feature-list {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  flex: 1;
  color: var(--c-muted);
  font-size: 0.93rem;
  line-height: 1.5;
}

.pricing-card .feature-list li {
  margin-bottom: 0.4rem;
}

.pricing-card .btn {
  margin-top: auto;
  margin-right: -0.3rem;
  margin-left: -0.3rem;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.package-name {
  margin: 0;
  font-size: 1.1rem;
  color: var(--c-text);
}

.package-badge {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid rgba(0, 184, 200, 0.45);
  color: #c4f0f5;
  background: rgba(0, 184, 200, 0.12);
}

.package-description {
  color: var(--c-muted);
  margin: 0;
  font-size: 0.93rem;
  font-weight: 500;
}

.is-hidden {
  display: none;
}

.pricing-card.is-selected {
  border-color: rgba(152, 222, 222, 0.7);
  box-shadow: 0 0 0 1px rgba(152, 222, 222, 0.22) inset, var(--shadow);
}

.tier {
  display: inline-flex;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(92, 207, 138, 0.4);
  background: rgba(37, 39, 41, 0.48);
  color: #c2f0d5;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.shared-note {
  border-style: dashed;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 0 0.85rem;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.55rem 0.45rem;
  border-bottom: 1px solid rgba(152, 222, 222, 0.2);
  color: var(--c-muted);
}

.price-table th {
  color: var(--c-text);
  font-weight: 700;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(152, 222, 222, 0.18);
  padding: 2rem 0;
  color: var(--c-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .areas-grid,
  .content-grid,
  .services-grid,
  .testimonials-grid,
  .pricing-grid,
  .shop-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-switch {
    flex-direction: column;
  }

  .brand-logo {
    height: 34px;
  }

  .pdf-grid {
    grid-template-columns: 1fr;
  }

  .area-overlay {
    transform: translateY(0);
  }
}

/* ─── Monatliche Addons ─── */
.addon-monthly-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.42rem;
  border-radius: 999px;
  background: rgba(0, 184, 200, 0.14);
  border: 1px solid rgba(0, 184, 200, 0.38);
  color: var(--c-brand);
  white-space: nowrap;
}

.total-row {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.total-row + .total-row {
  margin-top: 0.3rem;
}

.monthly-amount {
  color: var(--c-brand);
  font-size: 1.15rem;
  font-weight: 700;
}
