/* ═══════════════════════════════════════════════════
   FORBIZZ-INSPIRED DESIGN — Safety Sicherheitsdienst
   Responsive · Premium · Modern Business Consulting
═══════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Dark palette */
  --dark:      #0C1120;
  --dark-2:    #131929;
  --dark-3:    #1A2235;
  --dark-4:    #212B40;

  /* Accent — orange/coral (Forbizz signature) */
  --accent:      #E8613C;
  --accent-dark: #CC4F2A;
  --accent-light: #F07A58;
  --accent-dim:  rgba(232,97,60,.1);
  --accent-glow: rgba(232,97,60,.22);

  /* Light palette */
  --white:    #ffffff;
  --light:    #F8F7F4;
  --cream:    #EEECE7;

  /* Text */
  --text-dark:        #0C1120;
  --text-body:        #5A6070;
  --text-muted:       #9197A8;
  --text-light:       #ffffff;
  --text-light-muted: rgba(255,255,255,.62);

  /* Lines */
  --line-dark:  rgba(255,255,255,.1);
  --line-light: rgba(0,0,0,.08);
  --line-mid:   rgba(0,0,0,.12);

  /* Status */
  --ok: #22c55e;

  /* Typography */
  --fs: 'Inter', system-ui, -apple-system, sans-serif;
  --fd: 'Instrument Serif', Georgia, 'Times New Roman', serif;

  /* Motion */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(0,.55,.45,1);
  --dur: .3s;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}
body {
  font-family: var(--fs);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a           { color: inherit; text-decoration: none; }
ul, ol      { list-style: none; }
img         { display: block; max-width: 100%; }
button, input, select, textarea { font-family: inherit; }
textarea    { resize: vertical; }

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ─── 2026: Noise Overlay ─── */
.noise-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035; /* Subtiles Rauschen */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  animation: noiseAnim 0.2s steps(2) infinite;
}
@keyframes noiseAnim {
  0% { transform: translate(0, 0); }
  100% { transform: translate(1%, 1%); }
}

/* ═══════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding-block: 1.2rem;
  transition:
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    padding var(--dur) var(--ease);
}
#site-header.sticky {
  background: rgba(12,17,32,.96);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 2px 40px rgba(0,0,0,.4);
  padding-block: .75rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-light);
  flex-shrink: 0;
  position: relative;
  z-index: 1001;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), transform .2s var(--ease);
}
.nav-logo:hover .nav-logo-icon {
  background: var(--accent-dark);
  transform: scale(1.06);
}
/* Real logo image */
.nav-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.nav-logo:hover .nav-logo-img {
  opacity: .8;
}
.footer-brand .nav-logo-img {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: .6;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-light-muted);
  transition: color var(--dur) var(--ease);
  padding-block: .25rem;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--dur) var(--ease);
}
.nav-links a:hover,
.nav-links a.active          { color: var(--text-light); }
.nav-links a:hover::after,
.nav-links a.active::after   { width: 100%; }
.nav-links a:focus-visible   { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* Nav Right */
.nav-end {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}
.nav-cta-phone {
  display: flex;
  align-items: center;
  gap: .42rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-light-muted);
  padding: .42rem .95rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav-cta-phone:hover { color: var(--accent); border-color: var(--accent); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transform: translate(var(--mx, 0px), var(--my, 0px));
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform .25s cubic-bezier(0.1, 0.8, 0.4, 1),
    box-shadow var(--dur) var(--ease);
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  letter-spacing: -.01em;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover   { transform: translate(var(--mx, 0px), var(--my, 0px)) translateY(-2px); }
.btn:active  { transform: translate(var(--mx, 0px), var(--my, 0px)) scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Primary — accent orange */
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 8px 28px rgba(232,97,60,.35);
}

/* Accent (same as primary, alias for sections on light bg) */
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 8px 28px rgba(232,97,60,.3);
}

/* Outline on dark */
.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255,255,255,.25);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.4);
}

/* Ghost on light */
.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--line-mid);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm   { padding: .48rem 1.05rem; font-size: .78rem; border-radius: 8px; }
.btn-lg   { padding: .9rem 1.9rem; font-size: .93rem; }
.btn-full { width: 100%; justify-content: center; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: 1.5px solid var(--line-dark);
  border-radius: 9px;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease);
  /* Muss immer über dem Menü-Overlay liegen */
  position: relative;
  z-index: 1001;
}
.nav-toggle:hover { border-color: var(--accent); }
.nav-toggle span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-block: calc(5.5rem + 64px) 5rem;
}

/* Background texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 10% 55%, rgba(232,97,60,.07) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 88% 20%, rgba(232,97,60,.05) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
/* Decorative line removed at user request */
.hero .container { position: relative; z-index: 1; }

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

/* Hero left */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(232,97,60,.3);
  background: rgba(232,97,60,.08);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent-light);
  align-self: flex-start;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok);
  animation: livepulse 2.2s ease infinite;
  flex-shrink: 0;
}
@keyframes livepulse {
  0%   { box-shadow: 0 0 0 0   rgba(34,197,94,.45); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0   rgba(34,197,94,0); }
}

/* Hero title */
.hero-title {
  font-family: var(--fd);
  font-size: clamp(2.9rem, 6.2vw, 5.4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--text-light);
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(.88rem, 1.55vw, 1.05rem);
  max-width: 46ch;
  line-height: 1.82;
  color: var(--text-light-muted);
}

.hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

/* Hero trust bar */
.hero-trust {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(19,25,41,.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  align-self: flex-start;
}
.htrust-avail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  gap: .08rem;
  flex-shrink: 0;
  text-align: center;
}
.htrust-num {
  font-family: var(--fd);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--text-light);
}
.htrust-sfx {
  font-size: .75em;
  color: var(--accent);
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
}
.htrust-label {
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-top: .15rem;
}
.htrust-sep {
  width: 1px;
  align-self: stretch;
  background: var(--line-dark);
  flex-shrink: 0;
}
.htrust-certs {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: .9rem 1.2rem;
}
.htrust-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .7rem;
  font-weight: 500;
  color: var(--text-light-muted);
  letter-spacing: .02em;
  white-space: nowrap;
}
.htrust-badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Legacy hstat (kept for potential reuse) */
.hstat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.15rem .7rem;
  gap: .12rem;
  text-align: center;
}
.hstat-n {
  font-family: var(--fd);
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--text-light);
}
.hstat-text { font-size: clamp(1.3rem, 2vw, 1.7rem); letter-spacing: .04em; }
.hstat-u {
  font-size: .68rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hstat-k {
  font-size: .6rem;
  color: var(--text-light-muted);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: .08rem;
}
.hstat-div {
  width: 1px;
  background: var(--line-dark);
  align-self: stretch;
  flex-shrink: 0;
}

/* ─── Hero Visual ─── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hv-wrap {
  position: relative;
  width: 420px;
  height: 440px;
}

/* Background shape – asymmetric blob */
.hv-bg {
  position: absolute;
  inset: 30px;
  border-radius: 62% 38% 46% 54% / 55% 45% 55% 45%;
  background: linear-gradient(145deg, rgba(232,97,60,.12), rgba(232,97,60,.03));
  border: 1px solid rgba(232,97,60,.15);
  animation: blob-morph 9s ease-in-out infinite;
}
@keyframes blob-morph {
  0%,100% { border-radius: 62% 38% 46% 54% / 55% 45% 55% 45%; }
  33%     { border-radius: 38% 62% 60% 40% / 40% 60% 40% 60%; }
  66%     { border-radius: 50% 50% 38% 62% / 60% 40% 60% 40%; }
}

/* Central icon */
.hv-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.hv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,97,60,.2);
  animation: ring-pulse 3.5s ease-in-out infinite;
}
.hv-ring-1 { width: 110px; height: 110px; animation-delay: 0s; }
.hv-ring-2 { width: 160px; height: 160px; animation-delay: .7s; opacity: .5; }
@keyframes ring-pulse {
  0%,100% { transform: scale(1); opacity: .3; }
  50%     { transform: scale(1.08); opacity: .6; }
}
.hv-icon {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid rgba(232,97,60,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 0 0 12px rgba(232,97,60,.06), 0 0 50px rgba(232,97,60,.14);
  animation: icon-glow 4s ease-in-out infinite;
  z-index: 2;
}
@keyframes icon-glow {
  0%,100% { box-shadow: 0 0 0 12px rgba(232,97,60,.06), 0 0 50px rgba(232,97,60,.14); }
  50%     { box-shadow: 0 0 0 20px rgba(232,97,60,.1), 0 0 70px rgba(232,97,60,.22); }
}

/* Orbit dots */
.hv-orbit-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px 3px rgba(232,97,60,.55);
  margin: -4px;
  pointer-events: none;
}
.hv-od1 { animation: orbit-1 8s linear infinite; }
.hv-od2 { animation: orbit-2 12s linear infinite; }
@keyframes orbit-1 {
  from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}
@keyframes orbit-2 {
  from { transform: rotate(60deg) translateX(170px) rotate(-60deg); }
  to   { transform: rotate(420deg) translateX(170px) rotate(-420deg); }
}

/* Floating cards */
.hv-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .9rem;
  background: rgba(19,25,41,.92);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  color: var(--text-light);
  z-index: 4;
  animation: card-float 5s ease-in-out infinite;
}
.hv-card strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}
.hv-card span {
  display: block;
  font-size: .62rem;
  color: var(--text-light-muted);
  margin-top: .05rem;
}
.hv-card svg { flex-shrink: 0; }
@keyframes card-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* Card positions */
.hv-card-1 {
  top: 12%; left: 0;
  animation-delay: 0s;
}
.hv-card-1 .hv-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 8px rgba(34,197,94,.6);
  flex-shrink: 0;
  animation: livepulse 2.2s ease infinite;
}
.hv-card-2 {
  top: 10%; right: 0;
  animation-delay: 1.2s;
  color: var(--accent);
}
.hv-card-2 svg { color: var(--accent); }
.hv-card-3 {
  bottom: 22%; right: -5%;
  animation-delay: 2.5s;
}
.hv-card-3 svg { color: var(--accent); }
.hv-card-4 {
  bottom: 10%; left: 5%;
  animation-delay: 1.8s;
}
.hv-card-4 svg { color: var(--accent-light); }

/* ═══════════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════════ */
.trust-strip {
  background: var(--light);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding-block: 1rem;
  overflow: hidden;
}
.trust-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: .5rem;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-body);
  padding-inline: 1.1rem;
  white-space: nowrap;
}
.trust-list li svg { color: var(--accent); flex-shrink: 0; }
.trust-list .tsep {
  width: 1px; height: 12px;
  background: var(--line-mid);
  flex-shrink: 0;
  padding: 0;
}

/* ═══════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════ */
.section       { padding-block: clamp(5rem, 9vw, 8rem); }
.sec-light     { background: var(--white); }
.sec-cream     { background: var(--cream); }
.sec-dark      { background: var(--dark); color: var(--text-light); }
.sec-contact   { background: var(--dark-2); color: var(--text-light); }

/* Section header */
.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head-center { text-align: center; }
.sec-head-center .sec-sub { margin-inline: auto; }
.sec-head-center .eyebrow { justify-content: center; }

/* Eyebrow label */
.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .85rem;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
  border-radius: 2px;
}
.eyebrow-light { color: var(--accent-light); }
.eyebrow-light::before { background: var(--accent-light); }

/* Headings */
h2 {
  font-family: var(--fd);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: inherit;
}
h2 em { font-style: italic; color: var(--accent); }

.sec-sub {
  margin-top: 1rem;
  max-width: 52ch;
  font-size: .93rem;
  color: var(--text-body);
  line-height: 1.82;
}
.sec-sub-light { color: var(--text-light-muted); }

/* ═══════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--line-light);
  border-radius: 18px;
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    transform .25s var(--ease);
  cursor: default;
}
/* Accent top bar */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
  z-index: 2;
}
/* 2026 Spotlight Glow */
.svc-card::after {
  content: '';
  position: absolute;
  top: var(--y, -200px);
  left: var(--x, -200px);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(232,97,60,.12) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 0;
}
.svc-card:hover::after { opacity: 1; }
.svc-card > * { position: relative; z-index: 1; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  border-color: rgba(232,97,60,.2);
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
  transform: translateY(-4px);
}

.svc-num {
  font-size: .62rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .12em;
}

.svc-icon {
  width: 46px; height: 46px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,97,60,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-block: .2rem;
  transition: background var(--dur) var(--ease);
}
.svc-card:hover .svc-icon { background: rgba(232,97,60,.16); }
.svc-icon svg { width: 22px; height: 22px; }

.svc-card h3 {
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--text-dark);
  line-height: 1.35;
}
.svc-card p {
  font-size: .82rem;
  color: var(--text-body);
  line-height: 1.78;
  flex: 1;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .28rem;
  margin-top: auto;
  padding-top: .45rem;
}
.svc-tags span {
  font-size: .62rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--light);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: .18rem .6rem;
  letter-spacing: .03em;
}

/* ═══════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════ */
.process-section {
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232,97,60,.05) 0%, transparent 70%);
  pointer-events: none;
}
.process-section .container { position: relative; z-index: 1; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
/* Connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 3.1rem;
  left: calc(12.5% + 2rem);
  right: calc(12.5% + 2rem);
  height: 1px;
  background: linear-gradient(90deg,
    rgba(232,97,60,.3),
    rgba(232,97,60,.15) 50%,
    rgba(232,97,60,.3)
  );
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  padding: 1.5rem 1rem;
}

.proc-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid rgba(232,97,60,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.process-step:hover .proc-num {
  background: rgba(232,97,60,.12);
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(232,97,60,.2);
}

.proc-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.proc-icon svg { width: 22px; height: 22px; }
.process-step:hover .proc-icon {
  background: rgba(232,97,60,.1);
  border-color: rgba(232,97,60,.2);
  color: var(--accent-light);
}

.process-step h3 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -.01em;
}
.process-step p {
  font-size: .82rem;
  color: var(--text-light-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════ */
.cta-banner {
  background: var(--accent);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(255,255,255,.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 80% at 100% 50%, rgba(0,0,0,.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}
.cta-text h2 em { color: rgba(255,255,255,.8); }
.cta-text p {
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  margin-top: .6rem;
  max-width: 48ch;
  line-height: 1.75;
}
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--accent-dark);
  border-color: var(--white);
  flex-shrink: 0;
}
.cta-banner .btn-primary:hover {
  background: var(--light);
  border-color: var(--light);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

/* ═══════════════════════════════════════════════════
   CREDENTIALS
═══════════════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.split-flip > :first-child { order: 2; }
.split-flip > :last-child  { order: 1; }
.split-l h2  { margin-top: .5rem; margin-bottom: 1.1rem; }
.split-desc  {
  font-size: .9rem;
  margin-top: 1rem;
  color: var(--text-body);
  line-height: 1.82;
}
/* Generic paragraphs inside split-l (About section) */
.split-l > p {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.82;
}

/* Credentials list */
.cred-list {
  border: 1.5px solid var(--line-light);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.cred-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--line-light);
  align-items: flex-start;
  transition: background var(--dur) var(--ease);
}
.cred-item:last-child { border-bottom: none; }
.cred-item:hover { background: var(--light); }

.cred-chk {
  width: 26px; height: 26px; min-width: 26px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1.5px solid rgba(232,97,60,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: .05rem;
}
.cred-item strong {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .2rem;
}
.cred-item p {
  font-size: .76rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   ABOUT / NUMBERS
═══════════════════════════════════════════════════ */
.about-nums {
  border: 1.5px solid var(--line-mid);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.abn {
  padding: 1.8rem 2rem;
  border-bottom: 1px solid var(--line-mid);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.abn:last-child { border-bottom: none; }

.abn-row {
  display: flex;
  align-items: baseline;
  gap: .15rem;
  line-height: 1;
}
.abn-n {
  font-family: var(--fd);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -.04em;
  color: var(--text-dark);
}
.abn-sfx {
  font-family: var(--fd);
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  font-style: italic;
  color: var(--accent);
}
.abn-k {
  font-size: .76rem;
  color: var(--text-body);
  font-weight: 500;
  letter-spacing: .03em;
}

/* Certification cards (About section) */
.cert-item {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--line-mid);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.cert-item:last-child { border-bottom: none; }
.cert-badge {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(232,97,60,.07);
  border: 1.5px solid rgba(232,97,60,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.cert-info strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -.01em;
  margin-bottom: .3rem;
}
.cert-info span {
  font-size: .76rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testimonials-section { position: relative; overflow: hidden; }
.testimonials-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(232,97,60,.04) 0%, transparent 70%);
  pointer-events: none;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.testi-card {
  background: var(--dark-3);
  border: 1.5px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition:
    border-color var(--dur) var(--ease),
    transform .3s var(--ease),
    box-shadow var(--dur) var(--ease);
}
.testi-card:hover {
  border-color: rgba(232,97,60,.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}

.testi-stars {
  display: flex;
  gap: .25rem;
  color: var(--accent);
}

.testi-card blockquote {
  font-size: .88rem;
  line-height: 1.82;
  color: var(--text-light-muted);
  font-style: italic;
  flex: 1;
  position: relative;
}
.testi-card blockquote::before {
  content: '"';
  font-family: var(--fd);
  font-size: 4rem;
  color: rgba(232,97,60,.2);
  line-height: .5;
  position: absolute;
  top: -.3rem;
  left: -.5rem;
  pointer-events: none;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(232,97,60,.15);
  border: 1.5px solid rgba(232,97,60,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--accent-light);
  flex-shrink: 0;
  letter-spacing: .05em;
}
.testi-author strong {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  color: var(--text-light);
}
.testi-author span {
  display: block;
  font-size: .7rem;
  color: var(--text-light-muted);
  margin-top: .12rem;
}

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-info h2 { margin-top: .5rem; margin-bottom: .8rem; }
.contact-sub {
  font-size: .9rem;
  color: var(--text-light-muted);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.cmeta-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1.1rem;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(26,34,53,.5);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
a.cmeta-item:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(232,97,60,.3);
}
.cmeta-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,97,60,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.cmeta-icon svg { width: 17px; height: 17px; }
.cmeta-item small {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: .12rem;
}
.cmeta-item strong {
  display: block;
  font-size: .87rem;
  font-weight: 600;
  color: var(--text-light);
}

/* ─── Contact Form ─── */
.cform {
  background: rgba(19,25,41,.7);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: clamp(1.6rem, 3.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(10px);
}
.cform-head { margin-bottom: .2rem; }
.cform-head h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: .25rem;
}
.cform-head p {
  font-size: .73rem;
  color: var(--text-light-muted);
}

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.ff { display: flex; flex-direction: column; gap: .38rem; }

.ff label {
  font-size: .71rem;
  font-weight: 600;
  color: var(--text-light-muted);
  letter-spacing: .04em;
}
.ff-opt { color: var(--text-muted); font-weight: 400; }

.ff input, .ff textarea {
  background: rgba(12,17,32,.8);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: .68rem 1rem;
  font-size: .875rem;
  color: var(--text-light);
  width: 100%;
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.ff input::placeholder, .ff textarea::placeholder { color: rgba(255,255,255,.22); }
.ff input:focus, .ff textarea:focus {
  border-color: rgba(232,97,60,.5);
  box-shadow: 0 0 0 3px rgba(232,97,60,.1);
}
.ff input.err, .ff textarea.err, .fselect-wrap select.err {
  border-color: rgba(239,68,68,.5);
}

.fselect-wrap { position: relative; }
.fselect-wrap select {
  background: rgba(12,17,32,.8);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: .68rem 2.4rem .68rem 1rem;
  font-size: .875rem;
  color: var(--text-light);
  width: 100%;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
/* Placeholder-Farbe wenn noch nichts gewählt (Pflichtfeld + leerer Wert = :invalid) */
.fselect-wrap select:invalid { color: rgba(255,255,255,.35); }
.fselect-wrap select:focus { border-color: rgba(232,97,60,.5); }
.fselect-wrap select option { background: var(--dark-2); color: var(--text-light); }
.fselect-arr {
  position: absolute;
  right: .9rem; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.fcheck {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
  font-size: .74rem;
  color: var(--text-light-muted);
  line-height: 1.55;
}
.fcheck input[type="checkbox"] {
  width: 16px; height: 16px; min-width: 16px;
  margin-top: .12rem;
  cursor: pointer;
  accent-color: var(--accent);
}
.flink { color: var(--accent-light); }
.flink:hover { text-decoration: underline; }

.fsuccess {
  display: none;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ok);
  padding: .7rem 1rem;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 10px;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--line-dark);
  padding-block: 3rem 1.75rem;
  color: var(--text-light);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand .nav-logo {
  margin-bottom: .9rem;
}
.footer-tagline {
  font-size: .8rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 1.1rem;
}
.footer-col nav, .footer-col .footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-col nav a, .footer-contact-info a, .footer-contact-info span {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  transition: color var(--dur) var(--ease);
}
.footer-col nav a:hover, .footer-contact-info a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.35); transition: color var(--dur) var(--ease); }
.footer-legal a:hover { color: var(--accent-light); }

/* ═══════════════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s var(--ease-out),
    transform .7s var(--ease-out);
  transition-delay: calc(var(--ri, 0) * .1s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */

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

/* ── 1024px ── */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text     { align-items: center; }
  .hero-badge    { align-self: center; }
  .hero-trust    { align-self: center; }
  .hero-sub      { max-width: 56ch; }
  .hero-visual   { justify-content: center; }
  .hv-wrap       { width: 360px; height: 360px; }
  .hero-stats    { align-self: center; max-width: 100%; }

  .process-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }

  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split-flip > :first-child { order: 1; }
  .split-flip > :last-child  { order: 2; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }

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

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

/* ── 768px — Hamburger menu ── */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(12,17,32,.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 800;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform .4s var(--ease), opacity .35s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: -.02em;
  }
  .nav-links a::after { display: none; }
  .nav-cta-phone { display: none; }
  .nav-end       { gap: 1rem; }
  .nav-toggle    { display: flex; }

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

/* ── 640px ── */
@media (max-width: 640px) {
  .hero { padding-block: calc(4rem + 64px) 3rem; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .btn-lg { width: 100%; justify-content: center; }

  /* Hero Subtext lesbarer auf kleinen Screens */
  .hero-sub { font-size: .95rem; max-width: 100%; }

  .hv-wrap { width: 300px; height: 300px; }
  .hv-card-3 { display: none; }

  /* Hero Trust Bar: vertikal stapeln, kein Overflow */
  .hero-trust       { flex-direction: column; align-self: stretch; }
  .htrust-sep       { width: 100%; height: 1px; align-self: auto; flex-shrink: 0; }
  .htrust-avail     { flex-direction: row; gap: .6rem; padding: .8rem 1.2rem; width: 100%; justify-content: center; }
  .htrust-certs     { padding: .8rem 1.2rem; width: 100%; }
  .htrust-badge     { white-space: normal; font-size: .69rem; }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
  }
  .hstat-div { display: none; }
  .hstat:nth-child(1),
  .hstat:nth-child(5) { border-right: 1px solid var(--line-dark); }
  .hstat:nth-child(1),
  .hstat:nth-child(3) { border-bottom: 1px solid var(--line-dark); }

  .services-grid { grid-template-columns: 1fr; }
  .svc-card      { padding: 1.5rem; }
  .svc-tags span { font-size: .56rem; padding: .15rem .45rem; }
  .process-grid  { grid-template-columns: 1fr; }

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

  .tsep          { display: none !important; }
  .trust-list    { justify-content: flex-start; }
  .trust-list li { padding-inline: .7rem; }

  .section       { padding-block: 3.5rem; }

  .back-to-top {
    display: none !important;
  }

  .cta-inner     { flex-direction: column; text-align: center; }
  .cta-text h2   { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .cta-inner .eyebrow { justify-content: center; }

  /* iOS: verhindert automatisches Reinzoomen beim Tippen (< 16px triggert Zoom) */
  .ff input,
  .ff textarea,
  .fselect-wrap select { font-size: 1rem; }

  .frow          { grid-template-columns: 1fr; }
  .cform         { border-radius: 16px; padding: 1.35rem; }

  .footer-cols   { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 1.2rem; }
  .footer-legal  { justify-content: center; }

  /* Touch-Targets: mindestens 44px für Buttons & Hamburger */
  .nav-toggle    { width: 44px; height: 44px; }
  .btn-sm        { min-height: 44px; }
}

/* ── 380px ── */
@media (max-width: 380px) {
  .hero-title { font-size: 2.5rem; }
  .hv-wrap    { display: none; }
  .btn-lg     { padding: .82rem 1.25rem; font-size: .875rem; }
}

/* ═══════════════════════════════════════════════════
   BACK TO TOP BUTTON
═══════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,97,60,.4);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .3s var(--ease),
    transform .3s var(--ease),
    background .2s var(--ease);
  pointer-events: none;
  z-index: 800;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════
   REDUCED MOTION (Accessibility)
═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════
   CUSTOM SCROLLBAR (Webkit)
═══════════════════════════════════════════════════ */
::-webkit-scrollbar         { width: 6px; }
::-webkit-scrollbar-track   { background: var(--dark); }
::-webkit-scrollbar-thumb   { background: var(--accent); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

/* ═══════════════════════════════════════════════════
   SELECTION
═══════════════════════════════════════════════════ */
::selection {
  background: rgba(232,97,60,.25);
  color: var(--text-dark);
}

