:root{
  --ink:#0B1B3B;
  --ink-soft:#253755;
  --muted:#607089;
  --blue:#1874F2;
  --blue-dark:#0D3F86;
  --slate:#526A8C;
  --ice:#F6FAFF;
  --ice-2:#EEF6FF;
  --line:#D8E8FA;
  --line-strong:#BBD7F5;
  --white:#FFFFFF;
  --shadow:0 22px 70px rgba(27,73,126,.12);
  --shadow-soft:0 14px 40px rgba(27,73,126,.10);
  --radius:24px;
  --shell:1220px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg,#fff 0%,#f9fcff 100%);
  line-height:1.55;
  text-rendering:optimizeLegibility;
}

body.nav-open{
  overflow:hidden;
}

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

a{
  color:inherit;
}

svg{
  width:1em;
  height:1em;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.shell{
  width:min(var(--shell), calc(100% - 44px));
  margin-inline:auto;
}

.section{
  padding:88px 0;
}

.section.compact{
  padding:62px 0;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background:#fff;
  color:#000;
  padding:12px 16px;
  z-index:9999;
  border-radius:8px;
}

.skip-link:focus{
  left:12px;
}

/* Header */

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(22px) saturate(160%);
  border-bottom:1px solid rgba(216,232,250,.72);
}

.header-inner{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

.brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  min-width:max-content;
}

.brand-image img{
  display:block;
  width:clamp(180px, 20vw, 300px);
  height:auto;
  object-fit:contain;
}

.site-header .brand-image img{
  width:clamp(170px, 18vw, 265px);
}

.site-footer .brand-image img,
.footer-brand img{
  width:clamp(170px, 20vw, 260px);
  height:auto;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:8px;
}

.site-nav a{
  text-decoration:none;
  font-weight:720;
  font-size:15px;
  color:var(--ink-soft);
  padding:10px 14px;
  border-radius:999px;
  transition:.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible{
  background:var(--ice-2);
  color:var(--blue-dark);
}

.site-nav .nav-cta{
  background:var(--ink);
  color:#fff;
  padding-inline:18px;
}

.site-nav .nav-cta:hover{
  background:var(--blue-dark);
  color:#fff;
}

.nav-toggle{
  display:none;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  width:46px;
  height:46px;
  color:var(--ink);
  place-items:center;
}

.nav-toggle svg{
  width:24px;
  height:24px;
}

.nav-toggle .icon-close{
  display:none;
}

.nav-open .nav-toggle .icon-menu{
  display:none;
}

.nav-open .nav-toggle .icon-close{
  display:block;
}

/* Hero */

.hero{
  position:relative;
  overflow:hidden;
  padding:76px 0 78px;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 9% 14%, rgba(24,116,242,.12), transparent 25%),
    radial-gradient(circle at 86% 18%, rgba(116,155,207,.20), transparent 32%),
    linear-gradient(180deg,#fff 0%,#f7fbff 100%);
}

.hero-bg:before{
  content:"";
  position:absolute;
  right:-8%;
  top:-18%;
  width:44%;
  height:68%;
  background:radial-gradient(circle,rgba(196,219,244,.38),transparent 65%);
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,.86fr) minmax(520px,1.14fr);
  align-items:center;
  gap:34px;
}

.kicker{
  margin:0 0 16px;
  color:var(--blue);
  font-size:14px;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.16em;
}

h1,
h2,
h3,
p{
  margin-top:0;
}

.hero h1{
  max-width:720px;
  font-size:clamp(46px,6vw,82px);
  line-height:1.06;
  letter-spacing:-.015em;
  margin-bottom:26px;
}

.hero .lead{
  font-size:21px;
  max-width:620px;
  color:var(--ink-soft);
}

.hero p:not(.kicker):not(.lead){
  font-size:17px;
  max-width:620px;
  color:var(--muted);
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:34px;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  border-radius:13px;
  text-decoration:none;
  font-weight:830;
  padding:14px 19px;
  border:1px solid transparent;
  transition:.18s ease;
}

.button svg{
  width:20px;
  height:20px;
}

.button.primary{
  background:#0D3F86;
  color:#fff;
  box-shadow:none;
}

.button.secondary{
  background:#fff;
  color:var(--blue-dark);
  border-color:var(--line-strong);
}

.button.primary:hover,
.button.secondary:hover{
  transform:translateY(-2px);
}

.button.light{
  background:rgba(255,255,255,.1);
  color:#fff;
  border-color:rgba(255,255,255,.35);
}

.trust-row{
  margin-top:34px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.trust-row span{
  font-size:13px;
  font-weight:760;
  color:#28517c;
  background:rgba(255,255,255,.72);
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 11px;
}

.hero-stage{
  min-height:620px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-collage{
  width:min(100%, 760px);
  border-radius:28px;
  filter:drop-shadow(0 26px 44px rgba(21,62,116,.16));
}

/* Sections */

.section-intro{
  max-width:780px;
  margin-bottom:30px;
}

.section-intro h2,
.gui-copy h2,
.why h2,
.audience-card h2,
.contact h2{
  font-size:clamp(32px,4vw,58px);
  line-height:1.11;
  letter-spacing:-.01em;
  margin-bottom:18px;
}

.section-intro p:not(.kicker),
.gui-copy p,
.why-copy p,
.contact-main p{
  color:var(--muted);
  font-size:18px;
}

.cards{
  display:grid;
  gap:22px;
}

.cards.three{
  grid-template-columns:repeat(3,1fr);
}

.card,
.service,
.audience-card{
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
}

.card{
  padding:28px;
}

.card-icon,
.service span,
.values span{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:linear-gradient(135deg,#EAF4FF,#fff);
  color:var(--blue);
  border:1px solid var(--line);
  margin-bottom:20px;
}

.card-icon svg,
.service span svg,
.values span svg{
  width:30px;
  height:30px;
}

.card h3,
.service h3,
.values h3{
  font-size:20px;
  margin-bottom:9px;
  line-height:1.18;
}

.card p,
.service p,
.values p{
  color:var(--muted);
  margin-bottom:0;
}

/* GUI Guy */

.gui-section{
  background:
    radial-gradient(circle at 12% 8%,rgba(24,116,242,.10),transparent 22%),
    linear-gradient(180deg,#f8fbff 0%,#fff 72%);
  border-top:1px solid rgba(216,232,250,.65);
  border-bottom:1px solid rgba(216,232,250,.65);
}

.gui-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:46px;
  align-items:center;
}

.gui-copy .lead{
  font-size:22px;
  color:var(--ink-soft);
}

.signature{
  font-weight:850;
  color:var(--blue-dark)!important;
}
.portrait-card{
  position:relative;
  min-height:460px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  overflow:visible;
  border:0;
  border-radius:0;
  box-shadow:none;
  background:transparent;
  padding:0;
}

.portrait-card::before{
  content:"";
  position:absolute;
  left:50%;
  bottom:10px;
  width:min(72%, 320px);
  height:34px;
  transform:translateX(-50%);
  border-radius:999px;
  background:rgba(27,73,126,.16);
  filter:blur(18px);
  z-index:0;
}

.portrait-card::after{
  content:none;
  display:none;
}

.portrait-card img{
  position:relative;
  z-index:1;
  display:block;
  width:min(100%, 425px);
  height:auto;
  max-height:625px;
  object-fit:contain;
  object-position:center bottom;
  background:transparent;
  border:0;
  box-shadow:none;
  filter:none;
}
/* GUI Guy Process */

.thought-panel{
  margin-top:56px;
}

.gui-process{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(187,215,245,.9);
  border-radius:32px;
  background:
    radial-gradient(circle at 8% 8%, rgba(24,116,242,.11), transparent 22%),
    radial-gradient(circle at 92% 16%, rgba(116,155,207,.16), transparent 28%),
    linear-gradient(180deg,#fff 0%,#f6fbff 100%);
  box-shadow:var(--shadow-soft);
  padding:clamp(26px,4vw,54px);
}

.gui-process::before,
.gui-process::after{
  content:"";
  position:absolute;
  width:118px;
  height:118px;
  opacity:.45;
  background-image:radial-gradient(circle, rgba(24,116,242,.45) 1.6px, transparent 1.8px);
  background-size:18px 18px;
  pointer-events:none;
}

.gui-process::before{
  left:22px;
  top:22px;
}

.gui-process::after{
  right:28px;
  bottom:26px;
}

.process-copy{
  position:relative;
  z-index:1;
  max-width:760px;
  margin-bottom:34px;
}

.process-copy h2{
  font-size:clamp(34px,5vw,64px);
  line-height:1.10;
  letter-spacing:-.012em;
  margin-bottom:18px;
}

.process-copy .lead{
  max-width:720px;
  color:var(--ink-soft);
  font-size:clamp(18px,2vw,22px);
}

.process-jump{
  position:relative;
  z-index:2;
  display:flex;
  gap:10px;
  margin-bottom:18px;
}

.process-jump a{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--line-strong);
  background:rgba(255,255,255,.78);
  color:var(--blue-dark);
  font-weight:850;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(27,73,126,.08);
}

.process-carousel{
  position:relative;
  z-index:1;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scroll-padding-inline:4px;
  -webkit-overflow-scrolling:touch;
  padding:4px 4px 18px;
}

.process-carousel::-webkit-scrollbar{
  height:10px;
}

.process-carousel::-webkit-scrollbar-track{
  background:rgba(216,232,250,.7);
  border-radius:999px;
}

.process-carousel::-webkit-scrollbar-thumb{
  background:rgba(24,116,242,.45);
  border-radius:999px;
}

.process-track{
  list-style:none;
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(310px, 1fr);
  gap:22px;
  padding:0;
  margin:0;
}

.process-card{
  scroll-snap-align:start;
  overflow:hidden;
  border:1px solid var(--line-strong);
  border-radius:22px;
  background:rgba(255,255,255,.92);
  box-shadow:none;
  min-width:0;
}

.process-card-top{
  display:flex;
  align-items:center;
  gap:13px;
  min-height:66px;
  padding:14px 18px;
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(246,250,255,.88));
}

.process-step{
  display:grid;
  place-items:center;
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid var(--line-strong);
  background:#fff;
  color:var(--blue);
  font-weight:850;
}

.process-card-top h3{
  margin:0;
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:18px;
}

.process-menu{
  margin-left:auto;
  color:var(--blue);
  letter-spacing:.18em;
  font-weight:900;
}

.process-card > img{
  display:block;
  width:100%;
  aspect-ratio:16 / 9;
  object-fit:cover;
  object-position:center;
  background:#eef6ff;
}

.process-card-body{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:18px;
  padding:20px;
  align-items:start;
}

.process-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:20px;
  background:linear-gradient(135deg,#EAF4FF,#fff);
  color:var(--blue);
  border:1px solid var(--line);
}

.process-icon svg{
  width:34px;
  height:34px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.process-card-body h4{
  margin:0 0 6px;
  font-size:19px;
  line-height:1.2;
}

.process-card-body p{
  margin:0;
  color:var(--muted);
}

.ascii-frame{
  display:grid;
  gap:1px;
  width:max-content;
  max-width:100%;
  margin-top:14px;
  padding:10px 12px;
  border-radius:12px;
  border:1px dashed rgba(24,116,242,.32);
  background:rgba(246,250,255,.88);
  color:#28517c;
  font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size:12px;
  line-height:1.25;
  white-space:nowrap;
}

.process-bottomline{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:28px 0 0;
  color:var(--ink);
  font-size:clamp(18px,2vw,25px);
  font-weight:650;
}

.process-bottomline span{
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  border-radius:999px;
  color:var(--blue);
  background:#EAF4FF;
}

.process-bottomline strong{
  color:var(--blue);
}
/* Thinking Sequence */

.thought-panel{
  margin-top:56px;
}

.thinking-sequence{
  margin:0;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  background:#f7fbff;
  box-shadow:var(--shadow-soft);
}

.thinking-sequence img{
  display:block;
  width:100%;
  height:auto;
}

/* Warum */

.why-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:48px;
  align-items:start;
}

.why-copy{
  display:grid;
  gap:10px;
}

.values{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.values article{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
}

.values span{
  margin-bottom:14px;
}

/* Angebote */

.services{
  grid-template-columns:repeat(5,1fr);
}

.service{
  padding:23px;
  min-height:230px;
}

.service span{
  width:52px;
  height:52px;
  border-radius:16px;
  margin-bottom:16px;
}

.service h3{
  font-size:18px;
}

/* Audience */

.audience-section{
  padding-top:44px;
}

.audience-card{
  padding:34px;
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:28px;
  align-items:center;
  background:linear-gradient(135deg,#fff,#F3F9FF);
}

.audience-list{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.audience-list span{
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  color:#294568;
  font-weight:760;
  padding:10px 13px;
  font-size:14px;
}

/* Contact */

.contact{
  padding:78px 0;
  background:linear-gradient(135deg,#163D78,#5B708F);
  color:#fff;
}

.contact-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:38px;
  align-items:stretch;
}

.contact .kicker{
  color:#B9DCFF;
}

.contact h2{
  max-width:760px;
}

.contact-main p{
  color:#E8F3FF;
  max-width:720px;
}

.contact-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}

.contact-card{
  font-style:normal;
  border:1px solid rgba(255,255,255,.28);
  border-radius:24px;
  background:rgba(255,255,255,.10);
  padding:28px;
  display:grid;
  gap:16px;
  align-content:center;
  box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.contact-card strong{
  font-size:21px;
}

.contact-card span{
  color:#F1F7FF;
}

.contact-card svg{
  width:20px;
  height:20px;
  margin-right:8px;
  vertical-align:-4px;
}

/* Footer */

.site-footer{
  padding:26px 0;
  background:#0B1B3B;
  color:#fff;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;
}

.footer-inner p{
  margin:0;
  color:#C9D6E8;
  font-size:14px;
}

.footer-inner nav{
  display:flex;
  gap:18px;
}

.footer-inner a{
  text-decoration:none;
}

.footer-inner nav a{
  color:#fff;
}

/* Legal Pages */

.legal-page{
  background:linear-gradient(180deg,#fff,#f6fbff);
}

.legal-main{
  padding:58px 0 90px;
}

.legal-card{
  max-width:920px;
  margin-inline:auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:44px;
  box-shadow:var(--shadow-soft);
}

.legal-card h1{
  font-size:44px;
  line-height:1.05;
  margin-bottom:24px;
  letter-spacing:-.04em;
}

.legal-card h2{
  font-size:23px;
  margin:32px 0 10px;
}

.legal-card p,
.legal-card li{
  color:var(--muted);
}

.legal-card a{
  color:var(--blue-dark);
  font-weight:760;
}

.back-link{
  display:inline-flex;
  margin-bottom:24px;
  text-decoration:none;
  color:var(--blue-dark);
  font-weight:850;
}

/* Tablet */

@media (max-width:1080px){
  .hero-grid,
  .gui-grid,
  .why-grid,
  .audience-card,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero-stage{
    min-height:auto;
  }

  .hero-collage{
    max-width:820px;
  }

  .cards.three,
  .values{
    grid-template-columns:1fr;
  }

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

  .portrait-card{
    max-width:420px;
  }
}

/* Mobile */

@media (max-width:760px){
  .shell{
    width:min(100% - 56px,var(--shell));
  }

  .header-inner{
    height:68px;
  }

  .site-header .brand-image img{
    width:190px;
  }

  .nav-toggle{
    display:grid;
  }

  .site-nav{
    position:fixed;
    top:68px;
    left:14px;
    right:14px;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(18px);
    border:1px solid var(--line);
    border-radius:22px;
    padding:10px;
    box-shadow:var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:2px;
  }

  body.nav-open .site-nav{
    display:flex;
  }

  .site-nav a{
    padding:15px 16px;
    border-radius:14px;
  }

  .site-nav .nav-cta{
    text-align:center;
  }

  .section,
  .section.compact{
    padding:50px 0;
  }

  .hero{
    padding:42px 0 52px;
  }

  .hero h1{
    font-size:clamp(42px,13vw,58px);
  }

  .hero .lead{
    font-size:18px;
  }

  .hero-actions .button{
    width:100%;
  }

  .trust-row span{
    width:100%;
    text-align:center;
  }

  .hero-collage{
    width:calc(100% + 14px);
    max-width:none;
    margin-inline:-7px;
    border-radius:20px;
  }

  .section-intro h2,
  .gui-copy h2,
  .why h2,
  .audience-card h2,
  .contact h2{
    font-size:34px;
  }

  .cards{
    gap:14px;
  }

  .card,
  .service,
  .audience-card,
  .legal-card{
    padding:22px;
    border-radius:20px;
  }

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

  .gui-grid{
    gap:24px;
  }

.thought-panel{
    margin-top:34px;
    overflow-x:hidden;
    padding-bottom:0;
  }

  .gui-process{
    max-width:100%;
    min-width:0;
    border-radius:24px;
    padding:22px 0 24px;
	padding-bottom:18;
    margin-inline:0px;
  }

  .process-carousel{
    max-width:100%;
    min-width:0;
    padding-inline:32px;
    scroll-padding-inline:32px;
	  padding-bottom:18;
  }
	
  .process-copy,
  .process-jump,
  .process-bottomline{
    padding-inline:20px;
  }

  .process-copy{
    margin-bottom:22px;
  }

  .process-copy h2{
    font-size:34px;
  }

  .process-copy .lead{
    font-size:18px;
  }



  .process-track{
    grid-auto-columns:minmax(285px, 86vw);
    gap:16px;
  }

  .process-card-body{
    grid-template-columns:52px 1fr;
    gap:14px;
    padding:18px;
  }

  .process-icon{
    width:48px;
    height:48px;
    border-radius:16px;
  }

  .process-icon svg{
    width:28px;
    height:28px;
  }

  .ascii-frame{
    font-size:11px;
  }

  .process-bottomline{
    justify-content:flex-start;
    font-size:18px;
  }

  .portrait-card{
    min-height:380px;
    margin-top:8px;
  }

  .portrait-card img{
    width:min(92%, 350px);
    max-height:475px;
  }

  .portrait-card::before{
    width:min(86%, 320px);
    height:56px;
  }

  .portrait-card::after{
    width:min(78%, 290px);
  }

  .thinking-sequence{
    min-width:860px;
    border-radius:22px;
  }

  .footer-inner{
    align-items:flex-start;
    flex-direction:column;
  }

  .site-footer .brand-image img,
  .footer-brand img{
    width:190px;
  }
}
/* Small Mobile */

@media (max-width:480px){
  .card-icon,
  .service span,
  .values span{
    width:52px;
    height:52px;
  }

  .contact-actions .button{
    width:100%;
  }
}