/* ==========================================================================
   WEKTRON — design tokens
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Barlow:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root{
  --bg:            #06070a;
  --bg-elevated:   #0b0e13;
  --bg-soft:       #10141b;
  --line:          rgba(255,255,255,.09);
  --line-strong:   rgba(255,255,255,.16);

  --blue:          #2e6df6;
  --blue-bright:   #5590ff;
  --blue-dim:      rgba(46,109,246,.14);

  --ink:           #eef1f5;
  --ink-dim:       #9aa3b2;
  --ink-faint:     #626b79;

  --red:           #ff4f4f;

  --font-display:  'Rajdhani', 'Barlow', system-ui, sans-serif;
  --font-body:     'Barlow', system-ui, -apple-system, sans-serif;

  --radius:        3px;
  --radius-pill:   999px;

  --container:     1360px;
  --nav-h:         76px;

  --ease:          cubic-bezier(.16,1,.3,1);
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body, h1, h2, h3, h4, p, figure{ margin: 0; }
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea{ font: inherit; color: inherit; }

body{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container{
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 768px){
  .container{ padding-inline: 20px; }
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.02;
  color: var(--ink);
}

.h-display{ font-size: clamp(2.6rem, 6vw, 5.2rem); }
.h-1{ font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
.h-2{ font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.h-3{ font-size: clamp(1.1rem, 1.6vw, 1.35rem); }

.body-lg{ font-size: 1.15rem; line-height: 1.6; color: var(--ink-dim); font-weight: 400; }
.body{ font-size: 1rem; line-height: 1.65; color: var(--ink-dim); }
.body-sm{ font-size: .875rem; line-height: 1.55; color: var(--ink-dim); }

.accent{ color: var(--blue-bright); }

.kicker{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.eyebrow-blue{ display:flex; align-items:center; gap:10px; }
.eyebrow-blue::before{
  content:"";
  width: 22px; height: 2px;
  background: var(--blue);
  display: inline-block;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: var(--radius);
  transition: transform .35s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn:active{ transform: scale(.97); }

.btn-wide{
  white-space: normal;
  text-align: center;
  max-width: 340px;
}

/* Chassis button: chamfered corners + blue edge bands, echoing the
   CHALLENGER top-view plate (blue rails, dark deck, cut corners).
   Soft inner highlight + drop-shadow glow give it presence without
   losing the flat industrial silhouette. */
.btn-primary.btn-chassis{
  padding: 18px 34px 16px;
  border: none;
  border-radius: 0;
  clip-path: polygon(
    12px 0, calc(100% - 12px) 0, 100% 12px,
    100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%,
    0 calc(100% - 12px), 0 12px
  );
  background: linear-gradient(180deg,
    var(--blue-bright) 0%, var(--blue) 18%,
    #10141b 18% 82%,
    var(--blue) 82%, var(--blue-bright) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(0,0,0,.4);
  filter:
    drop-shadow(0 0 4px rgba(120,170,255,.9))
    drop-shadow(0 0 16px rgba(46,109,246,.75))
    drop-shadow(0 18px 40px rgba(46,109,246,.5))
    drop-shadow(0 3px 10px rgba(0,0,0,.4));
  transition: transform .4s var(--ease), filter .4s var(--ease), background .4s var(--ease);
}
.btn-primary.btn-chassis:hover{
  transform: translateY(-2px);
  background: linear-gradient(180deg,
    #79a6ff 0%, var(--blue-bright) 18%,
    #131822 18% 82%,
    var(--blue-bright) 82%, #79a6ff 100%
  );
  filter:
    drop-shadow(0 0 6px rgba(150,190,255,1))
    drop-shadow(0 0 22px rgba(85,144,255,.9))
    drop-shadow(0 20px 48px rgba(46,109,246,.6))
    drop-shadow(0 4px 12px rgba(0,0,0,.45));
}
.btn-primary.btn-chassis:active{ transform: translateY(0) scale(.98); }

.btn-primary{
  background: var(--blue);
  color: #ffffff;
  border: 1px solid var(--blue);
}
.btn-primary:hover{ background: var(--blue-bright); border-color: var(--blue-bright); }

.btn-ghost{
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover{ border-color: var(--blue-bright); color: var(--blue-bright); }

.btn svg{ width: 16px; height: 16px; flex: none; }
.btn:hover svg{ transform: translateX(2px); }
.btn svg{ transition: transform .3s var(--ease); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(6,7,10,.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  flex: none;
}
.logo-mark{
  display: inline-flex;
  gap: 3px;
  transform: skewX(-14deg);
}
.logo-mark span{
  width: 4px;
  height: 18px;
  background: var(--blue);
}
.logo-mark span:nth-child(2){ background: var(--ink); opacity:.55; }
.logo-mark span:nth-child(3){ background: var(--ink); opacity:.3; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .86rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-dim);
  position: relative;
  padding-block: 6px;
  transition: color .25s var(--ease);
}
.nav-links a::after{
  content:"";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover{ color: var(--ink); }
.nav-links a:hover::after{ transform: scaleX(1); }
.nav-links a[aria-current="page"]{ color: var(--ink); }
.nav-links a[aria-current="page"]::after{ transform: scaleX(1); }

.nav-cta{ display: flex; align-items: center; gap: 18px; flex: none; }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span{ width: 22px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }

@media (max-width: 900px){
  .nav-links{
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100dvh - var(--nav-h));
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 12px 20px 32px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    border-top: 1px solid var(--line);
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links a{ width: 100%; padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-cta .btn-ghost{ display: none; }
  .nav-toggle{ display: flex; }
}

/* ==========================================================================
   Sections / layout rhythm
   ========================================================================== */

section{ position: relative; }
.section{ padding-block: 96px; }
.section-tight{ padding-block: 64px; }
@media (max-width: 768px){
  .section{ padding-block: 64px; }
  .section-tight{ padding-block: 48px; }
}

.section-border-top{ border-top: 1px solid var(--line); }

.breadcrumb{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 28px;
}
.breadcrumb a{ color: var(--ink-faint); transition: color .2s var(--ease); }
.breadcrumb a:hover{ color: var(--blue-bright); }
.breadcrumb .current{ color: var(--blue-bright); }

/* ==========================================================================
   Transparent header (homepage, overlays the cinematic hero)
   ========================================================================== */

body.is-home{ padding-top: 0; }
body.is-home .site-header.is-home-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  transition: background-color .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
}
body.is-home .site-header.is-home-header.is-solid{
  background: rgba(6,7,10,.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

/* ==========================================================================
   Hero (cinematic, full-bleed)
   ========================================================================== */

.hero-cinematic{
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-cinematic-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}

@media (max-width: 768px){
  /* A 16:9 video cropped to a tall phone screen zooms in absurdly and can
     cut the product out of frame entirely. Show the full, uncropped frame
     instead: letterboxed on our own dark background, never cropped. */
  .hero-cinematic{ min-height: 100dvh; background: var(--bg); }
  .hero-cinematic-video{
    object-fit: contain;
    object-position: center 38%;
    background: var(--bg);
  }
}
.hero-cinematic-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,7,10,.62) 0%, rgba(6,7,10,.12) 32%, rgba(6,7,10,.18) 68%, rgba(6,7,10,.78) 100%);
}
.hero-cinematic-content{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding-inline: 24px;
}
.hero-cinematic-title{
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1;
  font-size: clamp(3rem, 9vw, 7.2rem);
  color: #ffffff;
  text-shadow: 0 2px 40px rgba(0,0,0,.35);
}
.hero-cinematic-title-sm{
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  line-height: 1.12;
  max-width: 24ch;
}
.hero-cinematic-note{
  position: absolute;
  right: 20px;
  bottom: 16px;
  z-index: 1;
  font-size: .68rem;
  color: rgba(238,241,245,.42);
  margin: 0;
}
.hero-cta-group{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-cta-tagline{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  color: var(--blue-bright);
}

.hero-highlight{
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid rgba(85,144,255,.4);
  background: rgba(46,109,246,.14);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(.85rem, 1.3vw, 1.02rem);
  letter-spacing: .02em;
  color: var(--blue-bright);
}
.hero-cinematic-content .btn{ margin-top: 6px; }

.hero-cinematic-content-split{
  position: absolute;
  inset: 0;
  justify-content: space-between;
  padding-block: 130px 24px;
}
.hero-cinematic-content-split .btn{ margin-top: 0; }

@media (max-width: 768px){
  .hero-cinematic-content-split{ padding-block: 100px 60px; }
}

.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   Slide 2: LKW pain-point (split, dark, image right)
   ========================================================================== */

.hero-lkw-section{
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--bg);
}
.hero-lkw-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
  min-height: 100dvh;
}
.hero-lkw-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 100px 56px 100px 32px;
  max-width: 560px;
}
@media (min-width: 1360px){
  .hero-lkw-copy{ padding-left: calc((100vw - var(--container)) / 2); }
}

.slide-eyebrow{ display: flex; align-items: center; gap: 14px; }
.slide-eyebrow span{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--blue-bright);
  letter-spacing: .04em;
}
.slide-eyebrow i{ width: 40px; height: 1px; background: var(--blue); display: block; }

.hero-lkw-title{
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.02;
}
.hero-lkw-subtitle{
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--ink-dim);
  margin-top: -8px;
}

.hero-lkw-stats{
  display: flex;
  gap: 0;
  margin-top: 8px;
}
.hero-lkw-stat{
  flex: 1;
  padding-right: 22px;
  margin-right: 22px;
  border-right: 1px solid var(--line);
}
.hero-lkw-stat:last-child{ border-right: 0; margin-right: 0; padding-right: 0; }
.hero-lkw-stat i{ font-size: 22px; color: var(--blue-bright); margin-bottom: 14px; display: block; }
.hero-lkw-stat-value{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-lkw-stat-value span{ font-size: 1rem; font-weight: 600; color: var(--ink-dim); }
.hero-lkw-stat-label{ font-size: .78rem; color: var(--ink-faint); line-height: 1.4; }

.hero-lkw-tagline{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue-bright);
  line-height: 1.4;
  margin-top: 6px;
}

.hero-lkw-visual{ position: relative; overflow: hidden; }
.hero-lkw-visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-lkw-visual::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,7,10,.5) 0%, rgba(6,7,10,0) 18%);
  pointer-events: none;
}

@media (max-width: 900px){
  .hero-lkw-grid{ grid-template-columns: 1fr; min-height: auto; }
  .hero-lkw-copy{ padding: 90px 24px 40px; max-width: none; }
  .hero-lkw-visual{ min-height: 340px; }
  .hero-lkw-stats{ flex-wrap: wrap; row-gap: 20px; }
  .hero-lkw-stat{ flex: 1 1 40%; }
}

@media (max-width: 768px){
  .hero-cinematic-content{ gap: 16px; }
  .hero-cinematic-note{ right: 16px; bottom: 12px; font-size: .62rem; }
}

/* ==========================================================================
   Stat band
   ========================================================================== */

.stat-band{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-elevated);
}
.stat-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell{
  padding: 40px 32px;
  border-left: 1px solid var(--line);
}
.stat-cell:first-child{ border-left: 0; }
.stat-value{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 6px;
}
.stat-sub{ font-size: .85rem; color: var(--ink-faint); }

@media (max-width: 768px){
  .stat-grid{ grid-template-columns: repeat(2, 1fr); }
  .stat-cell{ border-left: 0; border-top: 1px solid var(--line); padding: 28px 20px; }
  .stat-cell:nth-child(odd){ border-right: 1px solid var(--line); }
  .stat-cell:nth-child(-n+2){ border-top: 0; }
}

/* ==========================================================================
   Split section (asset + copy)
   ========================================================================== */

.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse{ grid-template-columns: 1fr 1fr; }
.split.reverse .split-visual{ order: 2; }
.split.reverse .split-copy{ order: 1; }

.split-copy p.body{ max-width: 44ch; margin-block: 18px 28px; }
.split-visual img{ width: 100%; }
.split-visual-frame{
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  padding: 28px;
}

@media (max-width: 900px){
  .split, .split.reverse{ grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-visual, .split.reverse .split-copy{ order: initial; }
}

/* ==========================================================================
   Annotated technical figure
   ========================================================================== */

.annotated-figure{
  position: relative;
  border: 1px solid var(--line);
  background: radial-gradient(700px 400px at 20% 10%, rgba(46,109,246,.10), transparent 60%), var(--bg-elevated);
  padding: clamp(24px, 4vw, 56px);
}
.annotated-figure img{ width: 100%; display: block; }
.annotated-figure-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 700px){
  .annotated-figure-grid{ grid-template-columns: 1fr; gap: 28px; }
}

.callouts{ display: grid; gap: 26px; }
.callout{ max-width: 30ch; }
.callout-label{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.callout-label::before{
  content:"";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex: none;
}
.callout-desc{ font-size: .88rem; color: var(--ink-faint); padding-left: 17px; }

/* ==========================================================================
   Tile / spec grid
   ========================================================================== */

.tile-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.tile{
  padding: 30px 26px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tile:first-child{ border-left: 0; }
.tile-icon{ color: var(--blue-bright); }
.tile-icon svg, .tile-icon i{ width: 26px; height: 26px; font-size: 26px; }
.tile-value{ font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; }
.tile-label{ font-size: .82rem; color: var(--ink-faint); letter-spacing: .02em; }

@media (max-width: 900px){
  .tile-grid{ grid-template-columns: repeat(2, 1fr); }
  .tile{ border-left: 0; border-top: 1px solid var(--line); }
  .tile:nth-child(odd){ border-right: 1px solid var(--line); }
  .tile:nth-child(-n+2){ border-top: 0; }
}

/* ==========================================================================
   Feature bento
   ========================================================================== */

.bento{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.bento-cell{
  background: var(--bg-elevated);
  padding: 30px 26px;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.bento-cell.has-image{ background-size: cover; background-position: center; }
.bento-cell.has-image::before{
  content:"";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,7,10,.92) 10%, rgba(6,7,10,.15) 70%);
}
.bento-cell > *{ position: relative; z-index: 1; }
.bento-index{
  font-family: var(--font-display); font-weight: 700; color: var(--blue-bright);
  font-size: .8rem; letter-spacing: .05em; margin-bottom: 10px;
}
.bento-title{ font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; text-transform: uppercase; margin-bottom: 6px; }
.bento-desc{ font-size: .85rem; color: var(--ink-faint); }

@media (max-width: 900px){
  .bento{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .bento{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   Industry grid (Einsatzbereiche)
   ========================================================================== */

.industry-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.industry-cell{
  background: var(--bg);
  padding: 34px 26px;
  transition: background-color .3s var(--ease);
}
.industry-cell:hover{ background: var(--bg-soft); }
.industry-icon{ color: var(--blue-bright); margin-bottom: 22px; font-size: 30px; line-height: 1; }
.industry-title{ font-family: var(--font-display); font-weight: 700; font-size: 1rem; text-transform: uppercase; margin-bottom: 8px; }
.industry-desc{ font-size: .86rem; color: var(--ink-faint); max-width: 28ch; }

@media (max-width: 900px){ .industry-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .industry-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   Values list (Unternehmen)
   ========================================================================== */

.values-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}
.value-row{
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
}
.value-row:nth-last-child(-n+1),
.value-row:nth-last-child(-n+2){ }
.value-index{ font-family: var(--font-display); font-weight: 700; color: var(--blue-bright); font-size: .9rem; flex: none; width: 28px; }
.value-name{ font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; text-transform: uppercase; }

@media (max-width: 700px){
  .values-list{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner{
  border-top: 1px solid var(--line);
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(46,109,246,.14), transparent 65%),
    var(--bg-elevated);
  text-align: center;
  padding-block: 100px;
}
.cta-banner h2{ margin-bottom: 16px; }
.cta-banner p.body{ max-width: 46ch; margin: 0 auto 34px; }
.cta-banner .hero-actions{ justify-content: center; }

/* ==========================================================================
   Forms (Kontakt)
   ========================================================================== */

.form-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
}
.field-group{ display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.field-group label{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.field-group input,
.field-group textarea{
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--ink);
  font-size: .95rem;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field-group input::placeholder,
.field-group textarea::placeholder{ color: var(--ink-faint); }
.field-group input:focus,
.field-group textarea:focus{
  outline: none;
  border-color: var(--blue-bright);
  background: var(--bg-soft);
}
.field-hint{ font-size: .78rem; color: var(--ink-faint); }
.field-error{ font-size: .78rem; color: var(--red); display: none; }
.field-group.has-error input,
.field-group.has-error textarea{ border-color: var(--red); }
.field-group.has-error .field-error{ display: block; }

.form-note{ font-size: .82rem; color: var(--ink-faint); margin-top: 4px; }

.contact-aside{
  border-left: 1px solid var(--line);
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item .kicker{ display: block; margin-bottom: 8px; }
.contact-item a{ font-size: 1.05rem; transition: color .2s var(--ease); }
.contact-item a:hover{ color: var(--blue-bright); }

@media (max-width: 900px){
  .form-grid{ grid-template-columns: 1fr; gap: 40px; }
  .contact-aside{ border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 32px; }
}

.form-success{
  display: none;
  border: 1px solid var(--blue);
  background: var(--blue-dim);
  padding: 20px 22px;
  font-size: .92rem;
  margin-top: 10px;
}
.form-success.is-visible{ display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer{
  border-top: 1px solid var(--line);
  padding-block: 56px 40px;
}
.footer-top{
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p{ margin-top: 16px; max-width: 32ch; font-size: .88rem; color: var(--ink-faint); }
.footer-heading{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
}
.footer-links li{ margin-bottom: 12px; }
.footer-links a{ font-size: .92rem; color: var(--ink-dim); transition: color .2s var(--ease); }
.footer-links a:hover{ color: var(--blue-bright); }

.footer-disclaimer{
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 72ch;
  font-size: .78rem;
  line-height: 1.6;
  color: var(--ink-faint);
}

.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: .8rem;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 768px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px){
  .footer-top{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Page hero (non-home pages)
   ========================================================================== */

.page-header{ padding-top: 64px; padding-bottom: 0; }
.page-header .h-display{ margin-bottom: 20px; }
.page-header p.body-lg{ max-width: 52ch; }

/* utility */
.mt-0{ margin-top: 0; }
.text-center{ text-align: center; }
.mx-auto{ margin-inline: auto; }
