/* ================================================
   FortSchaum — Custom Styles
   Ergänzt Tailwind mit Animationen + Sonderstilen
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:wght@300;400;500;600&family=JetBrains+Mono:wght@300;400;500&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --bg:       #07090f;
  --surface:  #0e1118;
  --surface2: #141824;
  --border:   #1a1f2e;
  --border2:  #252d42;
  --orange:   #ff4500;
  --orange-d: #cc3700;
  --cyan:     #00d4ff;
  --cyan-d:   #008aaa;
  --green:    #19db5a;
  --text:     #dde3f0;
  --muted:    #5a6478;
  --silver:   #8892a4;

  --font-display: 'Archivo Black', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

img { display: block; max-width: 100%; height: auto; }

/* ── FONT HELPERS ── */
.font-display { font-family: var(--font-display); }
.font-mono    { font-family: var(--font-mono); }
.font-body    { font-family: var(--font-body); }

/* ── NOISE OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .28;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ── SELECTION ── */
::selection { background: var(--orange); color: var(--bg); }

/* ── CUSTOM CURSOR ── */
body { cursor: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='4' fill='none' stroke='%23ff4500' stroke-width='1.5'/%3E%3Cline x1='10' y1='0' x2='10' y2='5' stroke='%23ff4500' stroke-width='1'/%3E%3Cline x1='10' y1='15' x2='10' y2='20' stroke='%23ff4500' stroke-width='1'/%3E%3Cline x1='0' y1='10' x2='5' y2='10' stroke='%23ff4500' stroke-width='1'/%3E%3Cline x1='15' y1='10' x2='20' y2='10' stroke='%23ff4500' stroke-width='1'/%3E%3C/svg%3E") 10 10, crosshair; }

/* ── TYPED CURSOR ── */
.typed-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--orange);
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
  margin-left: 3px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  border-bottom: 1px solid var(--border);
  background: rgba(7,9,15,.92);
  backdrop-filter: blur(18px);
  transition: padding .25s ease;
}
#navbar.scrolled { padding-top: .8rem; padding-bottom: .8rem; }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: .04em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo .dot { color: var(--orange); }
.nav-logo .tld { color: var(--cyan); font-family: var(--font-mono); font-size: .75em; }

.nav-link {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--orange);
  transition: right .25s;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { right: 0; }
.nav-link.active { color: var(--orange); }
.nav-link.active::after { right: 0; }

.nav-cta {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .6rem 1.4rem;
  background: var(--orange);
  color: var(--bg);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  font-weight: 500;
}
.nav-cta:hover { opacity: .88; transform: translate(-2px,-2px); box-shadow: 2px 2px 0 var(--text); }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--text); transition: .25s; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 4rem;
  padding: 10rem 3rem 5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0; z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .07;
}

.hero-left, .hero-right { position: relative; z-index: 1; }

.hero-tag {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2rem;
}
.hero-tag::before { content: ''; width: 2rem; height: 1px; background: var(--orange); }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8.5vw, 8.5rem);
  line-height: .9;
  letter-spacing: -.01em;
  margin-bottom: 2.5rem;
}
.hero-h1 .accent { color: var(--orange); display: block; }
.hero-h1 .accent-cyan { color: var(--cyan); display: block; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(221,227,240,.6);
  max-width: 42ch;
  line-height: 1.85;
  margin-bottom: 3rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .95rem 2.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--orange); color: var(--bg); border-color: var(--orange); }
.btn-primary:hover { transform: translate(-3px,-3px); box-shadow: 3px 3px 0 var(--text); }
.btn-outline-o { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline-o:hover { background: var(--orange); color: var(--bg); transform: translate(-2px,-2px); box-shadow: 2px 2px 0 var(--text); }
.btn-outline-c { background: transparent; color: var(--cyan); border-color: var(--cyan); }
.btn-outline-c:hover { background: var(--cyan); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--muted); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--silver); color: var(--text); }

/* ── HERO VISUAL ── */
.hero-right { display: flex; justify-content: flex-end; align-items: flex-end; }
.hero-visual-frame {
  width: 360px;
  height: 420px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  background: var(--surface);
}
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .4s; }
.hero-visual-frame:hover img { opacity: 1; }
.hero-visual-label {
  position: absolute;
  bottom: 1rem; right: 1.2rem;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  background: rgba(7,9,15,.85);
  padding: .3rem .6rem;
}
.hero-visual-label .dot { color: var(--green); }

/* ── STATS ── */
#stats { border-bottom: 1px solid var(--border); background: var(--surface); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.stat-item {
  background: var(--surface);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: background .25s;
}
.stat-item:hover { background: var(--surface2); }
.stat-num {
  font-family: var(--font-display);
  font-size: 3.8rem;
  color: var(--orange);
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SECTION HELPERS ── */
.section-pad { padding: 8rem 0; border-bottom: 1px solid var(--border); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }

.section-label {
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 200px;
}
.section-label.cyan-label { color: var(--cyan); }
.section-label.cyan-label::after { background: var(--border); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .95;
  letter-spacing: -.01em;
}

/* ── STACK SECTION ── */
#stack { background: var(--bg); }
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}
.stack-item {
  background: var(--surface);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition: background .25s;
  position: relative;
  overflow: hidden;
}
.stack-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background .3s;
}
.stack-item:hover { background: var(--surface2); }
.stack-item:hover::before { background: var(--orange); }
.stack-item:nth-child(2):hover::before { background: var(--cyan); }
.stack-item:nth-child(4):hover::before { background: var(--green); }

.stack-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(255,69,0,.1);
  color: var(--orange);
  border: 1px solid rgba(255,69,0,.2);
}
.stack-icon.cyan { background: rgba(0,212,255,.08); color: var(--cyan); border-color: rgba(0,212,255,.2); }
.stack-icon.green { background: rgba(25,219,90,.08); color: var(--green); border-color: rgba(25,219,90,.2); }
.stack-icon.yellow { background: rgba(255,215,0,.08); color: #ffd700; border-color: rgba(255,215,0,.2); }

.stack-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .03em;
}
.stack-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}
.stack-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.stag {
  font-family: var(--font-mono);
  font-size: .56rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: .2s;
}
.stag:hover { border-color: var(--orange); color: var(--orange); }

/* ── METHODE ── */
#methode { background: var(--surface); }
.methode-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 7rem;
  align-items: start;
}
.pillar {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}
.pillar:last-child { border-bottom: 1px solid var(--border); }
.pillar:hover .pnum { color: var(--orange); }
.pnum {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--border2);
  line-height: 1;
  transition: color .35s;
}
.pname {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: .7rem;
}
.pdesc { font-size: 1rem; color: rgba(221,227,240,.5); line-height: 1.8; }

/* ── MARQUEE ── */
#marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--orange);
  padding: 0;
}
.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .2em;
  color: var(--bg);
  padding: 1rem 2.2rem;
  border-right: 1px solid rgba(0,0,0,.12);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.marquee-item i { font-size: .8rem; opacity: .5; }

/* ── KURSE ── */
#kurse { background: var(--bg); }
.kurse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}
.kurs-card {
  background: var(--surface);
  padding: 3rem 2.8rem;
  transition: background .25s;
  position: relative;
}
.kurs-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background .3s;
}
.kurs-card:hover { background: var(--surface2); }
.kurs-card:hover::after { background: var(--orange); }
.kurs-num {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.kurs-title { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: .03em; margin-bottom: 1rem; }
.kurs-text { font-size: 1rem; color: rgba(221,227,240,.5); line-height: 1.8; margin-bottom: 1.8rem; }
.kurs-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.ktag {
  font-family: var(--font-mono);
  font-size: .56rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: .2s;
}
.ktag:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── LABOR ── */
#labor { background: var(--surface); }
.labor-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 4rem; }
.labor-img-wrap { border: 1px solid var(--border); overflow: hidden; position: relative; }
.labor-img-wrap img { width: 100%; height: 460px; object-fit: cover; filter: grayscale(35%); transition: filter .4s, transform .5s; }
.labor-img-wrap:hover img { filter: grayscale(0%); transform: scale(1.03); }
.labor-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  font-family: var(--font-mono);
  font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  background: var(--orange); color: var(--bg); padding: .32rem .7rem;
}
.labor-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.labor-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color .25s;
}
.labor-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--orange);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .3s;
}
.labor-card:hover::before { transform: scaleY(1); }
.labor-card-icon {
  width: 3rem; height: 3rem;
  background: rgba(255,69,0,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--orange);
  margin-bottom: 1.2rem;
}
.labor-card h3 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .03em; margin-bottom: .75rem; }
.labor-card p { font-size: 1rem; color: rgba(221,227,240,.5); line-height: 1.8; }

/* ── GALERIE ── */
#galerie { background: var(--bg); }
.gal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 260px;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}
.gal-cell { overflow: hidden; position: relative; }
.gal-cell img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%); transition: filter .4s, transform .5s; }
.gal-cell:hover img { filter: grayscale(0%); transform: scale(1.06); }
.gal-cell.span-row { grid-row: span 2; }
.gal-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(7,9,15,.78);
  padding: .75rem 1.2rem;
  font-family: var(--font-mono);
  font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--silver);
  transform: translateY(100%); transition: transform .3s;
}
.gal-cell:hover .gal-cap { transform: translateY(0); }

/* ── STANDARDS ── */
#standards { background: #f0ede6; color: #0a0c14; }
#standards .section-label { color: #888; }
#standards .section-label::after { background: #ccc; }
#standards .section-title { color: #0a0c14; }
.std-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: #d5d2cc;
  border: 1px solid #d5d2cc;
  margin-top: 4rem;
}
.std-card { background: #f0ede6; padding: 3rem 2.5rem; transition: background .25s; }
.std-card:hover { background: #e6e3dc; }
.std-icon {
  width: 3rem; height: 3rem;
  background: #0a0c14;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--orange);
  margin-bottom: 1.5rem;
}
.std-title { font-family: var(--font-display); font-size: 1.45rem; color: #0a0c14; margin-bottom: .75rem; }
.std-text { font-size: 1rem; color: #666; line-height: 1.85; }

/* ── TEAM ── */
#team { background: var(--surface); }
.team-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-top: 2rem; }
.team-img-wrap { border: 1px solid var(--border); overflow: hidden; position: relative; }
.team-img-wrap img { width: 100%; height: 500px; object-fit: cover; filter: grayscale(40%); transition: filter .4s; }
.team-img-wrap:hover img { filter: grayscale(0%); }
.team-badge {
  position: absolute; bottom: 2rem; right: -1px;
  background: var(--orange); color: var(--bg);
  font-family: var(--font-mono);
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .5rem 1.2rem;
}
.team-h3 { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.5rem); line-height: 1.05; margin-bottom: 1.5rem; }
.team-feats { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2.5rem; }
.team-feat { display: flex; align-items: center; gap: 1rem; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; color: var(--silver); }
.team-feat i { color: var(--orange); width: 1rem; text-align: center; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--bg); }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 4rem; }
.test-card {
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  transition: border-color .25s, transform .25s;
}
.test-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.test-stars { display: flex; gap: .3rem; color: var(--orange); font-size: .85rem; }
.test-quote { font-size: 1rem; color: rgba(221,227,240,.7); line-height: 1.85; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.test-avatar { width: 44px; height: 44px; border: 1px solid var(--border); overflow: hidden; flex-shrink: 0; }
.test-avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%); }
.test-name { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text); display: block; }
.test-role { font-size: .85rem; color: var(--muted); }

/* ── CONTACT FORM ── */
#cta-form { background: var(--surface2); }
.cta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; }
.cta-h3 { font-family: var(--font-display); font-size: clamp(2.5rem,4vw,4rem); line-height: 1.05; margin-bottom: 1.5rem; }
.c-row { display: flex; align-items: flex-start; gap: 1rem; font-size: 1rem; color: var(--silver); margin-bottom: 1rem; }
.c-row i { color: var(--orange); width: 1.2rem; margin-top: .1rem; flex-shrink: 0; }
.c-row a { color: var(--text); transition: color .2s; }
.c-row a:hover { color: var(--orange); }
.form-block { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .9rem 1rem;
  outline: none;
  resize: none;
  transition: border-color .2s;
  appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: #252d42; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); }

/* ── TERMINAL BLOCK ── */
.terminal-block {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  font-family: var(--font-mono);
  font-size: .82rem;
  line-height: 2;
}
.term-line { display: flex; gap: .6rem; }
.term-prompt { color: var(--orange); flex-shrink: 0; }
.term-cmd { color: var(--green); }
.term-out { color: var(--muted); }
.term-out.cyan { color: var(--cyan); }

/* ── CODE BADGE ── */
.code-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  padding: .28rem .7rem;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--surface);
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  max-width: 480px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  padding: 2rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.7);
}
.cookie-title { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--orange); }
.cookie-text { font-size: 1rem; color: rgba(221,227,240,.55); line-height: 1.75; }
.cookie-text a { color: var(--cyan); text-decoration: underline; }
.cookie-btns { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ── SUCCESS POPUP ── */
#success-popup {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,9,15,.88);
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
#success-popup.active { display: flex; }
.popup-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4rem 3.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: popup-in .35s ease both;
}
@keyframes popup-in {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.popup-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
}
.popup-icon {
  width: 4rem; height: 4rem;
  background: rgba(255,69,0,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--orange);
  margin: 0 auto 1.5rem;
}
.popup-title { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: 1rem; }
.popup-text { font-size: 1rem; color: rgba(221,227,240,.55); line-height: 1.8; margin-bottom: 2rem; }
.popup-close { position: absolute; top: 1.2rem; right: 1.5rem; background: none; border: none; color: var(--muted); font-size: 1.2rem; cursor: pointer; transition: color .2s; }
.popup-close:hover { color: var(--text); }

/* ── FOOTER ── */
#footer { background: var(--surface); border-top: 1px solid var(--border); }
.footer-top { padding: 5rem 0 4rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 4rem; border-bottom: 1px solid var(--border); }
.footer-logo { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: .03em; margin-bottom: 1rem; }
.footer-logo .dot { color: var(--orange); }
.footer-logo .tld { font-family: var(--font-mono); font-size: .6em; color: var(--cyan); }
.footer-brand p { font-size: 1rem; color: var(--muted); line-height: 1.8; max-width: 28ch; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .8rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--muted);
  transition: .2s;
  text-decoration: none;
}
.social-link:hover { border-color: var(--orange); color: var(--bg); background: var(--orange); }
.footer-col h4 { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .24em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-col ul li a { font-size: 1rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom { padding: 1.8rem 0; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .1em; color: #252d42; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .1em; color: #252d42; text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--muted); }

/* ── PAGE HERO ── */
.page-hero { padding: 9rem 3rem 5rem; border-bottom: 1px solid var(--border); background: var(--surface); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(3.5rem,7vw,7rem); line-height: .92; margin-bottom: 1.5rem; letter-spacing: -.01em; }
.page-hero p { font-size: 1.1rem; color: rgba(221,227,240,.55); max-width: 55ch; line-height: 1.85; }

/* ── POLICY ── */
.policy-content { padding: 6rem 0; }
.policy-body { max-width: 760px; }
.policy-body h2 { font-family: var(--font-display); font-size: 2rem; margin: 3rem 0 1rem; }
.policy-body h3 { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); margin: 2rem 0 .8rem; }
.policy-body p { font-size: 1rem; color: rgba(221,227,240,.6); line-height: 1.9; margin-bottom: 1.2rem; }
.policy-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.2rem; }
.policy-body ul li { font-size: 1rem; color: rgba(221,227,240,.6); line-height: 1.9; margin-bottom: .4rem; }
.policy-body a { color: var(--orange); text-decoration: underline; }
.policy-date { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* ── CONTACTS PAGE ── */
.contact-card { border: 1px solid var(--border); padding: 2.5rem; transition: border-color .25s; }
.contact-card:hover { border-color: rgba(255,69,0,.3); }
.contact-card-icon { width: 3rem; height: 3rem; background: rgba(255,69,0,.1); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.2rem; margin-bottom: 1.2rem; }
.contact-card h3 { font-family: var(--font-display); font-size: 1.45rem; margin-bottom: .6rem; }
.contact-card p, .contact-card a { font-size: 1rem; color: rgba(221,227,240,.55); line-height: 1.8; }
.contact-card a:hover { color: var(--orange); }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 4rem; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── GRADIENT TEXT ── */
.grad-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .methode-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cta-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .stack-grid { grid-template-columns: 1fr 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 0 1.5rem; }
  #navbar { padding: 1rem 1.5rem; }
  .nav-menu-items { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(7,9,15,.98); flex-direction: column; gap: 0; padding: 1.5rem; border-bottom: 1px solid var(--border); }
  .nav-menu-items.open { display: flex; }
  .nav-menu-items .nav-link { padding: .8rem 0; border-bottom: 1px solid var(--border); font-size: .74rem; }
  .nav-burger { display: flex; }
  .section-pad { padding: 5rem 0; }
  #hero { padding: 8rem 1.5rem 4rem; }
  .kurse-grid { grid-template-columns: 1fr; }
  .labor-layout { grid-template-columns: 1fr; }
  .team-layout { grid-template-columns: 1fr; }
  .std-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .form-row2 { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-cell.span-row { grid-row: span 1; }
  #cookie-banner { left: 1rem; bottom: 1rem; max-width: calc(100% - 2rem); }
  .page-hero { padding: 8rem 1.5rem 4rem; }
  .stack-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
}
