/* ═══════════════════════════════════════════════
   HABERBOSCH.LEGAL – SECTION LAYOUTS
   All section-specific styles for pages.
   Base components live in design-system.css.
   ═══════════════════════════════════════════════ */

/* ═══════ GRADIENT MESH CANVAS ═══════ */
#gradientMesh { position:fixed; top:0; left:0; width:100%; height:100%; z-index:-1; pointer-events:none; }

/* ═══════ LOGO INTRO OVERLAY ═══════ */
#logoIntro { position:fixed; inset:0; z-index:10000; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:clamp(16px,4vw,40px); background:#08080a; transition:opacity 1.0s ease; }
#logoIntro.fade-out { opacity:0; pointer-events:none; }
#logoIntro.hidden { display:none; }
#introMark { width:clamp(120px,30vw,340px); height:auto; opacity:0; transition:opacity 1.0s ease; }
#introMark.visible { opacity:1; }
#introText { font-family:'Instrument Serif',serif; font-size:clamp(36px,11vw,192px); white-space:nowrap; letter-spacing:-0.01em; opacity:0; transition:opacity 1.0s ease; }
#introText.visible { opacity:1; }
#introText .dot { color:hsl(145,65%,52%); }
#introText .dc { display:inline-block; color:hsl(145,65%,52%); opacity:0.5; }

@media (max-width: 600px) {
  #logoIntro { justify-content:flex-start; padding-top:18vh; }
}

@media (prefers-reduced-motion: reduce) {
  #logoIntro { display:none !important; }
}

/* ═══════ GENERAL SECTION RESET ═══════ */
section {
  position: relative;
  z-index: 1;
  scroll-margin-top: 120px;
}

/* ═══════ HEADER (Custom Nav) ═══════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8,8,10,0.92);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  width: auto;
  display: block;
}

header .logo img { height: 48px; }
footer .logo img { height: 48px; }

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1px solid hsla(var(--accent-h), var(--accent-s), 52%, 0.35);
  transition: all 0.25s var(--ease);
}

nav a:hover {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  margin-left: 8px;
  border-color: var(--accent) !important;
}

.nav-cta:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

/* Header Cart Icon */
.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.header-cart:hover {
  color: var(--accent);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ═══════ INTRO (Hero + Rechtsgebiete) ═══════ */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 120px 24px 0;
  gap: 56px;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.intro-text {
  padding-top: 24px;
  position: sticky;
  top: 96px;
}

.intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.intro-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.intro h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}

.intro h1 .accent {
  font-style: italic;
  color: var(--accent-light);
}

.intro-sub {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.45s forwards;
}

.intro-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
  margin-bottom: 32px;
}

/* Qualifikationen als Tags */
.intro-quals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.7s forwards;
}

.intro-qual {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.intro-qual:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* 2x2 Grid of Rechtsgebiete */
.intro-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.35s forwards;
}

.intro-area {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  perspective: 800px;
  will-change: transform;
  transition: box-shadow 0.4s, border-color 0.4s;
  position: relative;
}

.intro-area:hover {
  border-color: hsla(var(--accent-h), var(--accent-s), 52%, 0.25);
  box-shadow: 0 20px 56px rgba(0,0,0,0.4), 0 0 40px var(--accent-glow);
}

.intro-area .tilt-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.intro-area:hover .tilt-shine {
  opacity: 1;
}

.intro-area-img {
  width: 100%;
  height: 120px;
  overflow: hidden;
  position: relative;
}

.intro-area-img canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.intro-area-img .area-fallback {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-area-img-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg-card), transparent);
  pointer-events: none;
}

.intro-area-body {
  padding: 14px 16px 16px;
  position: relative;
  z-index: 2;
}

.intro-area-num {
  font-family: 'Instrument Serif', serif;
  font-size: 11px;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 4px;
}

.intro-area h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 3px;
}

.intro-area-link {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s;
}

.intro-area:hover .intro-area-link {
  color: var(--accent-light);
}

.intro-area-arrow {
  transition: transform 0.3s var(--ease);
}

.intro-area:hover .intro-area-arrow {
  transform: translateX(3px);
}

/* ═══════ SERVICES / PRODUCTS ═══════ */
.services {
  padding: 0 24px 24px;
}

.services-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 36px;
}

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

.product-card {
  background: linear-gradient(170deg, var(--bg-card) 0%, var(--accent-glow) 100%);
  border: 1px solid hsla(var(--accent-h), var(--accent-s), 52%, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 26px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transform-style: preserve-3d;
  perspective: 800px;
  will-change: transform;
  transition: border-color 0.4s, box-shadow 0.4s, opacity 2.8s var(--ease), transform 2.8s var(--ease), filter 3.2s var(--ease);
}

.product-card:hover {
  border-color: hsla(var(--accent-h), var(--accent-s), 52%, 0.45);
  box-shadow: 0 4px 50px hsla(var(--accent-h), var(--accent-s), 52%, 0.12), 0 24px 64px rgba(0,0,0,0.3);
  filter: brightness(1.08);
}

.product-card .tilt-shine {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.06) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .tilt-shine {
  opacity: 1;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  z-index: -1;
  background: linear-gradient(135deg, hsla(var(--accent-h), var(--accent-s), 52%, 0.15), transparent 50%, hsla(var(--accent-h), var(--accent-s), 52%, 0.08));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.product-card:hover::before {
  opacity: 1;
}

.product-featured {
  border-color: hsla(var(--accent-h), var(--accent-s), 52%, 0.2);
  background: linear-gradient(170deg, var(--bg-card) 0%, var(--accent-glow) 100%);
}

.product-featured:hover {
  border-color: hsla(var(--accent-h), var(--accent-s), 52%, 0.45);
  box-shadow: 0 4px 50px hsla(var(--accent-h), var(--accent-s), 52%, 0.12), 0 24px 64px rgba(0,0,0,0.3);
}

.featured-glow {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.product-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.product-featured .product-label {
  color: var(--accent-text);
}

.product-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.product-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.product-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.product-features li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.product-price {
  font-family: 'Instrument Serif', serif;
  font-size: 34px;
  font-weight: 400;
}

.product-price-sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.product-featured .btn-book {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.product-featured .btn-book::after {
  background: var(--accent-light);
}

.product-featured .btn-book:hover {
  box-shadow: 0 8px 24px var(--accent-dim);
}

/* ═══════ SPEZIALPAKETE ═══════ */
.special-packages {
  margin-top: 0;
  padding-top: 0;
}

.special-header {
  margin-bottom: 24px;
}

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

.special-card {
  background: linear-gradient(170deg, var(--bg-card) 0%, var(--accent-glow) 100%);
  border: 1px solid hsla(var(--accent-h), var(--accent-s), 52%, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 20px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 800px;
  will-change: transform;
}

.special-card:hover {
  border-color: hsla(var(--accent-h), var(--accent-s), 52%, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.4), 0 0 40px var(--accent-glow);
  filter: brightness(1.08);
}

.special-card .tilt-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.special-card:hover .tilt-shine {
  opacity: 1;
}

.special-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

/* ═══════ CARD HEADER IMAGES ═══════ */
.product-card picture,
.special-card picture { display: contents; }

.product-card .card-img {
  display: block;
  width: calc(100% + 52px);
  max-width: none;
  height: 160px;
  object-fit: cover;
  margin: -32px -26px 20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  filter: brightness(0.55) saturate(0.85);
  transition: filter 0.4s var(--ease);
  position: relative;
  z-index: 1;
}
.product-card:hover .card-img {
  filter: brightness(0.75) saturate(1);
}

.special-card .card-img {
  display: block;
  width: calc(100% + 40px);
  max-width: none;
  height: 140px;
  object-fit: cover;
  margin: -24px -20px 16px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  filter: brightness(0.55) saturate(0.85);
  transition: filter 0.4s var(--ease);
}
.special-card:hover .card-img {
  filter: brightness(0.75) saturate(1);
}

.special-card h4 {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 6px;
}

.special-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}

.special-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease);
}

.special-card:hover .special-link {
  gap: 10px;
}

/* ═══════ PROCESS ═══════ */
.process {
  padding: 0 24px 24px;
}

.process-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.process-header {
  margin-bottom: 40px;
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.steps-track::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--border);
}

.steps-track::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--ease);
}

.steps-track.animated::after {
  transform: scaleX(1);
}

.step-item {
  position: relative;
  padding-right: 16px;
}

.step-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  color: var(--text-muted);
  transition: all 0.5s var(--ease);
}

.step-item h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
}

.step-item p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 200px;
}

.steps-track.animated .step-item:nth-child(1) .step-dot {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-dim);
  transition-delay: 0s;
}

.steps-track.animated .step-item:nth-child(2) .step-dot {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-dim);
  transition-delay: 0.3s;
}

.steps-track.animated .step-item:nth-child(3) .step-dot {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-dim);
  transition-delay: 0.6s;
}

.steps-track.animated .step-item:nth-child(4) .step-dot {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-dim);
  transition-delay: 0.9s;
}

/* ═══════ ABOUT ═══════ */
.about {
  padding: 0 24px 24px;
}

.about-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

.about-aside {
  position: sticky;
  top: 90px;
}

.about-photo-frame {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 70% center;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8,8,10,0.7));
  pointer-events: none;
}

.about-photo-frame::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.about-photo-frame:hover::after {
  opacity: 0.2;
}

.about-name {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 3px;
}

.about-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.quals {
  display: flex;
  flex-direction: column;
}

.qual-item {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s var(--ease);
}

.qual-item:hover {
  color: var(--accent-light);
}

.qual-item:last-child {
  border: none;
}

.qual-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.about-content h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Google Review Badge */
.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  margin: 20px 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.google-review-badge:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.google-g {
  flex-shrink: 0;
}

.google-review-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-review-top {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.google-review-rating {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.google-stars {
  font-size: 16px;
  color: #FBBC05;
  letter-spacing: 1px;
  line-height: 1;
}

.google-review-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .google-review-badge {
    padding: 10px 16px;
    gap: 10px;
  }
  .google-review-rating {
    font-size: 17px;
  }
}

.network-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.net-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.net-link:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: var(--accent-glow);
}

.net-link-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

/* ═══════ FAQ ═══════ */
.faq {
  padding: 0 24px 24px;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 36px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: transparent !important;
  border: none;
  padding: 16px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  outline: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}

.faq-q:hover,
.faq-q:focus,
.faq-q:active {
  color: var(--accent-light);
  background: transparent !important;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  font-size: 15px;
  color: var(--text-muted);
}

.faq-q:hover .faq-icon {
  border-color: var(--accent);
  color: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a.open {
  max-height: 200px;
}

.faq-a-inner {
  padding: 0 0 16px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ═══════ CTA ═══════ */
.final-cta {
  padding: 0 24px 24px;
  text-align: center;
  position: relative;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 12px;
  position: relative;
}

.final-cta p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
  position: relative;
}

/* ═══════ FOOTER LAYOUT ═══════ */
footer {
  border-top: 1px solid var(--border);
  padding: 44px 24px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 10px;
}

footer h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  margin-bottom: 7px;
}

footer ul a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

footer ul a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  max-width: 1120px;
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══════ RESPONSIVE – TABLET (max 1000px) ═══════ */
@media (max-width: 1000px) {
  .intro {
    grid-template-columns: 1fr;
    padding: 120px 24px 0;
    gap: 32px;
  }

  .intro-text {
    position: static;
    padding-top: 0;
  }

  .intro-areas {
    max-width: 100%;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

  .steps-track {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .steps-track::before,
  .steps-track::after {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-aside {
    position: static;
    max-width: 320px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════ RESPONSIVE – SMALL TABLET (max 768px) ═══════ */
@media (max-width: 768px) {
  .intro {
    padding: 110px 20px 0;
    gap: 24px;
  }

  .intro h1 {
    font-size: 32px;
  }

  .intro-sub {
    font-size: 14px;
  }

  .intro-areas {
    gap: 10px;
  }

  .intro-area-img {
    height: 100px;
  }

  .services { padding: 0 20px 20px; }
  .process { padding: 0 20px 20px; }
  .about { padding: 0 20px 20px; }
  .faq { padding: 0 20px 20px; }
  .final-cta { padding: 0 20px 20px; }
}

/* ═══════ RESPONSIVE – MOBILE (max 600px) ═══════ */
@media (max-width: 600px) {
  /* Header */
  .header-inner {
    padding: 10px 16px 6px;
  }

  header .logo img {
    height: 36px;
  }

  nav {
    gap: 2px;
  }

  nav a {
    font-size: 11px !important;
    padding: 5px 10px !important;
  }

  .nav-cta {
    padding: 5px 12px !important;
    font-size: 11px !important;
  }

  .header-cart svg {
    width: 18px;
    height: 18px;
  }

  /* INTRO – super compact */
  .intro {
    padding: 100px 16px 0;
    gap: 20px;
  }

  .intro-eyebrow {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .intro h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .intro-sub {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .intro-actions {
    margin-bottom: 16px;
  }

  .intro-actions .btn {
    padding: 11px 22px;
    font-size: 13px;
  }

  .intro-quals {
    gap: 6px;
  }

  .intro-qual {
    font-size: 10px;
    padding: 4px 9px;
  }

  /* Rechtsgebiete on mobile: compact cards with images */
  .intro-areas {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .intro-area-img {
    height: 80px;
  }

  .intro-area-img canvas {
    display: none;
  }

  .intro-area-img .area-fallback {
    display: block;
  }

  .intro-area-body {
    padding: 12px 14px;
  }

  .intro-area-num {
    font-size: 10px;
    margin-bottom: 2px;
  }

  .intro-area h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 2px;
  }

  .intro-area-link {
    font-size: 10px;
  }

  /* Services */
  .services {
    padding: 0 16px 16px;
  }

  .services-header {
    margin-bottom: 24px;
  }

  .products-grid {
    max-width: 100%;
    gap: 12px;
  }

  .product-card {
    padding: 24px 20px 20px;
  }

  .product-label {
    margin-bottom: 10px;
  }

  .product-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .product-desc {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .product-features {
    margin-bottom: 18px;
    gap: 6px;
  }

  .product-features li {
    font-size: 12px;
  }

  .product-divider {
    margin-bottom: 14px;
  }

  .product-price {
    font-size: 28px;
  }

  .btn-book {
    padding: 10px 18px;
    font-size: 12px;
  }

  /* Spezialpakete */
  .special-packages {
    margin-top: 0;
    padding-top: 0;
  }

  .special-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .special-card {
    padding: 16px 14px 14px;
  }

  .product-card .card-img {
    width: calc(100% + 40px);
    height: 120px;
    margin: -24px -20px 14px;
  }
  .special-card .card-img {
    width: calc(100% + 28px);
    height: 120px;
    margin: -16px -14px 12px;
  }

  .special-icon {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .special-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .special-card p {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .special-link {
    font-size: 11px;
  }

  /* Process */
  .process {
    padding: 0 16px 16px;
  }

  .process-header {
    margin-bottom: 28px;
  }

  .steps-track {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .steps-track::before,
  .steps-track::after {
    display: none;
  }

  .step-dot {
    width: 40px;
    height: 40px;
    font-size: 17px;
    margin-bottom: 10px;
  }

  .step-item h3 {
    font-size: 15px;
  }

  .step-item p {
    font-size: 11px;
  }

  /* About */
  .about {
    padding: 0 16px 16px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-aside {
    max-width: 100%;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    align-items: start;
  }

  .about-photo-frame {
    margin-bottom: 0;
    aspect-ratio: 1/1;
  }

  .about-name {
    font-size: 20px;
  }

  .about-role {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .qual-item {
    padding: 6px 0;
    font-size: 12px;
  }

  .about-content h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .about-content p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .network-links {
    gap: 6px;
    margin-top: 20px;
  }

  .net-link {
    padding: 7px 12px;
    font-size: 12px;
  }

  /* FAQ */
  .faq {
    padding: 0 16px 16px;
  }

  .faq-header {
    margin-bottom: 24px;
  }

  .faq-q {
    padding: 14px 0;
    font-size: 13px;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .faq-a-inner {
    font-size: 12px;
    padding-bottom: 12px;
  }

  /* CTA */
  .final-cta {
    padding: 0 16px 16px;
  }

  .final-cta h2 {
    font-size: 26px;
  }

  .final-cta p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  /* Footer */
  footer {
    padding: 32px 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand p {
    font-size: 12px;
  }

  footer h4 {
    font-size: 10px;
    margin-bottom: 10px;
  }

  footer li {
    margin-bottom: 6px;
  }

  footer ul a {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 11px;
    margin-top: 20px;
    padding-top: 12px;
  }
}

/* ═══════════════════════════════════════════
   PAKETE (Unterseiten: Erbrecht, Steuerrecht, Grenzgänger, Krypto)
   ═══════════════════════════════════════════ */

.pakete-hero {
  padding: 80px 24px 0;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pakete-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.pakete-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-text);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.pakete-hero .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pakete-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.pakete-hero p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}

.pakete-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-text);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.pakete-hero-link:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.pakete-hero-link .external-link-icon {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.pakete-hero-link:hover .external-link-icon {
  opacity: 1;
}

/* Packages grid */
.pakete-section {
  padding: 48px 24px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.paket-card {
  background: linear-gradient(170deg, var(--bg-card) 0%, var(--accent-glow) 100%);
  border: 1px solid hsla(var(--accent-h), var(--accent-s), 52%, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 26px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
  transform-style: preserve-3d;
  perspective: 800px;
  will-change: transform;
}

.paket-card:hover {
  border-color: hsla(var(--accent-h), var(--accent-s), 52%, 0.45);
  box-shadow: 0 4px 50px hsla(var(--accent-h), var(--accent-s), 52%, 0.12), 0 24px 64px rgba(0,0,0,0.3);
  filter: brightness(1.08);
}

.paket-card .tilt-shine { border-radius: var(--radius-lg); }

.paket-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.paket-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.paket-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.paket-includes {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.paket-includes li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.paket-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.paket-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.paket-price {
  font-family: 'Instrument Serif', serif;
  font-size: 34px;
}

.paket-price-sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

/* Highlight card */
.paket-card.highlight {
  border-color: hsla(var(--accent-h), var(--accent-s), 52%, 0.2);
  background: linear-gradient(170deg, var(--bg-card) 0%, var(--accent-glow) 100%);
}

.paket-card.highlight .paket-tag { color: var(--accent-text); }

.paket-card.highlight .btn-book {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.paket-card.highlight::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Wide package card (Allgemeine Beratung) */
.paket-card-wide {
  grid-column: 1 / -1;
  padding: 28px 32px !important;
}

.paket-card-wide-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.paket-card-wide-text {
  flex: 1;
}

.paket-card-wide-text .paket-desc {
  margin-bottom: 0;
}

.paket-card-wide-action {
  flex-shrink: 0;
}

/* Pakete responsive */
@media (max-width: 1000px) {
  .pakete-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .pakete-hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .pakete-hero { padding: 68px 16px 0; }
  .pakete-hero h1 { font-size: 26px; }
  .pakete-hero p { font-size: 13px; }
  .pakete-section { padding: 32px 16px 56px; }
  .pakete-grid { max-width: 100%; }
  .paket-card { padding: 24px 20px 20px; }
  .paket-card h3 { font-size: 22px; }
  .paket-price { font-size: 28px; }
  .paket-card-wide { padding: 24px 20px !important; }
  .paket-card-wide-body { flex-direction: column; text-align: center; gap: 20px; }
}
