:root{
  --navy:#0B1F3B;
  --teal:#14B8A6;
  --sky:#38BDF8;

  --bg:#FFFFFF;
  --surface:#F6F7F9;
  --text:#0B0D10;
  --muted:#5B6472;
  --border:rgba(11,13,16,0.12);
  --white:#FFFFFF;

  --radius:14px;
  --radius-sm:10px;
  --maxw:1180px;

  --h1: clamp(3rem, 5.5vw, 6rem);
  --h2: clamp(1.35rem, 2.1vw, 2.05rem);
  --body: 1.02rem;

  --shadow-sm: 0 10px 22px rgba(11,13,16,0.08);
  --shadow: 0 18px 60px rgba(11,13,16,0.10);
}

/* ==============================
   v121: Desktop header height + home hero/section heading tuning
   (Requested: slimmer header, brand + claim in one row, tighter hero on BG-1)
   ============================== */
@media (min-width:981px){.topbar{display:flex;align-items:center;justify-content:center;gap:1.15rem;padding:.60rem 0!important}.topbrand{width:auto!important;display:inline-block!important;text-align:right!important;font-size:2.15rem!important;line-height:1}.topclaim{position:static!important;left:auto!important;top:auto!important;transform:none!important;margin-left:0!important;display:inline-block;white-space:nowrap;font-size:.82rem!important;letter-spacing:.08em;line-height:1}.navrow-inner{padding:.55rem 0!important}.nav-center{flex-direction:row!important;flex-wrap:wrap!important;justify-content:center!important;align-items:center!important;gap:1.05rem!important}.nav-ctas{justify-content:center!important}:root{--home-hero-size:clamp(2.10rem,3.85vw,4.25rem)}.home-stage .hero-title-box.hero-title-box--full{transform:translateY(-58px)}.home-pillars .pillars-heading-row{margin-top:3.15rem!important}}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-y: scroll; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: var(--body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a{ color: var(--navy); text-decoration:none; }
a:hover{ color: var(--teal); }
.container{
  width: min(var(--maxw), calc(100% - 2.2rem));
  margin: 0 auto;
}
header.site-header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-links{
  display:flex;
  align-items:center;
  gap:1.05rem;
}
.nav-links a{
  color: var(--text);
  font-weight: 700;
  font-size: .97rem;
  padding:.35rem .10rem;
}
.nav-links a.active{ color: var(--navy); }
.nav-links a:hover{ color: var(--teal); }
.nav-right{
  display:flex;
  align-items:center;
  gap:.85rem;
}
.lang-switch{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:.40rem .60rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  font-weight: 780;
  font-size: .90rem;
  color: var(--muted);
}
.lang-switch a{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  color: var(--muted);
}
.lang-switch a.active{ color: var(--text); }
.lang-switch a:hover{ color: var(--teal); }
.flag{
  width: 16px;
  height: 12px;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(11,13,16,0.18);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  padding: .78rem 1.05rem;
  border-radius: 12px;
  font-weight: 850;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--text);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(11,13,16,0.12);
}
.btn-primary:hover{
  background: #11151b;
  box-shadow: var(--shadow-sm);
  color: var(--white);
}
.btn-secondary{
  background: transparent;
  border-color: rgba(11,13,16,0.22);
  color: var(--text);
}
.btn-secondary:hover{
  border-color: rgba(20,184,166,0.55);
  color: var(--teal);
  background: rgba(20,184,166,0.06);
}
.mobile-toggle{
  display:none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: .55rem .75rem;
  font-weight: 850;
}
@media(max-width:980px){.nav-links{
    position: fixed;
    top: 68px;
    left: 1.1rem;
    right: 1.1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem;
    display:none;
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
  }.nav-links.open{ display:flex; }.nav-right .btn-secondary{ display:none; }.lang-switch{ display:none; }.mobile-toggle{ display:inline-flex; }}
.stage{
  padding: 3.9rem 0 1.4rem;
  background: linear-gradient(180deg, var(--surface), rgba(255,255,255,0));
}
.kicker{
  color: var(--teal);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .80rem;
}
h1{
  margin: .55rem 0 .9rem;
  font-size: var(--h1);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.lead{
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 70ch;
}
.attributes{
  margin-top: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.0rem 1.0rem;
}
.attributes-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}
@media(max-width:980px){.attributes-row{ grid-template-columns: 1fr; }}
.attr{
  background: var(--white);
  border: 1px solid rgba(11,13,16,0.10);
  border-radius: 12px;
  padding: .78rem .80rem;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.attr:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(20,184,166,0.35);
}
.attr-icon{
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  background: transparent;
  border: 0;
  padding: 0;
}
.attr-icon img{
  width: 64px;
  height: 64px;
  display:block;
  object-fit: contain;
}
@media(max-width:980px){.attr-icon, .attr-icon img{ width:56px; height:56px; }}
.attr-title{
  font-weight: 900;
  font-size: .96rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
@media(max-width:420px){.attr-title{ white-space: normal; }}
.disclosure{
  margin-top: .75rem;
  border-top: 1px solid rgba(11,13,16,0.10);
  padding-top: .7rem;
}
.disclosure summary{
  cursor: pointer;
  list-style: none;
  font-weight: 850;
  color: var(--text);
}
.disclosure summary::-webkit-details-marker{ display:none; }
.disclosure p{
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: .92rem;
  max-width: 78ch;
}
.section{ padding: 1.1rem 0; }
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
@media(max-width:980px){.grid-3{ grid-template-columns: 1fr; }}
.card{
  background: var(--white);
  border: 1px solid rgba(11,13,16,0.10);
  border-radius: var(--radius);
  padding: 1.05rem 1.1rem;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(20,184,166,0.30);
}
.card h3{ margin:0 0 .35rem; font-size: 1.08rem; letter-spacing:-0.01em; }
.card p{ margin:0; color: var(--muted); }
.page-title{
  padding: 2.2rem 0 1.1rem;
  background: var(--surface);
  border-bottom: 1px solid rgba(11,13,16,0.08);
}
.page-title h1{ margin: 0.2rem 0 0.6rem; }
.breadcrumbs{ color: var(--muted); font-size: .94rem; }
.content{
  background: var(--white);
  border: 1px solid rgba(11,13,16,0.10);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.content h2{ margin-top: 1.55rem; }
.content h2:first-child{ margin-top: 0; }
.content ul{ padding-left: 1.1rem; }
.form{ display:grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.form .full{ grid-column: 1 / -1; }
@media(max-width:980px){.form{ grid-template-columns: 1fr; }}
label{ display:block; font-weight: 750; margin-bottom: .35rem; font-size: .94rem; }
input, select, textarea{
  width:100%;
  padding: .8rem .85rem;
  border-radius: 12px;
  border: 1px solid rgba(11,13,16,0.14);
  background: #fff;
  font: inherit;
}
input:focus, select:focus, textarea:focus{
  outline:none;
  border-color: rgba(20,184,166,0.60);
  box-shadow: 0 0 0 4px rgba(20,184,166,0.12);
}
textarea{ min-height: 160px; resize: vertical; }
.notice{
  border-radius: var(--radius-sm);
  border: 1px solid rgba(20,184,166,0.28);
  background: rgba(20,184,166,0.08);
  padding: .85rem 1rem;
  color: #0b5c55;
}
.notice.error{
  border-color: rgba(220,38,38,0.25);
  background: rgba(220,38,38,0.06);
  color: #7f1d1d;
}
hr.sep{ border:none; border-top: 1px solid rgba(11,13,16,0.10); margin: 1.2rem 0; }
.table-like{ display:grid; grid-template-columns: 180px 1fr; gap: .75rem 1rem; }
@media(max-width:980px){.table-like{ grid-template-columns: 1fr; }}
.table-like .key{ color: var(--muted); font-weight: 750; }
.table-like .val{ color: var(--text); }
.badge{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.22rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(11,13,16,0.12);
  background: rgba(11,13,16,0.03);
  color: var(--text);
  font-size: .88rem;
  font-weight: 780;
}
.footer{
  padding: 2.2rem 0;
  border-top: 1px solid rgba(11,13,16,0.10);
  margin-top: 2.0rem;
  background: var(--surface);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}
@media(max-width:980px){.footer-grid{ grid-template-columns: 1fr; }}
.footer small, .footer a{ color: var(--muted); }
.footer a:hover{ color: var(--teal); }
.footer h4{ margin:0 0 .55rem; font-size: 1rem; }
.attributes-row{
  gap: 1.05rem;
}
.attr{
  padding: .88rem .92rem;
}
.disclosure summary{
  display: flex;
  align-items: center;
  gap: .5rem;
}
.disclosure summary::before{
  content: "▸";
  display: inline-block;
  color: var(--muted);
  font-weight: 900;
  transform: translateY(-1px);
  transition: transform .15s ease, color .15s ease;
}
.disclosure[open] summary::before{
  content: "▾";
  color: var(--text);
}
.stage .attributes{
  margin-top: 1.9rem;
}
.attributes-row{
  gap: 1.35rem;
}
.attributes-row.attributes-vertical{
  grid-template-columns: 1fr !important;
  gap: 1.05rem !important;
}
.attr.attr-row{
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}
.attr-content{
  flex: 1 1 auto;
  min-width: 0;
}
.attr.attr-row .attr-title{
  white-space: nowrap;
}
.attr.attr-row .attr-sub{
  margin-top: .22rem;
  max-width: 78ch;
}
.attr.attr-row .attr-icon{
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: grid;
  place-items: center;
}
.attr.attr-row .attr-icon img{
  width: 72px;
  height: 72px;
}
@media(max-width:980px){.attr.attr-row .attr-icon,
  .attr.attr-row .attr-icon img{
    width: 60px;
    height: 60px;
  }.attr.attr-row .attr-icon{ flex-basis: 60px; }.attr.attr-row{ gap: .95rem; }}
@media(max-width:420px){.attr.attr-row .attr-title{ white-space: normal; }}
.home-hero{
  max-width: 920px;
  margin: 0 auto;
}
.home-hero .kicker,
.home-hero h1,
.home-hero .lead{
  text-align: center;
}
.home-hero .stage-actions{
  justify-content: center;
}
.home-hero .attributes{
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.home-media-wrap{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}
.hero-visual__media{
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(11,13,16,0.12);
  box-shadow: 0 14px 34px rgba(11,13,16,0.18);
  height: 360px;
  background: #000;
}
body.home-bg .hero-visual__media{
  border-color: rgba(255,255,255,0.14);
}
.hero-visual__media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  filter: saturate(1.02) contrast(1.02);
}
.hero-visual__media::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 50%, rgba(0,0,0,0.00) 60%, rgba(0,0,0,0.22) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.00) 70%, rgba(0,0,0,0.16) 100%);
}
@media(max-width:980px){.hero-visual__media{ height: 260px; }}
.apps-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
@media (max-width: 980px){.apps-grid{ grid-template-columns: 1fr; }}
.app-card{
  position: relative;
  border: 1px solid rgba(11,13,16,0.10);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.app-card summary{
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-rows: auto auto;
}
.app-card summary::-webkit-details-marker{ display:none; }
.app-img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display:block;
}
@media (max-width: 980px){.app-img{ height: 200px; }}
.app-title{
  padding: .95rem 1.0rem 1.05rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 1.08rem;
}
.app-info{
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(11,13,16,0.12);
  box-shadow: var(--shadow);
  padding: 1.0rem 1.0rem;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .14s ease, transform .14s ease;
  backdrop-filter: blur(8px);
}
.app-info h3{
  margin: 0 0 .55rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.app-info ul{
  margin: 0;
  padding-left: 1.05rem;
  color: var(--muted);
}
.app-info li{ margin: .35rem 0; }
@media (hover: hover) and (pointer: fine){.app-card:hover .app-info{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }}
.app-card[open] .app-info{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.app-card summary::after{
  content: "i";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(255,255,255,0.92);
  background: rgba(11,13,16,0.55);
}
.app-card .app-info{
  user-select: text;
}
.home-hero .kicker,
.home-hero .lead{
  text-align: center;
}
.hero-title-box{
  max-width: 900px;
  margin: .75rem auto .75rem;
  padding: 1.05rem 1.15rem;
  background: var(--surface);
  border: 1px solid rgba(11,13,16,0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.hero-title-box h1{
  margin: 0;
  text-align: center;
}
.home-hero h1{ margin: 0; }
.hero-title-box{
  text-align: center;
  padding: 1.05rem 1.15rem 1.0rem;
}
.hero-title-box .hero-lead{
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-title-box .hero-lead{
  margin-top: .95rem;
}
.feature-card{
  padding: 0; 
}
.feature-summary{
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: .95rem 1.0rem;
  cursor: pointer;
  list-style: none;
}
.feature-summary::-webkit-details-marker{ display:none; }
.feature-summary::after{
  content: "▸";
  margin-left: auto;
  color: var(--muted);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1;
  transform: translateY(4px);
  transition: transform .15s ease, color .15s ease;
}
.feature-card[open] .feature-summary::after{
  content: "▾";
  color: var(--text);
}
.feature-card .attr-icon{
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: grid;
  place-items: center;
}
.feature-card .attr-icon img{
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.attr-teaser{
  margin-top: .20rem;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
  font-weight: 600;
}
@media(max-width:980px){.feature-summary{ gap: .95rem; }.feature-card .attr-icon,
  .feature-card .attr-icon img{ width: 60px; height: 60px; }.feature-card .attr-icon{ flex-basis: 60px; }}
.home-hero .stage-actions{
  justify-content: center;
}
.home-hero .stage-actions{
  display: flex;
  width: 100%;
  justify-content: center !important;
  align-items: center;
  flex-wrap: wrap;
}
.home-hero .stage-actions{
  display: block !important;
  width: 100%;
  text-align: center !important;
}
.home-hero .stage-actions .btn{
  margin: 0 .55rem .75rem;
}
.cta-blocks{
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 340px));
  gap: 1rem;
  justify-content: center;
}
@media(max-width: 820px){.cta-blocks{ grid-template-columns: minmax(260px, 420px); }}
.cta-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.05rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(11,13,16,0.10);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.cta-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(20,184,166,0.30);
}
.cta-title{
  font-weight: 950;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  color: var(--text);
}
.cta-sub{
  margin-top: .35rem;
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
  line-height: 1.45;
  max-width: 44ch;
}
.cta-primary{
  background: linear-gradient(180deg, rgba(11,13,16,1), rgba(17,21,27,1));
  border-color: rgba(11,13,16,0.25);
}
.cta-primary .cta-title{ color: var(--white); }
.cta-primary .cta-sub{ color: rgba(255,255,255,0.78); }
.cta-primary:hover{ border-color: rgba(20,184,166,0.45); }
.cta-secondary{
  background: var(--white);
}
.news-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.news-list .card{
  width: 100%;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius);
}
.news-list .card h3{
  font-size: 1.12rem;
}
:root{
  --surface: #F4F7FF;          
  --surface-2: #EEF4FF;        
  --tint: rgba(56,189,248,0.14);
  --tint-2: rgba(20,184,166,0.10);
}
body{
  background:
    radial-gradient(1200px 600px at 15% 0%, rgba(56,189,248,0.10), transparent 55%),
    radial-gradient(900px 520px at 85% 10%, rgba(20,184,166,0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}
.stage{
  background:
    radial-gradient(1200px 620px at 12% 8%, rgba(56,189,248,0.16), transparent 55%),
    radial-gradient(900px 540px at 88% 18%, rgba(20,184,166,0.12), transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, rgba(255,255,255,0) 90%);
}
.hero-title-box{
  background: linear-gradient(180deg, var(--surface-2), rgba(255,255,255,1));
  border-color: rgba(56,189,248,0.20);
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(244,247,255,0.55));
}
.card:hover{
  border-color: rgba(56,189,248,0.28);
}
.attributes{
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(244,247,255,0.60));
  border-color: rgba(56,189,248,0.16);
}
.page-title{
  background: var(--surface);
  border-bottom-color: rgba(56,189,248,0.18);
}
.news-list .card{
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(244,247,255,0.55));
}
.app-card{
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(244,247,255,0.55));
}
.app-card:hover{
  border-color: rgba(56,189,248,0.28);
}
.app-info{
  background: rgba(255,255,255,0.92);
  border-color: rgba(56,189,248,0.22);
}
.badge{
  border-color: rgba(56,189,248,0.24);
  background: rgba(56,189,248,0.10);
  color: var(--navy);
}
.footer{
  background: var(--surface);
}
.cta-card:hover{
  border-color: rgba(56,189,248,0.28);
}
.cta-primary{
  background: linear-gradient(180deg, #0B0D10 0%, #111827 100%);
}
:root{
  --radius: 10px;
  --radius-sm: 8px;
  --border: rgba(11,13,16,0.14);
  --surface: #F3F6FF;
  --surface-2: #EDF3FF;
  --shadow-sm: 0 6px 16px rgba(11,13,16,0.08);
  --shadow: 0 14px 44px rgba(11,13,16,0.10);
}
body{
  background: #ffffff;
}
header.site-header{
  border-top: 6px solid rgba(56,189,248,0.85);
}
.card, .content, .attributes, .cta-card, .app-card, .media{
  border-radius: var(--radius);
}
.hero-title-box{
  background: #ffffff;
  border: 1px solid rgba(11,13,16,0.12);
  border-left: 6px solid rgba(56,189,248,0.85);
  box-shadow: none;
}
.page-title{
  background: linear-gradient(180deg, var(--surface) 0%, rgba(255,255,255,0) 100%);
  border-bottom: 1px solid rgba(56,189,248,0.18);
}
.page-title h1{
  letter-spacing: -0.02em;
}
.btn{
  border-radius: 10px;
}
.card, .cta-card, .app-card{
  box-shadow: none;
  background: #ffffff;
}
.card:hover, .cta-card:hover, .app-card:hover{
  box-shadow: var(--shadow-sm);
}
.badge{
  border-radius: 999px;
  border-color: rgba(56,189,248,0.28);
  background: rgba(56,189,248,0.10);
}
.section{
  padding: 1.25rem 0;
}
.stage{
  background: linear-gradient(180deg, var(--surface) 0%, rgba(255,255,255,0) 95%);
}
.app-info{
  border-radius: var(--radius);
  background: rgba(255,255,255,0.94);
}
.footer{
  background: var(--surface);
}
:root{
  --radius: 0px;
  --radius-sm: 0px;
  --border: rgba(11,13,16,0.16);
  --shadow-sm: 0 4px 10px rgba(11,13,16,0.08);
  --shadow: 0 10px 28px rgba(11,13,16,0.10);
}
*{
  border-radius: 0 !important;
}
header.site-header{
  border-top: 10px solid rgba(56,189,248,0.90);
}
.nav-links a{
  text-transform: none;
  letter-spacing: .02em;
  font-size: .88rem;
  font-weight: 750;
}
.lang-switch{
  border-radius: 0 !important;
  padding: .38rem .55rem;
}
.btn{
  border-radius: 0 !important;
  padding: .84rem 1.1rem;
}
.hero-title-box{
  border-left: 10px solid rgba(56,189,248,0.90) !important;
  border-top: 1px solid rgba(11,13,16,0.12);
  border-right: 1px solid rgba(11,13,16,0.12);
  border-bottom: 1px solid rgba(11,13,16,0.12);
  background: #ffffff !important;
}
.card, .content, .attributes, .cta-card, .app-card, .media{
  border: 1px solid rgba(11,13,16,0.12) !important;
  box-shadow: none !important;
  background: #ffffff !important;
}
.card:hover, .cta-card:hover, .app-card:hover{
  box-shadow: var(--shadow-sm) !important;
  border-color: rgba(56,189,248,0.32) !important;
}
.badge{
  border-radius: 0 !important;
  padding: .22rem .55rem;
  background: rgba(56,189,248,0.10) !important;
  border: 1px solid rgba(56,189,248,0.28) !important;
}
.page-title{
  background: #ffffff !important;
  border-bottom: 1px solid rgba(56,189,248,0.24) !important;
}
.page-title::before{
  content:"";
  /* Removed light-blue strip above section headings (internal pages) */
  display:none;
  height: 0;
  background: transparent;
}
.stage{
  background: #ffffff !important;
}
.app-info{
  border: 1px solid rgba(56,189,248,0.24) !important;
}
.footer{
  background: #ffffff !important;
  border-top: 1px solid rgba(11,13,16,0.12) !important;
}
.flag{
  border-radius: 0 !important;
}
.cta-primary{
  background: #000000 !important;
  border-color: rgba(0,0,0,0.35) !important;
}
.cta-primary .cta-title{ color: #ffffff !important; }
.cta-primary .cta-sub{ color: rgba(255,255,255,0.80) !important; }
.btn-primary{
  background: #000000 !important;
  color: #ffffff !important;
}
.btn-primary:hover{
  background: #111111 !important;
}
:root{
  --accent-blue: rgba(56,189,248,0.90);
  --accent-blue-hover: rgba(56,189,248,1.00);
  --accent-blue-dark: rgba(2,132,199,0.95); 
}
.btn-primary{
  background: var(--accent-blue) !important;
  color: #ffffff !important;
  border-color: rgba(56,189,248,0.55) !important;
}
.btn-primary:hover{
  background: var(--accent-blue-dark) !important;
  color: #ffffff !important;
}
.cta-primary{
  background: var(--accent-blue) !important;
  border-color: rgba(56,189,248,0.55) !important;
}
.cta-primary:hover{
  background: var(--accent-blue-dark) !important;
  border-color: rgba(56,189,248,0.70) !important;
}
.cta-primary .cta-title{ color:#ffffff !important; }
.cta-primary .cta-sub{ color: rgba(255,255,255,0.86) !important; }
.news-gallery{
  margin-top: .85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
@media (max-width: 980px){.news-gallery{ grid-template-columns: 1fr; }}
.news-gallery picture,
.news-gallery img{
  display: block;
  width: 100%;
}
.news-gallery img{
  border: 1px solid rgba(11,13,16,0.14);
  background: #fff;
  height: 190px;
  object-fit: cover;
}
@media (max-width: 980px){.news-gallery img{ height: 240px; }}
.nav-linkedin, .footer-linkedin{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.nav-linkedin .li-icon{
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-linkedin .li-icon{
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.nav-linkedin .li-text{ line-height: 1; }
.footer-linkedin{
  color: var(--muted);
}
.footer-linkedin:hover{
  color: var(--teal);
}
html, body{
  overflow-x: hidden;
}
.nav-right{
  max-width: 100%;
  flex-wrap: wrap;
}
.home-hero .feature-card{
  background: rgba(11,13,16,0.04) !important; 
  border: 1px solid rgba(11,13,16,0.14) !important;
}
.home-hero .feature-summary{
  background: transparent !important;
}
.home-hero .feature-body{
  background: transparent !important;
}
.app-card summary picture,
.app-card summary picture img{
  display:block;
  width:100%;
}
.home-hero .feature-card .attr-icon{
  border-radius: 0 !important;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(11,13,16,0.14);
}
.home-hero .feature-card .attr-icon img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  display: block;
}
.home-hero .feature-card .attr-icon picture,
.home-hero .feature-card .attr-icon picture img{
  display:block;
  width:100%;
  height:100%;
}
@media (min-width: 981px){header.site-header .navbar{
    flex-wrap: wrap;
    align-items: center;
  }header.site-header .brand{
    flex: 0 0 auto;
    min-width: 280px; 
  }header.site-header .nav-links{
    flex: 1 1 auto;
    justify-content: center;
  }header.site-header .nav-right{
    width: 100%;
    justify-content: center;
    margin-top: .8rem;
    gap: .9rem;
  }}
.app-card summary{
  position: relative;
}
.app-card summary::after{
  content: "▸";
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(255,255,255,0.95);
  background: rgba(11,13,16,0.65);
}
.app-card[open] summary::after{
  content: "▾";
}
.mobile-lang{ display: none; }
@media (max-width: 980px){.mobile-lang{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .65rem;
    width: 100%;
    padding-top: .8rem;
    margin-top: .6rem;
    border-top: 1px solid rgba(11,13,16,0.14);
  }.mobile-lang a{
    font-weight: 850;
    text-decoration: none;
    color: var(--text);
  }.mobile-lang a.active{
    color: var(--navy);
  }.mobile-lang .sep{
    color: rgba(11,13,16,0.35);
    font-weight: 900;
  }}
header.site-header{
  border-top: none;
}
.topbar{
  width: 100%;
  background: #000000;
  padding: 1.05rem 0;
}
.topbrand{
  display: block;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-weight: 950;
  font-size: 2.05rem;
  letter-spacing: 0.3px;
  text-decoration: none;
}
.navrow{
  background: #ffffff;
  border-bottom: 1px solid rgba(11,13,16,0.14);
}
.navrow-inner{
  display: grid;
  /* Use minmax(0,1fr) so left/right content cannot "push" the center column off-axis */
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: .85rem 0;
}

.nav-left,
.nav-right{
  min-width: 0;
}
.nav-left{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.nav-center{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

/* Desktop: keep nav tabs and CTA buttons individually centered to the page axis */
@media (min-width: 981px){
  .nav-center{
    flex-direction: column;
    flex-wrap: nowrap;
    gap: .65rem;
  }
  .nav-ctas{
    justify-content: center;
  }
}
.nav-center .nav-links{
  position: static;
  display: flex;
  align-items: center;
  gap: 1.05rem;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}
.nav-center .mobile-lang{
  display: none !important;
}
.nav-ctas{
  display: flex;
  align-items: center;
  gap: .8rem;
}
.nav-right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 980px){.topbar{ padding: .9rem 0; }.topbrand{ font-size: 1.7rem; }.navrow-inner{
    grid-template-columns: 1fr;
    padding: .7rem 0;
  }.nav-right{ display: none; }.nav-ctas{ display: none; }.nav-center{ justify-content: flex-start; }.nav-center .nav-links{
    position: fixed;
    left: 1.1rem;
    right: 1.1rem;
    top: 148px; 
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    box-shadow: var(--shadow);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
    z-index: 60;
  }.nav-center .nav-links.open{ display: flex; }.mobile-lang{ display: flex !important; }}
.topbar::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.40);
}
.topbrand{
  position: relative;
  font-size: 2.55rem;
  font-weight: 980;
}
@media (max-width: 980px){.topbrand{ font-size: 2.05rem; }}
body.home-bg{
  background: #000;
}
.home-bg .hero-title-box,
.home-bg .attributes,
.home-bg .feature-card,
.home-bg .cta-card,
.home-bg .media,
.home-bg .content{
  background: rgba(255,255,255,0.86) !important;
  backdrop-filter: blur(6px);
}
.home-bg .feature-problem{
  background: rgba(56,189,248,0.12) !important;
}
@media (max-width: 980px){.nav-center .nav-links .mobile-lang{
    display: flex !important;
  }}
.app-title{
  position: relative;
  text-align: center;
  padding-right: 1.6rem; 
}
.app-title::after{
  content: "▸";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: rgba(11,13,16,0.72);
}
.app-card[open] .app-title::after{
  content: "▾";
}
@media (max-width: 980px){.app-info{
    position: static !important;
    inset: auto !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    margin: 0 0 0;
    border-top: 1px solid rgba(11,13,16,0.12);
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0 !important;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
  }details.app-card:not([open]) .app-info{
    display: none;
  }}
.topbar{
  background: #000000 !important;
  background-image: none !important;
}
.topbar::before{ content: none !important; }
.topbrand{
  font-size: 2.85rem !important;
  font-weight: 980 !important;
}
body.home-bg::before{
  background-image: image-set(
    url("../img/brand-bg.webp") type("image/webp"),
    url("../img/brand-bg.jpg") type("image/jpeg")
  ) !important;
  filter: saturate(1.02) contrast(1.03) brightness(0.78);
}
.home-bg .hero-title-box,
.home-bg .attributes,
.home-bg .feature-card,
.home-bg .cta-card,
.home-bg .media,
.home-bg .content{
  background: rgba(255,255,255,0.88) !important;
  backdrop-filter: blur(7px);
}
:root{
  --accent-blue: rgba(56,189,248,0.90);
  --accent-blue-dark: rgba(2,132,199,0.95);
}
.btn-primary{
  background: var(--accent-blue) !important;
  color: #ffffff !important;
  border-color: rgba(56,189,248,0.55) !important;
}
.btn-primary:hover{
  background: var(--accent-blue-dark) !important;
}
.cta-primary{
  background: var(--accent-blue) !important;
  border-color: rgba(56,189,248,0.55) !important;
}
.cta-primary:hover{
  background: var(--accent-blue-dark) !important;
  border-color: rgba(56,189,248,0.70) !important;
}
.cta-primary .cta-title{ color:#ffffff !important; }
.cta-primary .cta-sub{ color: rgba(255,255,255,0.86) !important; }
.home-stage{ background: transparent !important; }
body.home-bg::before{
  background-image: image-set(
    url("../img/brand-bg.webp") type("image/webp"),
    url("../img/brand-bg.jpg") type("image/jpeg")
  ) !important;
}
body.home-bg::after{
  background: rgba(0,0,0,0.24) !important; 
}
.home-bg .kicker{
  color: rgba(255,255,255,0.95) !important;
  text-shadow: 0 3px 18px rgba(0,0,0,0.35);
}
.home-bg .disclosure summary{
  color: rgba(255,255,255,0.96) !important;
  background: rgba(0,0,0,0.38);
  padding: .70rem .85rem;
}
.home-bg .disclosure summary::before{
  color: rgba(255,255,255,0.90) !important;
}
.home-bg .disclosure[open] summary::before{
  color: rgba(255,255,255,0.96) !important;
}
.home-bg .disclosure p{
  background: rgba(255,255,255,0.92);
  padding: .85rem .95rem;
  border: 1px solid rgba(11,13,16,0.14);
  color: var(--text);
}
.home-bg .home-media{
  background: rgba(255,255,255,0.86) !important;
  backdrop-filter: blur(7px);
}
.home-bg .home-media picture{
  border: none !important;
  background: transparent !important;
  box-shadow: 0 10px 26px rgba(11,13,16,0.10);
}
.home-bg .home-media picture img{
  background: transparent !important;
}
.home-bg .home-media-text{
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(7px);
  border: 1px solid rgba(11,13,16,0.14);
  padding: 1.05rem 1.1rem;
}
.cta-primary .cta-title,
.cta-primary .cta-sub{
  opacity: 1 !important;
  visibility: visible !important;
}
.app-card summary::after{
  content: none !important;
}
@media (max-width: 980px){.app-info{
    position: static !important;
    inset: auto !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    border-top: 1px solid rgba(11,13,16,0.12);
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
  }details.app-card:not([open]) .app-info{ display: none; }}
body.home-bg::before{
  background-image: image-set(
    url("../img/brand-bg-1920.webp") type("image/webp") 1x,
    url("../img/brand-bg.webp") type("image/webp") 2x,
    url("../img/brand-bg-1920.jpg") type("image/jpeg") 1x,
    url("../img/brand-bg.jpg") type("image/jpeg") 2x
  ) !important;
  
  filter: saturate(1.05) contrast(1.05) brightness(0.82);
}
:root{
  --accent-blue: rgba(56,189,248,0.90);
  --accent-blue-dark: rgba(2,132,199,0.95);
}
.btn-primary{
  background: var(--accent-blue) !important;
  color: #fff !important;
  border-color: rgba(56,189,248,0.55) !important;
}
.btn-primary:hover{
  background: var(--accent-blue-dark) !important;
}
.cta-card.cta-primary{
  background: var(--accent-blue) !important;
  border-color: rgba(56,189,248,0.55) !important;
}
.cta-card.cta-primary:hover{
  background: var(--accent-blue-dark) !important;
  border-color: rgba(56,189,248,0.70) !important;
}
.cta-card.cta-primary .cta-title,
.cta-card.cta-primary .cta-sub{
  color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
}
@media (max-width: 980px){.nav-right{ display: flex !important; }.lang-switch{ display: inline-flex !important; }.nav-ctas{ display: flex !important; }.navrow-inner{
    grid-template-columns: auto 1fr auto !important;
    gap: .65rem !important;
    padding: .65rem 0 !important;
  }.nav-left{ justify-content: flex-start; }.nav-center{
    justify-content: center !important;
  }.nav-center .nav-links{
    top: 148px; 
  }.nav-ctas .btn{
    padding: .62rem .75rem !important;
    font-size: .86rem !important;
    font-weight: 850;
  }.lang-switch{
    padding: .30rem .42rem !important;
    font-size: .82rem !important;
    gap: .35rem !important;
  }.flag{ width: 14px; height: 11px; }.mobile-lang{ display: none !important; }}
body.home-bg .hero-title-box{
  border-left: none !important;
}
:root{
  --accent-orange: #d97706;
  --accent-orange-dark: #b45309;
  --accent-orange-border: rgba(217,119,6,0.60);
}
header.site-header .nav-ctas .btn{
  background: var(--accent-orange) !important;
  color: #ffffff !important;
  border-color: var(--accent-orange-border) !important;
  box-shadow: none !important;
}
header.site-header .nav-ctas .btn:hover{
  background: var(--accent-orange-dark) !important;
  color: #ffffff !important;
  border-color: rgba(180,83,9,0.70) !important;
}
.home-feature-section{ padding: 1.6rem 0 2.4rem; }
.home-feature-section .attributes{
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.home-feature-section .feature-card .attr-content{
  text-align: left;
}
.home-feature-section .feature-card{
  background: rgba(11,13,16,0.04) !important;
  border: 1px solid rgba(11,13,16,0.14) !important;
}
.home-feature-section .feature-summary{
  cursor: default !important;
}
.home-feature-section .feature-summary::after{
  content: none !important;
}
.home-feature-section .attr-teaser{
  color: var(--text);
}
.home-feature-section .attr-benefits{
  margin-top: .35rem;
  color: var(--muted);
  
  font-size: .84rem;
  line-height: 1.50;
  font-weight: 500;
}
.home-feature-section .feature-card .attr-icon{
  
  border-radius: 50% !important;
  overflow: hidden;
  background: transparent;
  border: 0;
}
.home-feature-section .feature-card .attr-icon img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  display: block;
}
.home-feature-section .feature-card .attr-icon picture,
.home-feature-section .feature-card .attr-icon picture img{
  display:block;
  width:100%;
  height:100%;
}
body.home-bg .home-feature-section .disclosure summary{
  color: var(--text) !important;
  background: transparent !important;
  padding: 0 !important;
  font-size: .88rem;
  font-weight: 600;
}
body.home-bg .home-feature-section .disclosure summary::before{
  color: var(--muted) !important;
}
body.home-bg .home-feature-section .disclosure[open] summary::before{
  color: var(--text) !important;
}
body.home-bg .home-feature-section .disclosure p{
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.50;
}
body.home-bg .cta-blocks .cta-card{
  background: var(--accent-orange) !important;
  border-color: var(--accent-orange-border) !important;
}
body.home-bg .cta-blocks .cta-card:hover{
  background: var(--accent-orange-dark) !important;
  border-color: rgba(180,83,9,0.70) !important;
}
body.home-bg .cta-blocks .cta-title,
body.home-bg .cta-blocks .cta-sub{
  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.home-media-wrap--hero{
  margin-top: 1.25rem;
}
@media (max-width: 980px){.navrow-inner{
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center !important;
    gap: .55rem;
  }.nav-left, .nav-center, .nav-right{
    display: flex;
    align-items: center;
    justify-content: center !important;
  }.nav-center .nav-links{
    position: fixed;
    left: 1.1rem;
    right: 1.1rem;
    top: 148px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    box-shadow: var(--shadow);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
    z-index: 60;
  }.nav-center .nav-links.open{ display: flex; }.nav-ctas{ display: flex !important; align-items: center; justify-content: center; gap: .5rem; }.nav-right{ display: flex !important; }.lang-switch{ display: inline-flex !important; }.nav-ctas .btn{
    padding: .60rem .72rem !important;
    font-size: .84rem !important;
  }.lang-switch{
    padding: .30rem .42rem !important;
    font-size: .82rem !important;
  }.flag{ width: 14px; height: 11px; }.mobile-lang{ display: none !important; }}
.team-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}
@media(max-width: 920px){.team-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }}
@media(max-width: 640px){.team-grid{ grid-template-columns: 1fr; }}
.team-card{
  padding: 1.25rem 1.25rem 1.1rem;
  text-align: left;
}
.team-head{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .75rem;
}
.team-meta{
  min-width: 0;
}
.team-avatar{
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 999px !important; 
}
.team-avatar picture{
  display: block;
  width: 100%;
  height: 100%;
}
.team-avatar img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: none !important;
  box-shadow: none !important;
  border-radius: 999px !important; 
}
.team-photo{
  width: 96px;
  height: 96px;
  border-radius: 999px;
  object-fit: cover;
  border: none;
  box-shadow: none;
}
.team-name{
  margin: 0;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  font-weight: 950;
}
.team-role{
  margin: .25rem 0 0;
  font-weight: 750;
  color: var(--navy);
  font-size: .92rem;
}
.team-summary{
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
}
.team-focus{
  margin: .55rem 0 0;
  font-weight: 750;
  font-size: .90rem;
  color: var(--muted);
}
.team-more{
  margin-top: .65rem;
}
.team-more summary{
  cursor: pointer;
  font-weight: 900;
  font-size: .92rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  user-select: none;
}
.team-more summary::-webkit-details-marker{ display: none; }
.team-more summary::after{
  content: "▾";
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform .18s ease;
}
.team-more[open] summary::after{
  transform: rotate(180deg) translateY(1px);
}
.team-long{
  margin: .55rem 0 0;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
}
@media(max-width: 640px){.team-card{ text-align: center; }.team-head{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }}
.kpi-box{
  background: var(--white);
  border: 1px solid rgba(11,13,16,0.10);
  border-radius: var(--radius);
  padding: 1.0rem 1.15rem;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
}
.kpi-box p{ margin:0; color: var(--muted); }
@media(max-width:980px){.kpi-box{ flex-direction: column; align-items:flex-start; }}
.hero-fields{
  max-width: 920px;
  margin: .95rem auto 1.00rem;
  padding: .75rem 1rem;
  text-align: center;

  border-radius: var(--radius);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(11,13,16,0.12);
}
.hero-fields__label{
  font-weight: 900;
  font-size: .95rem;
  margin-bottom: .35rem;
  color: #0B0D10;
}
.hero-fields__list{
  color: #0B0D10;
  font-weight: 650;
  font-size: .95rem;
  line-height: 1.45;
}
.usecase-carousel{
  max-width: 920px;
  margin: 0 auto;
}
.usecase-track{
  display: grid;
}
.usecase-slide{
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s ease;
}
.usecase-slide.is-active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.usecase-caption{
  margin-top: .85rem;
  padding: .95rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid rgba(11,13,16,0.10);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(7px);
  text-align: center;
}
.usecase-caption__title{
  font-weight: 950;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin-bottom: .25rem;
}
.usecase-caption p{
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.55;
}
.usecase-note{
  color: var(--muted);
  font-size: .92em;
}
.usecase-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  margin-top: .80rem;
}
.usecase-btn{
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
}
.usecase-btn:hover{
  background: rgba(255,255,255,0.18);
}
.usecase-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(56,189,248,0.22);
}
.usecase-dots{
  display: flex;
  gap: .45rem;
}
@media(max-width:980px){.hero-fields{ margin: .85rem auto .95rem; }.usecase-caption{ padding: .90rem .95rem; }}
.btn-primary,
.cta-primary,
.cta-card.cta-primary{
  background: var(--accent-orange) !important;
  color: #ffffff !important;
  border-color: var(--accent-orange-border) !important;
}
.btn-primary:hover,
.cta-primary:hover,
.cta-card.cta-primary:hover{
  background: var(--accent-orange-dark) !important;
  color: #ffffff !important;
  border-color: rgba(180,83,9,0.70) !important;
}
@media (min-width: 981px){html[lang="en"] header.site-header .nav-center{
    flex-wrap: wrap;
  }header.site-header .nav-ctas{
    flex: 0 0 100%;          
    justify-content: center; 
    margin-top: .45rem;      
  }}
.product-showcase{
  margin: 1.0rem 0 1.25rem;
}
.product-showcase h2{
  margin: 0 0 .75rem;
}
.accent-mint{
  color: var(--teal);
}
.attr-more{
  margin-top: .55rem;
}
.attr-more__summary{
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
  user-select: none;
  margin: 0;
}
.attr-more__summary::-webkit-details-marker{
  display:none;
}
.attr-more__chev{
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(11,13,16,0.14);
  background: rgba(255,255,255,0.85);
  color: rgba(11,13,16,0.70);
  font-weight: 900;
  transform: rotate(90deg);
  transition: transform .18s ease;
}
.attr-more[open] .attr-more__chev{
  transform: rotate(-90deg);
}
.product-grid{
  display: grid;
  gap: 1rem;
  align-items: stretch;
}
.product-grid--3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 980px){.product-grid--3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }}
@media (max-width: 680px){.product-grid--3{ grid-template-columns: 1fr; }}
.product-tile{
  border: 1px solid rgba(11,13,16,0.10);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(6px);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-tile__media{
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  aspect-ratio: 16 / 9;
  margin-bottom: .85rem;
}
.product-tile__media img{
  width: 100%;
  height: 100%;
  object-fit: contain; 
  object-position: center;
  display: block;
}
.product-tile__title{
  margin: 0 0 .25rem 0;
}
.product-tile__subline{
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}
.product-tile--placeholder{
  background: transparent;
  border: 1px dashed rgba(11,13,16,0.22);
}
.product-tile__media--placeholder{
  background: rgba(255,255,255,0.35);
}
.product-more{
  margin-top: .8rem;
}
.product-tile details.product-more{ margin-top: auto; }
.product-more__summary{
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  cursor: pointer;
  user-select: none;
  padding: .25rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(11,13,16,0.14);
  background: rgba(255,255,255,0.85);
}
.product-more__summary::-webkit-details-marker{
  display:none;
}
.product-more__label{
  color: var(--muted);
  font-size: .95rem;
}
.product-more__chev{
  font-weight: 900;
  color: rgba(11,13,16,0.70);
  transform: rotate(90deg);
  transition: transform .18s ease;
}
.product-more[open] .product-more__chev{
  transform: rotate(-90deg);
}
.product-more__body{
  margin-top: .85rem;
}
.product-more__text{
  margin: 0 0 .75rem 0;
  color: var(--muted);
}
.product-more__badges{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .75rem;
}
.product-more__proof{
  margin: 0 0 1rem 0;
  color: var(--muted);
  font-size: .95rem;
}
.product-more__actions{
  display: flex;
  gap: .6rem;
  align-items: center;
}

/* === Custom: Header claim + white homepage background (v96_cleaned_white) === */

/* Header: keep in|stead centered; place claim slightly to the right (near the logo) */
.topbar{
  position: relative;
}
.topbrand{
  display: block !important;
  width: 100%;
  text-align: center;
}
.topclaim{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 20.0rem; /* tweak this value if you want it closer/further */
  white-space: nowrap;
  font-size: .92rem;
  font-weight: 780;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  pointer-events: none;
}

/* Mobile: place claim below the brand */
@media (max-width: 980px){
  .topclaim{
    position: static;
    transform: none;
    margin-left: 0;
    display: block;
    text-align: center;
    white-space: normal;
    padding-top: .25rem;
    font-size: .78rem;
    letter-spacing: .08em;
  }
}

/* Homepage: remove background image and use solid white */

body.home-bg{
  background: #ffffff !important;
}
body.home-bg::before,
body.home-bg::after{
  content: none !important;
  background: none !important;
  background-image: none !important;
}

/* Keep homepage typography readable on white */
.home-bg .kicker{
  color: var(--teal) !important;
  text-shadow: none !important;
}
.home-bg .disclosure summary,
body.home-bg .home-feature-section .disclosure summary{
  color: var(--text) !important;
  background: transparent !important;
  padding: 0 !important;
}
.home-bg .disclosure summary::before,
body.home-bg .home-feature-section .disclosure summary::before{
  color: var(--muted) !important;
}
.home-bg .disclosure[open] summary::before,
body.home-bg .home-feature-section .disclosure[open] summary::before{
  color: var(--text) !important;
}

/* === FRAMELESS OVERRIDES (added) === */
/* Remove borders/frames from key content modules while keeping layout intact */
.content,
.card,
.attr{
  border: 0 !important;
  box-shadow: none !important;
}

/* Disable "lift" and shadow on hover that can read as a frame */
.card:hover,
.attr:hover{
  box-shadow: none !important;
  border-color: transparent !important;
  transform: none !important;
}

/* Some cards use inner wrappers that also carry borders */
.feature-summary,
.feature-card,
.team-card{
  border: 0 !important;
  box-shadow: none !important;
}

/* If any panels draw borders via pseudo elements */
.content::before, .content::after,
.card::before, .card::after,
.attr::before, .attr::after{
  border: 0 !important;
  box-shadow: none !important;
}

/* Forms and fields: remove outlines/frames */
input, textarea, select, button, fieldset{
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  background-image: none !important;
}

/* Images/media: no frames */
img, figure, picture, video, svg{
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

/* === FRAMELESS OVERRIDES v3 (stronger, scoped to main) ===
   "Rahmen" on this site are created by borders, inset shadows and also
   by card-like backgrounds. The rules below remove those visual frames
   from the main content while leaving the header/navigation unchanged.
*/

/* Neutralize shared design tokens if used */
:root{
  --border: transparent;
  --shadow: none;
  --shadow-sm: none;
}

/* Core content modules (explicit) */
main .card,
main .content,
main .attr,
main .attributes,
main .feature-card,
main .feature-summary,
main .cta-card,
main .app-card,
main .media,
main .product-tile,
main .product-tile__media,
main .team-card,
main .team-member,
main .team-tile{
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  background-image: none !important;
}

/* Generic safety net for card/box naming conventions */
main [class*="card"],
main [class*="tile"],
main [class*="panel"],
main [class*="box"]{
  border: 0 !important;
  box-shadow: none !important;
}

/* Pseudo-elements sometimes draw 1px frames */
main .card::before, main .card::after,
main .content::before, main .content::after,
main .attr::before, main .attr::after,
main .feature-card::before, main .feature-card::after,
main .feature-summary::before, main .feature-summary::after,
main [class*="card"]::before, main [class*="card"]::after,
main [class*="tile"]::before, main [class*="tile"]::after,
main [class*="panel"]::before, main [class*="panel"]::after,
main [class*="box"]::before, main [class*="box"]::after{
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Remove divider lines within framed modules */
main .disclosure,
main .disclosure summary,
main details,
main summary{
  box-shadow: none !important;
  border: 0 !important;
}

/* Dividers that appear as frames */
hr{
  border: 0 !important;
}
.nowrap{ white-space: nowrap; }
/* Center the 3-line hero headline */
.home-hero .hero-title-box{
  text-align: center;
}

.home-hero .hero-title-box h1{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* Center each hero line (fixes "3rd line not centered") */
.hero-headline{
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers each line as an item */
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  /* Slightly smaller than the global H1 size (homepage hero) */
  font-size: clamp(2.65rem, 5.1vw, 5.6rem);
}

.hero-line{
  display: inline-block; /* line has its own width, can be centered */
}

.nowrap{ white-space: nowrap; }

.hero-white{ color: #fff; } /* falls du das brauchst */

.nowrap{ white-space: nowrap; }
.hero-white{ color: #fff; }
/* Home hero headline: truly centered (all lines) */
.home-hero .hero-title-box .home-hero-title{
  width: 100%;
  text-align: center !important;
  margin: 0 auto;
  font-size: clamp(3.5rem, 6.5vw, 8.5rem); /* bei Bedarf erhöhen */
  line-height: 1.0;
  font-weight: 750;
}

.nowrap{ white-space: nowrap; }
.hero-white{ color: #fff; }

/* Prevent accidental offsets on inner spans */
.home-hero .hero-title-box .home-hero-title .accent-mint{
  margin: 0 !important;
  display: inline;
}
/* More space between hero headline and lead text (EN + DE) */
.home-hero .hero-title-box h1{
  margin-bottom: 4.2rem;
}

.home-hero .hero-title-box .hero-lead{
  margin-top: 0;
}
/* ==============================
   Home (DE/EN): Full-height hero + pillars carousel
   ============================== */

:root{ --header-h: 96px; }

/* Make the first home section fill the viewport down to the bottom edge (minus sticky header) */
.home-stage{
  min-height: calc(100svh - var(--header-h));
  padding: 1.25rem 0 0;
  display: flex;
  align-items: stretch;
}
.home-stage > .container{
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
}
.home-stage .home-hero{
  flex: 1 1 auto;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.home-stage .hero-title-box.hero-title-box--full{
  flex: 1 1 auto;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100svh - var(--header-h) - 1.25rem);
  padding: 1.55rem 1.45rem 1.65rem;
}

/* Let "space-between" drive the vertical rhythm */
.home-stage .hero-title-box.hero-title-box--full h1{
  margin-bottom: 0 !important;
}
.home-stage .hero-title-box.hero-title-box--full .hero-lead{
  margin-top: 0 !important;
}

@media (max-width: 820px){
  .home-stage{
    padding-top: .95rem;
  }
  .home-stage .hero-title-box.hero-title-box--full{
    min-height: auto;
    gap: 1.35rem;
  }
}

/* Pillars carousel (image centered + overlay text box) */
.home-pillars{
  padding: 2.9rem 0 3.2rem;
}

.pillars-carousel{
  max-width: 980px;
  margin: 0 auto;
}

.pillars-viewport{
  overflow: hidden;
}

.pillars-track{
  display: flex;
  transform: translateX(0%);
  transition: transform .55s ease;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce){
  .pillars-track{ transition: none; }
}

.pillars-slide{
  flex: 0 0 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
  padding: 1.75rem 0 1.25rem;
}

@media (max-width: 980px){
  .pillars-slide{ min-height: 470px; }
}

.pillars-slide img{
  width: min(560px, 88vw);
  height: auto;
  display: block;
}

.pillars-overlay{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, 90%);
  pointer-events: none;
}

.pillars-textbox{
  background: rgba(255,255,255,0.40);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 1.05rem 1.15rem;
  text-align: center;
}

.pillars-title{
  color: #000;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
}

.pillars-desc{
  margin-top: .70rem;
  color: #000;
  font-weight: 500;
  line-height: 1.35;
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
}



.pillars-controls{
  margin-top: .85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .35rem;
}

.pillars-control{
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: .22rem .35rem;
  border-radius: 10px;
  color: #000;
  font-weight: 850;
  line-height: 1;
  transition: background .12s ease, transform .12s ease;
}

.pillars-control:hover{
  background: rgba(255,255,255,0.55);
}

.pillars-control:active{
  transform: translateY(1px);
}

.pillars-arrow{
  font-size: 1.55rem;
  padding: .18rem .52rem;
}

.pillars-dot{
  font-size: 1.20rem;
  width: 1.55rem;
  text-align: center;
}

/* Keep the CTA cards visually separated from the carousel */
.home-pillars .cta-blocks{
  margin-top: 1.7rem;
}

/* ==============================
   Home refinements (centering, proportions, fixed header)
   ============================== */

/* Keep header pinned (no movement while scrolling) */
header.site-header{
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
}

/* Prevent content from sliding under the fixed header */
body{
  padding-top: var(--header-h);
}

/* Home hero: fill viewport under header, but keep headline centered and reduce the gap */
.home-stage{
  min-height: calc(100svh - var(--header-h));
  padding: 0 !important;
}

.home-stage > .container{
  min-height: calc(100svh - var(--header-h));
}

.home-stage .hero-title-box.hero-title-box--full{
  min-height: calc(100svh - var(--header-h));
  margin: 0 auto !important;
  justify-content: center !important;
  align-items: center;
  gap: clamp(1.05rem, 3.2vh, 2.0rem);
  padding: clamp(1.6rem, 6vh, 4.25rem) 1.45rem;
}

.home-stage .hero-title-box.hero-title-box--full h1{
  margin: 0 !important;
}

.home-stage .hero-title-box.hero-title-box--full .hero-lead{
  margin: 0 !important;
  font-size: clamp(1.10rem, 1.35vw, 1.32rem);
  line-height: 1.55;
  max-width: 78ch;
}

/* Carousel: bigger icon, slightly larger copy but smaller relative to the icon */
.pillars-slide{
  /* Give the carousel enough height so the icon sits visually in the middle of the page */
  min-height: 820px;
  padding: 2.55rem 0 1.70rem;
}

@media (max-width: 980px){
  .pillars-slide{ min-height: 660px; }
}

.pillars-slide img{
  width: min(980px, 95vw);
}

.pillars-overlay{
  width: min(920px, 92%);
}

.pillars-textbox{
  /* Slightly less transparent than before for readability */
  background: rgba(255,255,255,0.62);
  padding: 1.45rem 1.65rem;
  border-radius: 16px !important;
}

.pillars-title{
  font-size: clamp(2.75rem, 3.05vw, 4.10rem);
}

.pillars-desc{
  font-size: clamp(1.25rem, 1.22vw, 1.65rem);
  line-height: 1.28;
}

/* Keep the pillars block centered within the viewport; CTAs flow below */
.pillars-carousel{
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* ==============================
   v101: Home carousel sizing + alignment fixes (Jan 2026)
   ============================== */

:root{
  --brand-green: #0b3d2e;
}

/* Ensure the hero section ends exactly at the bottom viewport edge (desktop/tablet)
   so the next section starts immediately below (visible on a light scroll). */
@media (min-width: 821px){
  .home-stage{
    height: calc(100svh - var(--header-h)) !important;
    min-height: 0 !important;
  }
  .home-stage > .container,
  .home-stage .home-hero,
  .home-stage .hero-title-box.hero-title-box--full{
    height: 100% !important;
    min-height: 0 !important;
  }
}

/* Reduce top spacing so the carousel starts right after the fold */
.home-pillars{
  padding-top: 1.0rem !important;
}

/* Stop vertically centering the pillars block within a viewport-height container */
.pillars-carousel{
  min-height: unset !important;
  display: block !important;
}

/* Carousel viewport: reserve side space for arrows so they sit next to the image (not on top) */
.pillars-viewport{
  position: relative;
  padding-inline: clamp(.75rem, 4vw, 3.0rem);
}

/* Slightly smaller, consistently centered images */
.pillars-slide{
  min-height: 560px !important;
  padding: 1.25rem 0 1.05rem !important;
}
@media (max-width: 980px){
  .pillars-slide{
    min-height: 440px !important;
    padding: 1.05rem 0 .95rem !important;
  }
}

.pillars-slide img{
  /* Slightly larger images while remaining responsive */
  width: min(590px, 86vw) !important;
  margin: 0 auto;
}

.pillars-overlay{
  width: min(760px, 92%) !important;
}

/* Overlay typography: dark green + more refined hierarchy */
.pillars-textbox{
  /* Slightly more transparent so the image comes through more */
  background: rgba(255,255,255,0.32) !important;
  border-color: rgba(11,61,46,0.18) !important;
}

.pillars-title{
  color: var(--brand-green) !important;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  letter-spacing: -0.015em;
}

.pillars-desc{
  color: rgba(11,61,46,0.92) !important;
}

/* Dots remain below the image */
.pillars-controls{
  margin-top: .55rem !important;
}

.pillars-control{
  color: var(--brand-green) !important;
}

/* Side arrows (bigger + better styling) */
.pillars-side{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(44px, 4.2vw, 58px);
  height: clamp(44px, 4.2vw, 58px);
  border-radius: 999px;
  border: 1px solid rgba(11,13,16,0.18);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 10px 22px rgba(11,13,16,0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--brand-green);
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  z-index: 5;
}

.pillars-side:hover{
  background: rgba(255,255,255,0.95);
  box-shadow: 0 18px 60px rgba(11,13,16,0.14);
}

.pillars-side:active{
  transform: translateY(-50%) scale(0.98);
}

.pillars-side--prev{ left: .35rem; }
.pillars-side--next{ right: .35rem; }

.pillars-icon{
  width: clamp(22px, 2.2vw, 28px);
  height: clamp(22px, 2.2vw, 28px);
}

/* Header alignment hardening (desktop): keep middle column truly centered */
@media (min-width: 981px){
  .navrow-inner{
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }
  .nav-center{
    justify-self: center;
  }
}

/* ==============================
   v103: Pillars carousel switches by replacing the current slide (no horizontal translate)
   Prevents any centering drift across browsers and viewport changes.
   ============================== */

.pillars-track{
  display: grid !important;
  grid-template-columns: 1fr;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}

.pillars-slide{
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition: opacity .22s ease;
}

@media (prefers-reduced-motion: reduce){
  .pillars-slide{ transition: none; }
}

.pillars-slide.is-active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

/* ==============================
   v105: Pillars carousel centering + constant appearance (Jan 2026)
   ============================== */

/* 1) Make the viewport a 3-column grid:
      [prev-arrow] [slides] [next-arrow]
   This guarantees that the slide column is mathematically centered, which aligns
   the image axis exactly with the header CTA axis (both are centered within the
   same .container/max-width rhythm).
*/
:root{
  --pillars-arrow-size: clamp(44px, 4.2vw, 58px);
  --pillars-arrow-gap: clamp(.35rem, 2vw, 1.1rem);
}

.pillars-viewport{
  display: grid !important;
  grid-template-columns: var(--pillars-arrow-size) minmax(0, 1fr) var(--pillars-arrow-size);
  align-items: center;
  column-gap: var(--pillars-arrow-gap);
  padding-inline: 0 !important; /* remove asymmetries introduced by viewport padding */
  overflow: visible !important; /* prevents arrow shadows from being clipped */
}

.pillars-track{ grid-column: 2; width: 100%; }

.pillars-side{
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  width: var(--pillars-arrow-size) !important;
  height: var(--pillars-arrow-size) !important;
}

.pillars-side--prev{ grid-column: 1; justify-self: end; }
.pillars-side--next{ grid-column: 3; justify-self: start; }

.pillars-side:active{
  transform: scale(0.98) !important;
}

/* 2) Keep appearance constant:
      remove the slide fade (it multiplies the overlay alpha and looks like a
      "transparency change" after the slide becomes active).
*/
.pillars-slide{
  transition: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none;
  display: none !important;
}

.pillars-slide.is-active{
  display: flex !important;
  pointer-events: auto;
}




/* ==============================
   v107: Pillars carousel slide transition (Jan 2026)
   Restore directional movement on navigation ("from right" on next).
   Keeps the v105 centering/appearance hardening intact (no fade; only transform).
   ============================== */

.pillars-track{
  overflow: hidden;
}

/* Use compositor-friendly transforms for smoother motion */
.pillars-slide{
  transform: translate3d(0,0,0);
  will-change: transform;
  backface-visibility: hidden;
}

/* During navigation we keep both slides temporarily visible so the motion is perceptible */
.pillars-slide.is-entering,
.pillars-slide.is-leaving{
  display: flex !important;
}

.pillars-slide.is-entering{ z-index: 2; }
.pillars-slide.is-leaving{ z-index: 1; }

/* Constant-speed slide movement (no easing "pause" at start/end) */
.pillars-slide.is-transitioning{
  transition-property: transform !important;
  transition-duration: .45s !important;
  transition-timing-function: linear !important;
}

@media (prefers-reduced-motion: reduce){
  .pillars-slide.is-transitioning{ transition: none !important; }
}

/* ==============================
   v106: Home use cases (chips) section
   ============================== */

.home-usecases{
  padding: 3.35rem 0 3.85rem;
  background: linear-gradient(180deg, rgba(11,61,46,0.035), rgba(11,61,46,0.018));
  border-top: 1px solid rgba(11,61,46,0.10);
}


.usecases-wrap{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.usecases-eyebrow{
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 880;
  color: rgba(11,61,46,0.78);
}

.usecases-title{
  margin: .42rem 0 0;
  font-size: clamp(2.05rem, 3.4vw, 2.85rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 750;
  color: #000;
}


.usecases-sub{
  margin: .82rem auto 0;
  max-width: 76ch;
  color: var(--muted);
  font-size: 1.03rem;
}

.usecases-chips{
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
}

.usecase-chip{
  display: inline-flex;
  align-items: center;
  padding: .62rem .98rem;
  border-radius: 999px;
  border: 1px solid rgba(11,61,46,0.22);
  background: rgba(255,255,255,0.60);
  backdrop-filter: blur(6px);
  color: var(--brand-green);
  font-weight: 780;
  font-size: .98rem;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(11,13,16,0.06);
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.usecase-chip:hover{
  background: rgba(255,255,255,0.92);
  border-color: rgba(11,61,46,0.32);
  box-shadow: 0 18px 60px rgba(11,13,16,0.10);
  transform: translateY(-1px);
}

.usecase-chip:active{
  transform: translateY(0);
}

.usecase-chip:focus-visible{
  outline: 3px solid rgba(20,184,166,0.42);
  outline-offset: 2px;
}

.usecases-cta{
  margin-top: 1.35rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 520px){
  .home-usecases{ padding: 2.35rem 0 2.6rem; }
  .usecases-sub{ font-size: 1.0rem; }
  .usecase-chip{ font-size: .94rem; padding: .58rem .90rem; }
}


/* ==============================
   v107: Index stripes + carousel centering + application tiles
   ============================== */

:root{
  /*
    Startseite: Streifen-Hintergründe entfernen.
    Alle Index-„Stripes“ werden über --stripe-kaki gesteuert.
    Setzen wir ihn auf Weiß, ist der gesamte Seitenhintergrund durchgehend weiß.
  */
  --stripe-kaki: #ffffff;
}

/* Background stripes on index: header-to-fold (kaki), carousel (white), applications (kaki) */
.home-stage{
  background: var(--stripe-kaki) !important;
  min-height: calc(100svh - var(--header-h, 80px));
  display: flex;
  align-items: center;
  padding: clamp(2.6rem, 6.5vh, 4.4rem) 0 clamp(1.1rem, 3.0vh, 1.8rem) !important;
}

.home-pillars{
  background: #fff !important;
  padding: 0.8rem 0 1.0rem !important; /* reaches just under the dots */
  border-top: 0 !important;
}

.home-usecases{
  background: var(--stripe-kaki) !important;
  border-top: 0 !important;
  padding: 3.2rem 0 3.6rem !important;
}

/* Carousel: ensure the image column is mathematically centered between the two arrows */
.pillars-viewport{
  justify-items: center;
}
.pillars-track{
  justify-self: center;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.pillars-slide{
  margin: 0 auto !important;
}
.pillars-side--prev,
.pillars-side--next{
  justify-self: center !important;
}

/* Application tiles */
.usecases-wrap{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.usecases-title{
  font-size: clamp(2.4rem, 4.8vw, 3.4rem) !important;
  letter-spacing: -0.015em;
  margin: 0 0 .75rem 0;
}

.usecases-sub{
  max-width: 760px;
  margin: 0 auto;
}

.usecases-tiles{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 1.75rem;
}


@media (max-width: 860px){
  .usecases-tiles{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .usecases-tiles{ grid-template-columns: 1fr; }
}

.usecase-tile{
  background: rgba(255,255,255,0.95);
  border: 2.5px solid var(--brand-green);
  border-radius: 26px;
  padding: 1.45rem 1.25rem;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  color: var(--brand-green);
  box-shadow: 0 16px 36px rgba(11,13,16,0.08);
  cursor: default;
  transition: transform .18s ease, box-shadow .18s ease, opacity .22s ease, border-color .18s ease, background .18s ease;
  opacity: 0;
  transform: translateY(10px);
  transition-delay: var(--d, 0ms);
}


.usecase-tile:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,1);
  border-color: var(--brand-green);
  box-shadow: 0 22px 48px rgba(11,13,16,0.12);
}


/* ==============================
   v104: Home hero without white card background
   ============================== */

body.home-bg .home-stage .hero-title-box.hero-title-box--full{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.home-bg .home-stage .hero-title-box.hero-title-box--full h1{
  color: rgba(255,255,255,0.96);
  text-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

body.home-bg .home-stage .hero-title-box.hero-title-box--full .hero-lead{
  color: rgba(255,255,255,0.82) !important;
  text-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

body.home-bg .home-stage .hero-title-box.hero-title-box--full .hero-dark{
  color: rgba(255,255,255,0.90) !important;
}

.usecases-wrap.is-visible .usecase-tile{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .usecase-tile{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==============================
   v105: Home hero typography (black/grey) + application tiles in brand green
   ============================== */

/* Slightly brighten the home background image so black/grey typography stays readable
   (no white "card" behind the hero copy). */
body.home-bg::before{
  filter: saturate(1.02) contrast(1.03) brightness(1.02) !important;
}
body.home-bg::after{
  background: rgba(255,255,255,0.62) !important;
}

/* Hero headline + lead text colors */
body.home-bg .home-stage .hero-title-box.hero-title-box--full h1{
  color: var(--text) !important;
  text-shadow: none !important;
}

body.home-bg .home-stage .hero-title-box.hero-title-box--full .hero-lead{
  color: var(--muted) !important;
  text-shadow: none !important;
}

/* "in|stead" black within the grey lead */
body.home-bg .home-stage .hero-title-box.hero-title-box--full .hero-lead strong{
  color: var(--text) !important;
}

/* Ensure "with/mit" (hero-dark) renders in black */
body.home-bg .home-stage .hero-title-box.hero-title-box--full .hero-dark{
  color: var(--text) !important;
}

/* Use-cases title: bigger + same typographic feel as the main hero headline */
.home-usecases .usecases-title{
  font-size: clamp(3.0rem, 4.8vw, 4.8rem) !important;
  font-weight: 900 !important;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text) !important;
}

/* Application tiles: dark green (carousel copy color), rounded boxes with matching frame */
.usecase-tile{
  border-color: rgba(11,61,46,0.72) !important;
  color: var(--brand-green) !important;
}

.usecase-tile:hover{
  border-color: rgba(11,61,46,0.92) !important;
}

/* ==============================
   v106: Use-cases tiles as white rounded cards + new split section (Pappe/Holz)
   ============================== */

/* "Anwendungsfelder" in the same typographic feel as the hero headline */
.home-usecases .usecases-title{
  font-size: clamp(3.2rem, 5.2vw, 5.2rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.02 !important;
  color: var(--text) !important;
}

/* White tiles with dark-green frame + larger label */
.usecase-tile{
  background: var(--white) !important;
  border: 2px solid rgba(11,61,46,0.88) !important;
  border-radius: 24px !important;
  color: var(--brand-green) !important;
  font-size: clamp(1.12rem, 1.15vw, 1.28rem) !important;
  padding: 1.35rem 1.20rem !important;
  min-height: 92px !important;
  box-shadow: 0 14px 34px rgba(11,13,16,0.09) !important;
  backdrop-filter: none !important;
}

.usecase-tile:hover{
  background: rgba(255,255,255,0.98) !important;
  border-color: rgba(11,61,46,0.98) !important;
}

/* New white "stripe" section under use-cases */
.home-split{
  background: var(--white);
  border-top: 1px solid rgba(11,13,16,0.10);
  padding: 4.2rem 0;
}

.split-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem 2.6rem;
  align-items: center;
}

@media (max-width: 900px){
  .split-grid{ grid-template-columns: 1fr; }
}

.split-item--media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(11,13,16,0.10);
}

.split-title{
  margin: 0 0 .65rem 0;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
}

.split-text{
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}


/* ==============================
   v108: Home use-cases refinement + products (split layout)
   ============================== */

/* Startseite: "Anwendungsfelder" weniger klobig (schmaler/leichter). */
.home-usecases .usecases-title{
  font-weight: 650 !important;
  letter-spacing: -0.02em !important;
}

/* Startseite: Tiles größer + mehr Abstand (insb. vertikal) + dezenter grüner Rahmen. */
.home-usecases .usecases-tiles{
  margin-top: 2.1rem !important;
  column-gap: 1.6rem;
  row-gap: 2.2rem;
}

.home-usecases .usecase-tile{
  background: var(--white) !important;
  border: 1.5px solid rgba(11,61,46,0.38) !important;
  border-radius: 26px !important;
  padding: 1.6rem 1.35rem !important;
  min-height: 112px !important;
  font-size: clamp(1.16rem, 1.35vw, 1.38rem) !important;
  font-weight: 720 !important;
  box-shadow: 0 16px 40px rgba(11,13,16,0.08) !important;
}

.home-usecases .usecase-tile:hover{
  border-color: rgba(11,61,46,0.62) !important;
  box-shadow: 0 22px 52px rgba(11,13,16,0.10) !important;
}

@media (max-width: 560px){
  .home-usecases .usecases-tiles{ row-gap: 1.35rem; }
}


/* Produkte: Split-Layout wie auf der Startseite (Bild/Info in zwei Spalten). */
.products-split{
  margin: 1.25rem 0 2.0rem;
}

.products-split .split-grid{
  align-items: start;
}

/* Im Produkt-Split ist das Bild bereits in einer Media-Box gerahmt; keine zusätzliche Shadow/Radius am <img>. */
.products-split .split-item--media img{
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Subline unter dem Produkttitel etwas kompakter (damit Details harmonisch wirken). */
.products-split .product-split-subline{
  margin-top: 0.15rem;
}

.products-split details.product-more{
  margin-top: 1.0rem;
}

.products-split .product-media-note{
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.products-split .product-media-placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(11,61,46,0.70);
  font-weight: 760;
  letter-spacing: -0.01em;
}

.products-split .product-media-placeholder span{
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(11,61,46,0.22);
  background: rgba(255,255,255,0.55);
}

/* Startseite: Footer ebenfalls weiß (keine zusätzliche Flächenfärbung) */
body.home-bg .footer{
  background: #ffffff !important;
}



/* ==============================
   v113: Home pillars full-bleed 3-up row (matches original carousel scale)
   ============================== */

.home-pillars > .container{
  width: 100%;
  margin: 0;
}

.home-pillars .pillars-static-grid{
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

@media (max-width: 900px){
  .home-pillars .pillars-static-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .home-pillars .pillars-static-grid{
    grid-template-columns: 1fr;
  }
}

.home-pillars .pillars-static-item{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.55rem 0 1.70rem;
  min-height: clamp(560px, 72vh, 820px);
}

@media (max-width: 980px){
  .home-pillars .pillars-static-item{
    min-height: 660px;
  }
}

@media (max-width: 560px){
  .home-pillars .pillars-static-item{
    min-height: 520px;
  }
}

.home-pillars .pillars-static-item img{
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

.home-pillars .pillars-static-item .pillars-overlay{
  width: min(920px, 92%);
}

.home-pillars .pillars-static-item .pillars-textbox{
  background: rgba(255,255,255,0.62) !important;
  border-color: rgba(0,0,0,0.06) !important;
  padding: 1.25rem 1.35rem !important;
  border-radius: 16px !important;
}

.home-pillars .pillars-static-item .pillars-title{
  font-size: clamp(1.85rem, 2.05vw, 2.75rem) !important;
}

.home-pillars .pillars-static-item .pillars-desc{
  font-size: clamp(1.05rem, 1.05vw, 1.25rem) !important;
  line-height: 1.28;
}


/* ==============================
   Scroll-reveal (site-wide)
   ============================== */

html.sr-enabled .sr-item{
  opacity: 1;
  transform: none;
  transition: opacity 720ms ease-out, transform 720ms ease-out;
}

/* ==============================
   v111: Homepage adjustments (BG-1 hero + section background colors)
   ============================== */

/* Hero background image (full-bleed) */
html[lang="de"] .home-stage,
html[lang="en"] .home-stage{
  background-image: url("../img/BG-1.png") !important;
  background-size: cover !important;
  background-position: right center !important;
  background-repeat: no-repeat !important;
}

/* Let hero content sit on the left half of the background */
html[lang="de"] .home-stage > .container,
html[lang="en"] .home-stage > .container{
  width: 100% !important;
  margin: 0 !important;
  padding: 0 1.1rem;
}

html[lang="de"] .home-stage .home-hero,
html[lang="en"] .home-stage .home-hero{
  max-width: none !important;
  margin: 0 !important;
}

html[lang="de"] .home-stage .hero-title-box.hero-title-box--full,
html[lang="en"] .home-stage .hero-title-box.hero-title-box--full{
  flex: 0 0 50% !important;
  width: 50% !important;
  max-width: 640px;
  margin: 0 !important;
  text-align: left !important;
  align-items: flex-start;
}

html[lang="de"] .home-stage .home-hero .hero-title-box,
html[lang="de"] .home-stage .home-hero .hero-title-box h1,
html[lang="de"] .home-stage .hero-headline,
html[lang="en"] .home-stage .home-hero .hero-title-box,
html[lang="en"] .home-stage .home-hero .hero-title-box h1,
html[lang="en"] .home-stage .hero-headline{
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

html[lang="de"] .home-stage .hero-headline,
html[lang="en"] .home-stage .hero-headline{
  align-items: flex-start !important;
}

/* Dark text for light hero image */
html[lang="de"] body.home-bg .home-stage .hero-title-box.hero-title-box--full h1,
html[lang="en"] body.home-bg .home-stage .hero-title-box.hero-title-box--full h1{
  color: var(--text) !important;
  text-shadow: none !important;
}
html[lang="de"] body.home-bg .home-stage .hero-title-box.hero-title-box--full .hero-lead,
html[lang="en"] body.home-bg .home-stage .hero-title-box.hero-title-box--full .hero-lead{
  color: var(--muted) !important;
  text-shadow: none !important;
}
html[lang="de"] body.home-bg .home-stage .hero-title-box.hero-title-box--full .hero-dark,
html[lang="en"] body.home-bg .home-stage .hero-title-box.hero-title-box--full .hero-dark{
  color: var(--text) !important;
}

@media (max-width: 980px){
  html[lang="de"] .home-stage,
  html[lang="en"] .home-stage{
    background-position: center center !important;
  }
  html[lang="de"] .home-stage .hero-title-box.hero-title-box--full,
  html[lang="en"] .home-stage .hero-title-box.hero-title-box--full{
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 980px;
  }
}

/* Pillars section: light tinted background + heading */
html[lang="de"] .home-pillars,
html[lang="en"] .home-pillars{
  background: #f6f8f5 !important;
}

html[lang="de"] .home-pillars .pillars-heading-row{
  max-width: var(--maxw);
  margin: 2.4rem auto 2.05rem;
  padding: 0 1.1rem;
  text-align: center;
}

html[lang="en"] .home-pillars .pillars-heading-row{
  max-width: var(--maxw);
  margin: 2.4rem auto 2.05rem;
  padding: 0 1.1rem;
  text-align: center;
}

html[lang="en"] .home-pillars .pillars-heading{
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 750;
  color: var(--text);
}

html[lang="de"] .home-pillars .pillars-heading{
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 750;
  color: var(--text);
}

/* From "Anwendungsbeispiele" down to the last image on the homepage */
html[lang="de"] .home-usecases,
html[lang="de"] .home-split,
html[lang="en"] .home-usecases,
html[lang="en"] .home-split{
  background: #f2f4f1 !important;
}

html.sr-enabled .sr-item:not(.sr-visible){
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

/* ==============================
   v112: Requested typography + layout adjustments (DE/EN)
   ============================== */

:root{
  /* Unified home headline size (hero + key section headings) */
  --home-hero-size: clamp(2.35rem, 4.6vw, 5.0rem);
}

/* 1) Home hero: slightly smaller copy + move upward (avoid overlap with background motif) */
.hero-headline{
  font-size: var(--home-hero-size);
}

.home-stage .hero-title-box.hero-title-box--full{
  transform: translateY(-38px);
}

.home-stage .hero-title-box.hero-title-box--full .hero-lead{
  font-size: clamp(1.00rem, 1.15vw, 1.18rem);
}

@media (max-width: 820px){
  .home-stage .hero-title-box.hero-title-box--full{
    transform: translateY(-18px);
  }
}

/* 3) Home: make "Nachhaltige Performance – klar definiert" and "Anwendungsbeispiele"
      (and their EN equivalents) the same size as the main hero headline */
.home-pillars .pillars-heading,
.home-usecases .usecases-title{
  font-size: var(--home-hero-size) !important;
}

/* 2) Page headings (e.g., Anwendungen/Products/News...) significantly smaller */
.page-title h1{
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  line-height: 1.10;
}

/* Gate legacy tile-reveal behind JS/IO (so content stays visible with JS disabled). */
.usecase-tile{
  opacity: 1;
  transform: none;
}

html.sr-enabled .usecase-tile{
  opacity: 1;
  transform: none;
  transition: opacity 720ms ease-out, transform 720ms ease-out, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  transition-delay: var(--d, 0ms);
}

html.sr-enabled .usecases-wrap:not(.is-visible) .usecase-tile{
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce){
  html.sr-enabled .sr-item{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html.sr-enabled .usecase-tile{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==============================
   v115: Januar 2026 – Startseite/Navigation/Mobile Fixes (DE + EN)
   ============================== */

/* 1) Startseite: gesamter Seitenhintergrund weiss (nur BG-1 bleibt im Hero). */
body.home-bg{
  background: #ffffff !important;
}

/* Alte "Home-Background" Overlays deaktivieren (ansonsten schimmert es hinter weissen Sektionen durch). */
body.home-bg::before,
body.home-bg::after{
  content: none !important;
  display: none !important;
}

/* 3) Startseite: Sektionen auf Weiss setzen (ausser BG-1 im Hero). */
html[lang="de"] .home-pillars,
html[lang="en"] .home-pillars,
html[lang="de"] .home-usecases,
html[lang="en"] .home-usecases,
html[lang="de"] .home-split,
html[lang="en"] .home-split{
  background: #ffffff !important;
}

/* 4) Startseite: fließender Übergang von BG-1 zu Weiss am unteren Rand. */
html[lang="de"] .home-stage,
html[lang="en"] .home-stage{
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

html[lang="de"] .home-stage::after,
html[lang="en"] .home-stage::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(120px, 18vh, 220px);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

html[lang="de"] .home-stage > .container,
html[lang="en"] .home-stage > .container{
  position: relative;
  z-index: 1;
}

/* 1) + 2) Startseite: Headline + "Nachhaltige Performance" jeweils nach unten (keine Überdeckung durch Header). */
.home-stage .hero-title-box.hero-title-box--full{
  /* v112 hat den Block nach oben geschoben (translateY(-38px)); das führt zu Überdeckung.
     Wir setzen ihn wieder nach unten (ca. "eine Zeile"). */
  transform: translateY(20px) !important;
}

@media (max-width: 820px){
  .home-stage .hero-title-box.hero-title-box--full{ transform: translateY(12px) !important; }
}

.home-pillars .pillars-heading-row{
  margin: 3.15rem auto 2.05rem !important;
}

/* 5) Topclaim in der Topbar weiter nach links, damit nichts abgeschnitten wird. */
.topclaim{
  margin-left: 12rem !important;
}

@media (max-width: 1280px){
  .topclaim{
    margin-left: 9rem !important;
    font-size: .86rem;
    letter-spacing: .08em;
  }
}

@media (max-width: 1100px){
  .topclaim{
    margin-left: 6rem !important;
    font-size: .82rem;
  }
}

/* 6) Mobile: Navigation (Panel korrekt unter dem fixierten Header), bessere CTAs, weniger Overflow. */
@media (max-width: 980px){
  /* Mobile-Menü unterhalb der tatsächlichen Headerhöhe öffnen (nicht fix auf 148px). */
  .nav-center .nav-links{
    top: var(--header-h) !important;
    left: .85rem;
    right: .85rem;
    max-height: calc(100svh - var(--header-h) - 1rem);
    overflow: auto;
  }

  /* CTAs: Mobile-Header so kompakt wie moeglich halten.
     Die Buttons werden per JS in das Mobile-Menue verschoben und dort angezeigt. */
  .nav-ctas{ display: none !important; }

  .nav-center .nav-links .nav-ctas{
    display: flex !important;
    width: 100%;
    flex-direction: column;
    gap: .55rem;
    margin-top: .8rem;
    padding-top: .8rem;
    border-top: 1px solid rgba(11,13,16,0.14);
  }
  .nav-center .nav-links .nav-ctas .btn{
    width: 100%;
    justify-content: center;
    padding: .72rem .9rem;
  }
}

@media (max-width: 560px){
  /* Sehr schmale Geräte: Buttons untereinander */
  .nav-ctas .btn{ flex-basis: 100%; }

  /* Hero: harte No-Wraps auf sehr schmalen Displays vermeiden (sonst horizontaler Scroll). */
  .home-stage .hero-headline .nowrap{ white-space: normal; }

  /* Home Split: zu grosse Vertikalabstände reduzieren */
  .home-split{ padding: 2.6rem 0 !important; }
}

/* ==============================
   v116: Mobile-Optimierung Startseite (DE + EN)
   ============================== */

/* Hero: auf Mobile nicht "space-between", sondern klassisch (Headline direkt über Lead). */
@media (max-width: 700px){
  html[lang="de"] .home-stage,
  html[lang="en"] .home-stage{
    min-height: auto; /* vermeidet überlange Hero-Flächen */
    padding-top: 1.05rem;
    padding-bottom: .65rem;
  }

  html[lang="de"] .home-stage .hero-title-box.hero-title-box--full,
  html[lang="en"] .home-stage .hero-title-box.hero-title-box--full{
    min-height: auto;
    justify-content: flex-start;
    gap: .85rem;
    padding: 1.15rem 1.0rem 1.15rem;
    transform: translateY(10px) !important;
  }

  html[lang="de"] .home-stage .hero-title-box.hero-title-box--full h1,
  html[lang="en"] .home-stage .hero-title-box.hero-title-box--full h1{
    margin: 0 0 .15rem 0 !important;
    position: static !important;
    top: auto !important;
  }

  /* Headline: mobile-friendly (keine erzwungenen 3 Zeilen, natürliche Umbrüche). */
  html[lang="de"] .home-stage .hero-headline,
  html[lang="en"] .home-stage .hero-headline{
    display: block !important;
    font-size: clamp(1.95rem, 8.6vw, 3.05rem) !important;
    line-height: 1.06;
    letter-spacing: -0.02em;
    text-align: left !important;
    align-items: initial !important;
  }
  html[lang="de"] .home-stage .hero-headline .hero-line,
  html[lang="en"] .home-stage .hero-headline .hero-line{
    display: inline !important;
    white-space: normal !important;
  }
  html[lang="de"] .home-stage .hero-headline .hero-line + .hero-line::before,
  html[lang="en"] .home-stage .hero-headline .hero-line + .hero-line::before{
    content: " ";
  }

  /* Lead: kompakter, besser lesbar, keine riesigen Abstände. */
  html[lang="de"] .home-stage .hero-lead,
  html[lang="en"] .home-stage .hero-lead{
    margin: 0 !important;
    position: static !important;
    top: auto !important;
    max-width: 46ch;
    font-size: clamp(.98rem, 3.9vw, 1.12rem);
    line-height: 1.40;
  }
}

/* Pillars: mobile – Überschrift einzeilig + 3 Items sauber untereinander und größer. */
@media (max-width: 900px){
  .home-pillars .pillars-static-grid{
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px){
  .home-pillars .pillars-heading-row{
    margin: 1.8rem auto 1.1rem !important;
  }

  .home-pillars .pillars-heading{
    font-size: clamp(.92rem, 4.0vw, 1.35rem) !important;
    white-space: nowrap;
    letter-spacing: -0.015em;
    line-height: 1.10;
  }

  .home-pillars .pillars-static-item{
    min-height: 440px;
    padding: 2.05rem 0 1.45rem;
  }

  .home-pillars .pillars-static-item .pillars-overlay{
    width: min(520px, 92%);
  }

  .home-pillars .pillars-static-item .pillars-textbox{
    padding: 1.05rem 1.10rem !important;
  }

  .home-pillars .pillars-static-item .pillars-title{
    font-size: clamp(1.55rem, 6.8vw, 2.05rem) !important;
  }
  .home-pillars .pillars-static-item .pillars-desc{
    font-size: clamp(.98rem, 4.1vw, 1.10rem) !important;
  }
}

/* ==============================
   v117: Mobile-Polish (390px) – Header/Hero/Pillars/Split (DE + EN)
   ============================== */

/* Topbar-Claim auf Mobile immer zentrieren (v115 margin-left ueberschreibt sonst das Mobile-Layout). */
@media (max-width: 560px){
  .topclaim{
    margin-left: 0 !important;
    text-align: center !important;
    position: static !important;
    transform: none !important;
    display: block !important;
    padding-top: .15rem;
    font-size: .68rem;
    letter-spacing: .06em;
    line-height: 1.15;
    white-space: normal !important;
  }
}

/* 390px: Hero-Block eine Zeile nach oben (ohne wieder unter den Header zu rutschen). */
@media (max-width: 420px){
  /* Header auf 390px deutlich kompakter (Topbar + Navrow). */
  .topbar{ padding: .55rem 0 .45rem !important; }
  .topbrand{ font-size: 1.95rem !important; line-height: 1.0; }
  .topclaim{ font-size: .62rem !important; padding-top: .12rem !important; }
  .navrow-inner{ padding: .45rem 0 !important; gap: .6rem !important; }
  .mobile-toggle{ padding: .42rem .62rem !important; font-size: .92rem !important; }

  html[lang="de"] .home-stage,
  html[lang="en"] .home-stage{
    padding-top: .25rem !important;
    padding-bottom: .45rem !important;
  }

  html[lang="de"] .home-stage .hero-title-box.hero-title-box--full,
  html[lang="en"] .home-stage .hero-title-box.hero-title-box--full{
    padding: .72rem .90rem .78rem !important;
    gap: .60rem !important;
    transform: translateY(-6px) !important;
  }

  html[lang="de"] .home-stage .hero-headline,
  html[lang="en"] .home-stage .hero-headline{
    font-size: clamp(1.65rem, 7.4vw, 2.35rem) !important;
    line-height: 1.06;
  }

  html[lang="de"] .home-stage .hero-lead,
  html[lang="en"] .home-stage .hero-lead{
    max-width: 44ch;
    hyphens: auto;
    font-size: clamp(.90rem, 3.4vw, 1.02rem) !important;
    line-height: 1.38;
  }
}

/* Pillars: Heading auf Mobile kleiner und in 2 Zeilen; Abstaende zwischen Cards drastisch reduzieren. */
@media (max-width: 640px){
  .home-pillars .pillars-heading-row{
    margin: 1.05rem auto .55rem !important;
    text-align: center;
  }

  .home-pillars .pillars-heading{
    white-space: normal !important;
    font-size: clamp(1.00rem, 4.8vw, 1.28rem) !important;
    line-height: 1.14;
    letter-spacing: -0.015em;
    max-width: 26ch;
    margin: 0 auto;
    text-align: center;
  }

  .home-pillars .pillars-static-grid{
    gap: .38rem !important;
  }

  .home-pillars .pillars-static-item{
    min-height: 300px;
    padding: .95rem 0 .75rem;
  }

  .home-pillars .pillars-static-item .pillars-overlay{
    width: min(520px, 94%);
  }

  .home-pillars .pillars-static-item .pillars-textbox{
    padding: .82rem .90rem !important;
  }
}

@media (max-width: 420px){
  .home-pillars .pillars-static-item{ min-height: 270px; padding: .80rem 0 .60rem; }
  .home-pillars .pillars-static-grid{ gap: .25rem !important; }
}

/* Home Split (Startseite unten): in Mobile immer Bild->Text, Bild->Text (keine Text-Text-Bild Reihenfolge). */
@media (max-width: 900px){
  .home-split .split-grid{
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
  }

  /* Quelle: 1) media 2) text 3) text 4) media – tauschen fuer Mobile */
  .home-split .split-grid > :nth-child(3){ order: 4; }
  .home-split .split-grid > :nth-child(4){ order: 3; }
}

/* ==============================
   v118: Mobile Feinschliff (390px) – Hero/Header/Pillars
   ============================== */

/* Mobile: Claim möglichst einzeilig halten + Lead besser lesbar (heller Overlay). */
@media (max-width: 560px){
  /* Header-Hoehe auf Mobile geringer ansetzen (body padding-top folgt dieser Variable). */
  :root{ --header-h: 78px; }

  .topclaim{
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100vw - 2.2rem);
    margin-left: 0 !important;
  }

  /* Lesbarkeit auf BG-1: halbtransparenter Weiß-Hintergrund hinter dem Lead. */
  html[lang="de"] .home-stage .hero-title-box.hero-title-box--full .hero-lead,
  html[lang="en"] .home-stage .hero-title-box.hero-title-box--full .hero-lead{
    background: rgba(255,255,255,0.80);
    padding: .45rem .55rem;
    border-radius: 12px;
    display: inline-block;
  }
}

/* 390px/kleiner: Header deutlich kompakter, Hero weiter nach oben, Pillars dichter. */
@media (max-width: 420px){
  :root{ --header-h: 70px; }

  /* Header: deutlich weniger vertikaler Platz. */
  .topbar{ padding: .38rem 0 .28rem !important; }
  .topbrand{ font-size: 1.78rem !important; line-height: 1.0 !important; }
  .topclaim{
    font-size: .56rem !important;
    letter-spacing: .04em !important;
    padding-top: .06rem !important;
    line-height: 1.05 !important;
  }
  .navrow-inner{ padding: .32rem 0 !important; gap: .55rem !important; }
  .mobile-toggle{ padding: .34rem .55rem !important; font-size: .88rem !important; }

  /* Hero: Headline kleiner + Block deutlich weiter nach oben ("3 Zeilen"). */
  html[lang="de"] .home-stage .hero-title-box.hero-title-box--full,
  html[lang="en"] .home-stage .hero-title-box.hero-title-box--full{
    padding: .52rem .90rem .62rem !important;
    gap: .46rem !important;
    /* v119: eine Zeile wieder runter (390px) */
    transform: translateY(-34px) !important;
  }

  html[lang="de"] .home-stage .hero-headline,
  html[lang="en"] .home-stage .hero-headline{
    font-size: clamp(1.45rem, 6.8vw, 2.05rem) !important;
    line-height: 1.04 !important;
  }

  html[lang="de"] .home-stage .hero-lead,
  html[lang="en"] .home-stage .hero-lead{
    font-size: clamp(.86rem, 3.2vw, .98rem) !important;
    line-height: 1.34 !important;
  }

  /* Pillars: Überschrift exakt zentrieren und direkt über die Cards setzen. */
  .home-pillars{ padding: 1.05rem 0 1.25rem !important; }

  .home-pillars .pillars-heading-row{
    margin: .75rem auto .35rem !important;
    padding: 0 1.1rem;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .home-pillars .pillars-heading{
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 28ch;
  }

  /* Cards dichter untereinander. */
  .home-pillars .pillars-static-grid{ gap: .12rem !important; }
  .home-pillars .pillars-static-item{ min-height: 250px; padding: .55rem 0 .35rem !important; }
  .home-pillars .pillars-static-item .pillars-overlay{ width: min(520px, 96%) !important; }
  .home-pillars .pillars-static-item .pillars-textbox{ padding: .68rem .78rem !important; }
}

/* ==============================
   v119: Header-Zentrierung + Feintuning Hero (390px) – DE + EN
   ============================== */

/* Topbar: Brand + Claim immer zentriert (nicht seitlich versetzt). */
.topbar{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.topclaim{
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  margin-left: 0 !important;
  margin-top: .12rem;
  width: 100%;
  text-align: center !important;
  z-index: 1;
}

/* 390px: Hero-Content minimal wieder nach unten (Headline + Lead je ~1 Zeile). */
@media (max-width: 420px){
  html[lang="de"] .home-stage .hero-title-box.hero-title-box--full,
  html[lang="en"] .home-stage .hero-title-box.hero-title-box--full{
    transform: translateY(-34px) !important;
  }
}

/* v120: Mobile (Homepage) – headings alignment + consistent sizing (DE + EN) */
.home-pillars .pillars-heading .pillars-heading-sub{display:inline}.home-pillars .pillars-heading .pillars-heading-sub::before{content:" "}
@media (max-width:640px){:root{--home-title-mobile:clamp(1.00rem,4.8vw,1.28rem)}.home-pillars .pillars-heading{font-size:var(--home-title-mobile)!important;text-align:center!important}.home-pillars .pillars-heading .pillars-heading-sub{display:block}.home-pillars .pillars-heading .pillars-heading-sub::before{content:""}.home-usecases .usecases-title{font-size:var(--home-title-mobile)!important;line-height:1.14;letter-spacing:-0.015em;text-align:center!important;max-width:26ch;margin-left:auto;margin-right:auto}.home-split .split-item--text{text-align:center}.home-split .split-title{font-size:var(--home-title-mobile)!important;line-height:1.14;letter-spacing:-0.015em;text-align:center!important;max-width:30ch;margin-left:auto;margin-right:auto}}


/* ==============================
   v122: Desktop fine-tuning (requested)
   - Hero headline smaller + one line higher
   - Topbar: brand centered, claim to the right in same row (slimmer header)
   - Pillars leaf image slightly larger
   ============================== */
@media (min-width: 981px){
  /* Topbar: keep "in|stead" exactly centered, with the B2B claim slightly to the right. */
  .topbar{
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 1.10rem;
    padding: .36rem 0 !important;
  }

  .topbrand{
    grid-column: 2;
    justify-self: center;
    text-align: center !important;
    white-space: nowrap;
    font-size: 2.00rem !important;
    line-height: 1;
  }

  .topclaim{
    grid-column: 3;
    justify-self: start;
    margin-left: 0 !important;
    white-space: nowrap;
    font-size: .80rem !important;
    letter-spacing: .08em;
    line-height: 1;
  }

  /* Reduce nav row vertical footprint on desktop */
  .navrow-inner{ padding: .40rem 0 !important; }

  /* Home hero: smaller headline + one line higher */
  .home-stage .hero-headline{
    font-size: clamp(1.85rem, 3.25vw, 3.75rem) !important;
  }

  .home-stage .hero-title-box.hero-title-box--full{
    transform: translateY(-84px) !important;
  }

  /* Pillars leaf visuals: slightly larger leaf image inside each card */
  .home-pillars .pillars-static-item{ overflow: hidden; }
  .home-pillars .pillars-static-item img{
    width: 115%;
    max-width: none;
  }
}
