:root {
  --navy: #132950;
  --navy-light: #1e3d6e;
  --navy-dark: #0c1e3a;
  --white: #fff;
  --off-white: #f7f8fa;
  --gray-light: #e8ecf0;
  --gray: #8a9ab0;
  --text: #1a2535;
  --gold: #c4a84f;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
h1,
h2,
h3,
h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
/* LANG */
.lang-sw {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 1.2rem;
  flex-shrink: 0;
}
.lb {
  background: none;
  border: 1px solid var(--gray-light);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  cursor: pointer;
  color: var(--gray);
  transition: all 0.2s;
}
.lb.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 24px rgba(19, 41, 80, 0.12);
}
.nl {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nl li a {
  display: block;
  padding: 8px 13px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.83rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}
.nl li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nl li a:hover::after,
.nl li a.active::after {
  transform: scaleX(1);
}
.nc {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 9px 16px !important;
  font-weight: 700 !important;
  margin-left: 6px;
}
.nc::after {
  display: none !important;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nlt {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nlt .brand {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nlt .tag {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-r {
  display: flex;
  align-items: center;
}
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  margin-left: 0.8rem;
}
.ham span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

main {
  padding-top: 72px;
}
/* HERO */
.hero {
  background: var(--navy);
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.015) 60px,
    rgba(255, 255, 255, 0.015) 61px
  );
}
.hbg {
  position: absolute;
  right: -5%;
  top: -10%;
  width: 55%;
  height: 120%;
  background: linear-gradient(
    135deg,
    var(--navy-light) 0%,
    var(--navy-dark) 100%
  );
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.5;
}
.hc {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ht {
  animation: fadeUp 0.8s ease both;
}
.hl {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.83rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hl::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.htitle {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 5.5vw, 5rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.htitle span {
  color: var(--gold);
  display: block;
}
.hsub {
  font-family: "Crimson Pro", serif;
  font-size: 1.18rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 460px;
  line-height: 1.7;
}
.hacts {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.bp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 26px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.bp:hover {
  background: #d4b860;
  transform: translateY(-2px);
}
.bo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 26px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
}
.bo:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.hla {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease both;
}
.hla img {
  width: min(310px, 90%);
  filter: brightness(0) invert(1) drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
  opacity: 0.15;
}
.hstats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 3;
}
.hsi {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hstat {
  padding: 0 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.hstat .n {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
}
.hstat .l {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
/* SECTIONS */
section {
  padding: 5.5rem 2.5rem;
}
.si {
  max-width: 1200px;
  margin: 0 auto;
}
.svsec-pad {
  padding: 0 2.5rem;
}
.mt-lg {
  margin-top: 3.5rem;
}
.p-0 {
  padding: 0 !important;
}
.sl {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sl::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.st {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
/* SERVICE CARDS */
.svsec {
  background: var(--off-white);
  padding: 5.5rem 0;
}
.svgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-light);
}
.svc {
  background: var(--white);
  padding: 2.8rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s;
}
.svc:hover::before {
  transform: scaleY(1);
}
.svc:hover {
  background: var(--navy);
}
.svc:hover .snum,
.svc:hover .svt,
.svc:hover .svp,
.svc:hover .sva {
  color: var(--white);
}
.svc:hover .svi {
  color: var(--gold);
}
.snum {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.3rem;
  transition: color 0.3s;
}
.svi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-bottom: 0.7rem;
  color: var(--navy);
  transition: color 0.3s;
}
.svi svg {
  width: 1.7rem;
  height: 1.7rem;
  display: block;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svt {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}
.svp {
  font-size: 0.91rem;
  color: #4a5a70;
  line-height: 1.7;
  transition: color 0.3s;
}
.sva {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.3rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.81rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.3s;
}
/* INTRO STRIP */
.istrip {
  background: var(--navy);
  padding: 5rem 2.5rem;
}
.isi {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.istrip h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.istrip h2 span {
  color: var(--gold);
}
.istrip p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}
.idivs {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.idiv {
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.idiv:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.idiv h4 {
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.idiv p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
}
/* PAGE HEADERS */
.phero {
  background: var(--navy);
  padding: 5.5rem 2.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.phero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: rgba(255, 255, 255, 0.03);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.phi {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.phl {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phl::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.pht {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.95;
}
.pht span {
  color: var(--gold);
}
/* SVC DETAIL */
.svhero {
  background: var(--navy);
  padding: 5.5rem 2.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.svhnum {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 18rem;
  color: white;
  opacity: 0.04;
  text-transform: uppercase;
  pointer-events: none;
  overflow: hidden;
}
.svlay {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: start;
}
.svm {
  padding: 4.5rem 3rem 4.5rem 0;
}
.svs {
  padding: 4.5rem 0 4.5rem 2.5rem;
  position: sticky;
  top: 96px;
}
.sbox {
  background: var(--navy);
  padding: 1.8rem;
  margin-bottom: 1.4rem;
}
.sbox h4 {
  font-size: 0.82rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.1rem;
}
.sbox ul {
  list-style: none;
}
.sbox ul li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  padding: 0.42rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}
.sbox ul li::before {
  content: "›";
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: -1px;
}
.slt {
  background: var(--off-white) !important;
}
.slt h4 {
  color: var(--navy) !important;
}
.slt p {
  color: #4a5a70;
  font-size: 0.86rem;
  margin-bottom: 0.9rem;
  line-height: 1.6;
}
.lt {
  font-family: "Crimson Pro", serif;
  font-size: 1.28rem;
  line-height: 1.75;
  color: var(--navy);
  margin-bottom: 1.8rem;
}
.bt {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #3a4a5e;
  margin-bottom: 1.3rem;
}
.hbox {
  border-left: 3px solid var(--gold);
  padding: 1.4rem 1.8rem;
  background: var(--off-white);
  margin: 2.2rem 0;
}
.hbox p {
  font-family: "Crimson Pro", serif;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
}
/* PARTNERSHIP */
.pbox {
  border: 1px solid var(--gray-light);
  padding: 1.8rem;
  margin: 2.2rem 0;
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
}
.plogo {
  width: 76px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  padding: 0.9rem;
}
.plogo span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--navy);
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
}
.pcontent h4 {
  font-size: 0.97rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.45rem;
}
.pcontent p {
  font-size: 0.88rem;
  color: #4a5a70;
  line-height: 1.7;
  margin-bottom: 0.45rem;
}
.pcontent a {
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 600;
  border-bottom: 1px solid var(--navy);
  text-decoration: none;
}
/* FOUNDER */
.fc {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--white);
  border-top: 3px solid var(--navy);
  padding: 2.5rem;
  margin-top: 2rem;
}
.fbadge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  flex-shrink: 0;
}
.fini {
  width: 76px;
  height: 76px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--white);
}
.fname {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  text-transform: uppercase;
}
.frole {
  font-size: 0.76rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.fbio {
  font-size: 0.93rem;
  color: #4a5a70;
  line-height: 1.75;
}
.fstats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.3rem 0;
  padding: 1.3rem 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.fstat .n {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--navy);
  line-height: 1;
}
.fstat .l {
  font-size: 0.73rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ftags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}
.ftag {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  color: var(--navy);
}
/* PILLARS */
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-light);
}
.pillar {
  background: var(--white);
  padding: 2.3rem;
}
.pillar .pn {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.pillar h4 {
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.55rem;
}
.pillar p {
  font-size: 0.86rem;
  color: #4a5a70;
  line-height: 1.7;
}
/* CONTACT */
.cgrid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  margin-top: 2.5rem;
  align-items: start;
}
.cgrid-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 44rem;
}
.cdet {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.3rem;
}
.cic {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
  color: var(--navy);
}
.cic svg {
  width: 19px;
  height: 19px;
  display: block;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cdl {
  display: flex;
  flex-direction: column;
}
.cdl-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.cdet a,
.cdet span {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 500;
}
/* IMPRESSUM */
.impcon {
  max-width: 700px;
}
.impcon h3 {
  font-size: 1.05rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1.8rem 0 0.65rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--gray-light);
}
.impcon h3:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.impcon p,
.impcon address {
  font-size: 0.93rem;
  color: #4a5a70;
  line-height: 1.8;
  font-style: normal;
}
.impcon a {
  color: var(--navy);
}
.impnote {
  background: var(--off-white);
  padding: 1.3rem;
  border-left: 3px solid var(--gold);
  margin-top: 1.8rem;
  font-size: 0.88rem;
  color: #4a5a70;
  line-height: 1.7;
}
/* CTA BANNER */
.cta {
  background: var(--navy);
  padding: 5rem 2.5rem;
  text-align: center;
}
.cta h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.cta p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto 2.3rem;
  font-size: 0.97rem;
  line-height: 1.75;
}
/* FOOTER */
footer {
  background: var(--navy-dark);
  padding: 3.5rem 2.5rem 1.8rem;
}
.fi {
  max-width: 1200px;
  margin: 0 auto;
}
.ft {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.8rem;
}
.fb img {
  height: 45px;
  margin-bottom: 1.3rem;
  filter: brightness(0) invert(1);
}
.fb p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
  line-height: 1.7;
  max-width: 290px;
}
.fc2 h5 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.fc2 ul {
  list-style: none;
}
.fc2 ul li {
  margin-bottom: 0.6rem;
}
.fc2 ul li a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s;
  cursor: pointer;
}
.fc2 ul li a:hover {
  color: var(--white);
}
.fb2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.fcp {
  color: rgba(255, 255, 255, 0.26);
  font-size: 0.76rem;
}
.fsl {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
/* ANIM */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.fi2 {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fi2.vis {
  opacity: 1;
  transform: none;
}
/* MOBILE */
@media (max-width: 960px) {
  nav {
    padding: 0 1.4rem;
  }
  .ham {
    display: flex;
  }
  .nl {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    border-bottom: 2px solid var(--navy);
    padding: 0.8rem 0;
    z-index: 99;
  }
  .nl.open {
    display: flex;
  }
  .nl li {
    width: 100%;
  }
  .nl li a {
    padding: 11px 1.4rem;
  }
.cdet span {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 500;
}
/* IMPRESSUM */
.impcon {
  max-width: 700px;
}
.impcon h3 {
  font-size: 1.05rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1.8rem 0 0.65rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--gray-light);
}
.impcon h3:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.impcon p,
.impcon address {
  font-size: 0.93rem;
  color: #4a5a70;
  line-height: 1.8;
  font-style: normal;
}
.impcon a {
  color: var(--navy);
}
.impnote {
  background: var(--off-white);
  padding: 1.3rem;
  border-left: 3px solid var(--gold);
  margin-top: 1.8rem;
  font-size: 0.88rem;
  color: #4a5a70;
  line-height: 1.7;
}
/* CTA BANNER */
.cta {
  background: var(--navy);
  padding: 5rem 2.5rem;
  text-align: center;
}
.cta h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.cta p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto 2.3rem;
  font-size: 0.97rem;
  line-height: 1.75;
}
/* FOOTER */
footer {
  background: var(--navy-dark);
  padding: 3.5rem 2.5rem 1.8rem;
}
.fi {
  max-width: 1200px;
  margin: 0 auto;
}
.ft {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.8rem;
}
.fb img {
  height: 45px;
  margin-bottom: 1.3rem;
  filter: brightness(0) invert(1);
}
.fb p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
  line-height: 1.7;
  max-width: 290px;
}
.fc2 h5 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.fc2 ul {
  list-style: none;
}
.fc2 ul li {
  margin-bottom: 0.6rem;
}
.fc2 ul li a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s;
  cursor: pointer;
}
.fc2 ul li a:hover {
  color: var(--white);
}
.fb2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.fcp {
  color: rgba(255, 255, 255, 0.26);
  font-size: 0.76rem;
}
.fsl {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
/* ANIM */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.fi2 {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fi2.vis {
  opacity: 1;
  transform: none;
}
/* MOBILE */
@media (max-width: 960px) {
  nav {
    padding: 0 1.4rem;
  }
  .ham {
    display: flex;
  }
  .nl {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    border-bottom: 2px solid var(--navy);
    padding: 0.8rem 0;
    z-index: 99;
  }
  .nl.open {
    display: flex;
  }
  .nl li {
    width: 100%;
  }
  .nl li a {
    padding: 11px 1.4rem;
  }
  .nc {
    margin: 0.4rem 1.4rem;
    text-align: center;
    justify-content: center;
  }
  .lang-sw {
    margin-left: 0.4rem;
  }
  .ham {
    margin-left: 1.2rem;
  }
  .svgrid,
  .pgrid {
    grid-template-columns: 1fr;
  }
  .svc {
    padding: 1.8rem 1.4rem;
  }
  .svsec-pad {
    padding: 0 1.4rem !important;
  }
  .mt-lg {
    margin-top: 2rem !important;
  }
  .isi {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cgrid {
    grid-template-columns: 1fr;
  }
  .ft {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  section {
    padding: 3.5rem 1.4rem;
  }
  .phero,
  .svhero {
    padding: 3.5rem 1.4rem 2.8rem;
  }
  .svlay {
    grid-template-columns: 1fr;
  }
  .svm {
    padding: 2.8rem 1.4rem;
  }
  .svs {
    padding: 0 1.4rem 2.8rem;
    position: static;
  }
  .fc {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .fbadge {
    flex-direction: row;
    text-align: left;
  }
  .two-col {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 800px) {
  .hero {
    height: auto;
    min-height: auto;
    flex-direction: column;
    justify-content: center;
  }
  .hstats {
    position: relative;
    width: 100%;
  }
  .hc {
    grid-template-columns: 1fr;
    padding: 3rem 1.4rem 2.8rem;
    gap: 1.8rem;
  }
  .hla {
    display: none;
  }
  .hsi {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0;
  }
}

@media (max-width: 600px) {
  .hsi {
    grid-template-columns: 1fr;
    gap: 1.5rem 0;
  }
}
