/* ═══════════════════════════════════════════════════════════════════
   ROTE.BIZ – Premium Corporate Stylesheet
   Dark/Premium Corporate Design · 2024/2025
   ═══════════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --green:          #3DB54A;
  --green-dark:     #2E9A3A;
  --blue:           #2B7BE5;
  --blue-dark:      #1D65CC;
  --green-alpha-15: rgba(61, 181, 74, .15);
  --green-alpha-25: rgba(61, 181, 74, .25);
  --green-alpha-40: rgba(61, 181, 74, .40);
  --blue-alpha-15:  rgba(43, 123, 229, .15);
  --blue-alpha-25:  rgba(43, 123, 229, .25);

  /* Dark palette */
  --bg-base:      #080808;
  --bg-surface:   #0f0f0f;
  --bg-elevated:  #141414;
  --bg-overlay:   #1a1a1a;
  --bg-hover:     #202020;

  /* Light palette */
  --white:        #ffffff;
  --off-white:    #f9fafb;
  --gray-50:      #f9fafb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-300:     #d1d5db;
  --gray-400:     #9ca3af;
  --gray-500:     #6b7280;
  --gray-600:     #4b5563;
  --gray-700:     #374151;
  --gray-800:     #1f2937;
  --gray-900:     #111827;

  /* Semantic */
  --text-primary:   #111827;
  --text-secondary: #4b5563;
  --text-muted:     #6b7280;
  --text-on-dark:   rgba(255, 255, 255, .87);
  --text-dim:       rgba(255, 255, 255, .5);
  --text-faint:     rgba(255, 255, 255, .35);
  --border-light:   rgba(255, 255, 255, .08);
  --border-medium:  rgba(255, 255, 255, .12);

  /* Status */
  --success:      #22c55e;
  --amber:        #f59e0b;

  /* Spacing */
  --section-py:   110px;
  --container-w:  1200px;
  --container-px: 28px;

  /* Shape */
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --radius-pill:  9999px;

  /* Shadow */
  --shadow-sm:    0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow:       0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.14);
  --shadow-xl:    0 24px 80px rgba(0,0,0,.22);
  --glow-green:   0 0 40px rgba(61,181,74,.25), 0 0 80px rgba(61,181,74,.1);
  --glow-blue:    0 0 40px rgba(43,123,229,.25), 0 0 80px rgba(43,123,229,.1);

  /* Motion */
  --ease:         cubic-bezier(.4, 0, .2, 1);
  --ease-out:     cubic-bezier(0, 0, .2, 1);
  --ease-spring:  cubic-bezier(.34, 1.56, .64, 1);
  --duration:     .25s;
  --duration-lg:  .45s;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ─── HTML & BODY ───────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── FOCUS ─────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.15;
}

/* ─── UTILITY ────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.section {
  padding: var(--section-py) 0;
}

.section-dark {
  background: var(--bg-surface);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.section-praxis {
  background: var(--gray-50);
  position: relative;
}

.section-about {
  background: var(--white);
}

.section-contact {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

/* ─── SECTION HEADER ─────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 72px;
}

.section-header h2 {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800;
  margin: 14px 0 18px;
  color: var(--gray-900);
}

.section-header-dark h2 {
  color: var(--white);
}

.section-header p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-header-dark p {
  color: var(--text-dim);
}

/* ─── SECTION TAG ────────────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(61, 181, 74, .08);
  color: var(--green);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(61, 181, 74, .2);
}

.section-tag-dark {
  background: rgba(61, 181, 74, .12);
  border-color: rgba(61, 181, 74, .3);
  color: #fca5a5;
}

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  font-family: var(--font);
  position: relative;
  overflow: hidden;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 15.5px;
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(61,181,74,.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, transparent 100%);
  transition: opacity var(--duration);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(61,181,74,.4), 0 2px 8px rgba(61,181,74,.2);
  color: var(--white);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .2);
  color: var(--white);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .75);
  background: transparent;
  flex-shrink: 0;
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, .4);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.btn-nav-termin {
  background: transparent;
  color: var(--green) !important;
  border: 1.5px solid var(--green);
  padding: 8px 18px;
  font-size: 14px;
}

.btn-nav-termin:hover {
  background: rgba(61,181,74,.08);
  color: var(--green-dark) !important;
  transform: translateY(-1px);
}

.btn-nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 9px 20px;
  font-size: 14px;
}

.btn-nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(61,181,74,.35);
}

.btn-full {
  width: 100%;
}

.btn-submit {
  padding: 16px 32px;
  font-size: 16px;
}

/* ─── NAVIGATION ─────────────────────────────────────────────────── */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.nav-header.scrolled {
  background: #ffffff;
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.nav-header.nav-light {
  background: rgba(255, 255, 255, .9);
  border-bottom-color: var(--gray-200);
}

.nav-header.nav-light.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

/* Logo */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.04em;
  display: none;
}

.logo-red { color: var(--green); }

.logo-dot {
  color: var(--blue);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--gray-600);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--duration), background var(--duration);
}

.nav-link:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

.nav-link.active {
  color: var(--green);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  transition: border-color var(--duration);
}

.burger:hover {
  border-color: var(--gray-400);
}

.burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all .3s var(--ease);
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 998;
  backdrop-filter: blur(4px);
}

.mobile-overlay.visible {
  display: block;
}

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-base);
  padding-top: 70px;
}

/* Grid texture */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Glow effects */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(61, 181, 74, .2);
  top: -100px;
  right: -100px;
  animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(61, 181, 74, .1);
  bottom: 0;
  left: -80px;
  animation: glowPulse 10s ease-in-out infinite reverse;
}

.hero-glow-3 {
  width: 300px;
  height: 300px;
  background: rgba(61, 181, 74, .12);
  top: 40%;
  left: 40%;
  animation: glowPulse 12s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.1); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 60px var(--container-px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .5);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-eyebrow-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

.hero-headline {
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 28px;
  color: var(--white);
}

.hero-headline-accent {
  background: linear-gradient(135deg, var(--green) 0%, #ff6b6b 50%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255, 255, 255, .6);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-br { display: block; }

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Hero stats */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat {
  text-align: center;
  padding: 14px 28px;
}

.hero-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.2;
  font-feature-settings: "frac" 0;
}

.hero-stat span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}

.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* Hero floating badges */
.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-badge-float {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  animation: badgeFloat 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.hero-badge-float svg {
  stroke: var(--green);
  flex-shrink: 0;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .3);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--duration);
  z-index: 2;
}

.hero-scroll-indicator:hover {
  color: rgba(255, 255, 255, .6);
}

.hero-scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid currentColor;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-wheel {
  width: 3px;
  height: 7px;
  background: currentColor;
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ─── TRUST BAR ──────────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.trust-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 6px 20px;
}

.trust-item svg {
  stroke: var(--green);
  flex-shrink: 0;
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--gray-200);
}

/* ─── SERVICES ───────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: border-color var(--duration) var(--ease), transform var(--duration-lg) var(--ease), box-shadow var(--duration-lg) var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-inner {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}

.service-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(61,181,74,.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--duration-lg);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(61, 181, 74, .35);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.1), 0 4px 12px rgba(61,181,74,.08);
}

.service-card:hover .service-card-glow {
  opacity: 1;
}

/* Icon area */
.service-icon-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(61, 181, 74, .07);
  border: 1px solid rgba(61, 181, 74, .15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--green);
}

.service-card:hover .service-icon {
  background: var(--green);
  border-color: var(--green);
}

.service-card:hover .service-icon svg {
  stroke: var(--white);
}

.service-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .06em;
  font-variant-numeric: tabular-nums;
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
}

.service-list li {
  font-size: 13px;
  color: var(--gray-600);
  padding-left: 18px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.service-card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: gap var(--duration);
}

.service-link:hover {
  gap: 10px;
}

/* ─── SOFTWARE ───────────────────────────────────────────────────── */
.software-bg-accent {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(61,181,74,.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

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

.sw-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease), transform var(--duration-lg) var(--ease);
}

.sw-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61,181,74,.5), transparent);
  opacity: 0;
  transition: opacity var(--duration-lg);
}

.sw-card:hover {
  border-color: rgba(61, 181, 74, .3);
  background: rgba(255, 255, 255, .05);
  transform: translateY(-3px);
}

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

.sw-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--green) 0%, transparent 100%);
  opacity: 0;
  border-radius: 0 0 0 var(--radius-lg);
  transition: opacity var(--duration);
}

.sw-card:hover .sw-card-accent {
  opacity: 1;
}

.sw-logo {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: var(--green-alpha-15);
  border: 1px solid var(--green-alpha-25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: .04em;
  transition: all var(--duration);
}

.sw-card:hover .sw-logo {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(61,181,74,.4);
}

.sw-content {
  flex: 1;
  min-width: 0;
}

.sw-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sw-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.sw-badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--green-alpha-15);
  color: #fca5a5;
  border: 1px solid var(--green-alpha-25);
}

.sw-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-bottom: 14px;
}

.sw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sw-tag {
  font-size: 11.5px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .5);
  border: 1px solid rgba(255, 255, 255, .08);
}

/* More software note */
.sw-more {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(61, 181, 74, .06);
  border: 1px solid rgba(61, 181, 74, .15);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, .55);
  flex-wrap: wrap;
}

.sw-more-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green-alpha-15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sw-more-icon svg { stroke: var(--green); }

.sw-more > div {
  flex: 1;
  min-width: 200px;
}

.sw-more strong {
  display: block;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 3px;
}

.sw-more span {
  font-size: 13.5px;
}

/* ─── PRAXIS ─────────────────────────────────────────────────────── */
.praxis-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.praxis-content .section-tag {
  margin-bottom: 16px;
}

.praxis-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.praxis-lead {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.praxis-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.praxis-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: border-color var(--duration), box-shadow var(--duration-lg), transform var(--duration-lg);
}

.praxis-feature:hover {
  border-color: rgba(61,181,74,.25);
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
  transform: translateX(4px);
}

.praxis-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(61,181,74,.07);
  border: 1px solid rgba(61,181,74,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.praxis-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
}

.praxis-feature-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 5px;
}

.praxis-feature-text p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

.praxis-cta {
  margin-top: 8px;
}

/* Praxis visual / mockup */
.praxis-visual {
  position: relative;
}

.praxis-mockup {
  position: relative;
}

.mockup-window {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.35), 0 8px 24px rgba(0,0,0,.2);
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-overlay);
}

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

.mdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mdot.red    { background: #ef4444; }
.mdot.yellow { background: #f59e0b; }
.mdot.green  { background: #22c55e; }

.mockup-title {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  font-weight: 500;
  margin-left: 8px;
}

.mockup-body {
  display: flex;
  height: 280px;
}

.mockup-sidebar {
  width: 130px;
  flex-shrink: 0;
  border-right: 1px solid var(--border-light);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.msb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: default;
  font-weight: 500;
  transition: all var(--duration);
}

.msb-item svg { stroke: currentColor; flex-shrink: 0; }

.msb-item.active {
  background: rgba(61,181,74,.12);
  color: #fca5a5;
}

.msb-item:not(.active):hover {
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.6);
}

.mockup-main {
  flex: 1;
  padding: 16px;
  overflow: hidden;
}

.mockup-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.mockup-metric {
  background: var(--bg-overlay);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  text-align: center;
}

.mm-val {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.02em;
}

.mm-val.green { color: var(--green); }

.mm-label {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.mockup-table {
  background: var(--bg-overlay);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.mt-row {
  display: grid;
  grid-template-columns: 1fr 60px 100px;
  align-items: center;
  padding: 9px 12px;
  font-size: 12px;
  border-bottom: 1px solid var(--border-light);
  color: rgba(255,255,255,.65);
}

.mt-row:last-child { border-bottom: none; }

.mt-head {
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.3);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.mt-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  text-align: center;
}

.mt-status.success {
  background: rgba(34,197,94,.12);
  color: var(--green);
}

.mt-status.active {
  background: rgba(61,181,74,.12);
  color: #f87171;
}

.mt-status.pending {
  background: rgba(245,158,11,.1);
  color: var(--amber);
}

/* Floating info cards */
.praxis-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 10px 18px 10px 12px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  animation: floatCard 3.5s ease-in-out infinite;
}

.praxis-float-1 {
  top: -18px;
  right: -16px;
  animation-delay: 0s;
}

.praxis-float-2 {
  bottom: -18px;
  left: -16px;
  animation-delay: 1.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.pfc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(61,181,74,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pfc-icon svg { stroke: var(--green); }

.pfc-icon-green { background: rgba(34,197,94,.1); }
.pfc-icon-green svg { stroke: var(--green); }

.pfc-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.pfc-text span {
  font-size: 11px;
  color: var(--text-muted);
}

/* ─── ABOUT ──────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--duration), transform var(--duration-lg), box-shadow var(--duration-lg);
}

.about-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-lg) var(--ease);
}

.about-card:hover {
  border-color: rgba(61,181,74,.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

.about-card:hover::after {
  transform: scaleX(1);
}

.about-card-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--green);
  opacity: .12;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.04em;
}

.about-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.about-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA Banner */
.about-cta-banner {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.about-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(61,181,74,.1), transparent 70%);
}

.about-cta-text {
  position: relative;
  z-index: 1;
}

.about-cta-text h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.about-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,.55);
}

.about-cta-banner .btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* ─── CONTACT ────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info-col .section-tag {
  margin-bottom: 16px;
}

.contact-info-col h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.contact-info-col > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: border-color var(--duration), box-shadow var(--duration-lg), transform var(--duration-lg);
}

.contact-detail-item:hover {
  border-color: rgba(61,181,74,.3);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transform: translateX(4px);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(61,181,74,.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon--green {
  background: rgba(61,181,74,.15);
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
}

.contact-detail-text .cdl {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-detail-text strong {
  font-size: 15px;
  color: var(--gray-900);
  font-weight: 600;
}

.contact-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}

.contact-guarantee svg {
  stroke: var(--green);
  flex-shrink: 0;
}

/* Contact form */
.contact-form-col {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: .01em;
}

.required {
  color: var(--green);
}

input, select, textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-900);
  outline: none;
  transition: border-color var(--duration), box-shadow var(--duration);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder, textarea::placeholder {
  color: var(--gray-400);
}

input:hover, select:hover, textarea:hover {
  border-color: var(--gray-300);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,181,74,.1);
}

input.error, select.error, textarea.error {
  border-color: var(--green);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-error {
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
  min-height: 16px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.25);
  color: #166534;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
}

.form-success.visible {
  display: flex;
}

.form-success svg { stroke: var(--green); flex-shrink: 0; }

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-privacy svg { flex-shrink: 0; stroke: var(--gray-400); margin-top: 2px; }

/* Honeypot spam protection */
.hp-field { display: none !important; visibility: hidden; }

/* ─── LEGAL PAGES (Impressum, Datenschutz) ───────────────────────── */
.legal-page {
  padding-top: 110px;
  padding-bottom: 80px;
  background: var(--white);
  min-height: 80vh;
}
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-100);
}
.legal-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 36px 0 12px;
}
.legal-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin: 24px 0 8px;
}
.legal-body p, .legal-body li {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-body ul, .legal-body ol { padding-left: 20px; margin-bottom: 16px; }
.legal-body a { color: var(--green); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-body strong { color: var(--gray-800); }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-base);
  color: rgba(255, 255, 255, .6);
  padding-top: 72px;
}

.footer-main {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-light);
}

.footer-logo .logo-red { color: var(--green); }
.logo-dot-footer { color: rgba(255,255,255,.8); }

.footer-brand .footer-logo {
  display: inline-flex;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.04em;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-contact-quick a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--duration);
}

.footer-contact-quick a:hover {
  color: var(--white);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color var(--duration);
  width: fit-content;
}

.footer-col a:hover {
  color: rgba(255,255,255,.85);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.25);
}

.footer-bottom-badges {
  display: flex;
  gap: 8px;
}

.footer-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-light);
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}

/* ─── SCROLL-TO-TOP ──────────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(61,181,74,.4);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--duration), transform var(--duration), background var(--duration), box-shadow var(--duration);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--green-dark);
  box-shadow: 0 8px 32px rgba(61,181,74,.5);
  transform: translateY(-2px);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}

.reveal-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .praxis-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .praxis-visual {
    order: -1;
  }

  .praxis-float-1 { top: -14px; right: 10px; }
  .praxis-float-2 { bottom: -14px; left: 10px; }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 900px) {
  :root {
    --section-py: 80px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --container-px: 20px;
  }

  /* Nav mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100dvh - 64px);
    background: #ffffff;
    padding: 12px 16px 24px;
    gap: 2px;
    z-index: 999;
    border-top: 1px solid var(--gray-200);
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    color: var(--gray-700);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: var(--radius);
    width: 100%;
  }

  .nav-link:hover {
    color: var(--gray-900);
    background: var(--gray-100);
  }

  .btn-nav-termin {
    width: 100%;
    justify-content: center;
    padding: 13px 16px;
    font-size: 15px;
    margin-top: 6px;
  }

  .btn-nav-cta {
    width: 100%;
    justify-content: center;
    padding: 13px 16px;
    font-size: 15px;
    margin-top: 6px;
  }

  .burger { display: flex; }

  /* Hero */
  .hero-headline { letter-spacing: -.03em; }
  .hero-stats { flex-direction: column; gap: 0; border-radius: var(--radius-lg); }
  .hero-stat { padding: 12px 32px; }
  .hero-stat-sep { width: 80%; height: 1px; background: var(--border-light); }
  .hero-br { display: none; }
  .hero-badges { gap: 8px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }

  /* Trust bar */
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trust-items { flex-direction: column; align-items: flex-start; gap: 6px; }
  .trust-sep { display: none; }
  .trust-item { padding: 4px 0; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-col { padding: 28px; }

  /* Footer */
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  /* Praxis badges */
  .praxis-float-1, .praxis-float-2 { display: none; }

  /* SW more */
  .sw-more { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom-badges { flex-wrap: wrap; justify-content: center; }
  .mockup-window { border-radius: var(--radius-lg); }
}

/* ─── PRINT ──────────────────────────────────────────────────────── */
@media print {
  .nav-header, .scroll-top, .hero-scroll-indicator { display: none; }
  .hero { min-height: auto; }
}
