/* ============================================================
   Martin Leimbach – testsphere.de
   Stylesheet v2.0
   Bitte juristisch relevante Seiten (Impressum, Datenschutz)
   vor Veröffentlichung prüfen lassen.
   ============================================================ */

/* Externe Fonts werden bewusst nicht geladen, damit keine Drittanbieter-Font-Anfrage entsteht. */

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --navy:         #0a1628;
  --navy-mid:     #0e1e35;
  --navy-light:   #132640;
  --teal:         #00c9a7;
  --teal-hover:   #00b396;
  --teal-bright:  #00e5c0;
  --teal-glow:    rgba(0,201,167,.25);
  --blue-grad:    #0090ff;
  --gray-50:      #f4f7fa;
  --gray-100:     #eaeff5;
  --gray-200:     #d6dde8;
  --gray-400:     #8a96aa;
  --gray-600:     #4e5a70;
  --gray-800:     #263044;
  --white:        #ffffff;
  --text:         #1a2438;
  --text-muted:   #4e5a70;

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(10,22,40,.08);
  --shadow-md:  0 4px 16px rgba(10,22,40,.10);
  --shadow-lg:  0 12px 40px rgba(10,22,40,.14);

  --transition: .2s ease;
  --max-w:      1200px;
  --section-py: 96px;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container        { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section          { padding: var(--section-py) 0; }
.section--gray    { background: var(--gray-50); }
.section--dark    { background: var(--navy); color: var(--white); }
.visually-hidden  { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center      { text-align: center; }

.section-label {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--teal-bright);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  font-stretch: normal;
  letter-spacing: -.01em;
}
.section--dark .section-title { color: var(--white); }
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.75;
}
.section--dark .section-sub { color: var(--gray-400); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  line-height: 1.2;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal-bright);
  color: var(--navy);
  border-color: var(--teal-bright);
}
.btn-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--teal-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn-outline-dark {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-dark:hover { background: var(--teal); color: var(--navy); }

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.25); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo svg { flex-shrink: 0; }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__logo-text span {
  font-size: .6rem;
  font-weight: 400;
  color: var(--gray-400);
  letter-spacing: .05em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__links a {
  font-size: .83rem;
  color: rgba(255,255,255,.68);
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav__cta {
  background: var(--teal-bright) !important;
  color: var(--navy) !important;
  border-radius: var(--radius-md) !important;
  padding: 8px 18px !important;
  font-weight: 700 !important;
  font-family: var(--font-display) !important;
  font-size: .83rem !important;
}
.nav__cta:hover {
  background: var(--teal) !important;
  box-shadow: 0 4px 16px var(--teal-glow) !important;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 12px 20px 20px;
  gap: 2px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__mobile a:hover { color: var(--white); background: rgba(255,255,255,.08); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,201,167,.11) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 5% 85%, rgba(0,144,255,.05) 0%, transparent 50%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px 80px;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 28px;
  padding: 5px 14px 5px 8px;
  border: 1px solid rgba(0,229,192,.2);
  border-radius: 20px;
  background: rgba(0,229,192,.04);
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.16;
  max-width: 820px;
  margin-bottom: 22px;
  letter-spacing: -.015em;
  font-stretch: normal;
}
.hero__title em {
  font-style: normal;
  color: var(--teal-bright);
}
.hero__sub {
  font-size: clamp(.95rem, 1.5vw, 1.08rem);
  color: rgba(255,255,255,.6);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 660px;
  background: rgba(255,255,255,.025);
}
.hero__stat {
  padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,.07);
  text-align: center;
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal-bright), var(--blue-grad));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}
.hero__stat-label {
  font-size: .69rem;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
}

/* ── PAGE HEADER (inner pages) ────────────────────────────── */
.page-header {
  background: var(--navy);
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,201,167,.09) 0%, transparent 60%);
  pointer-events: none;
}
.page-header__content { position: relative; z-index: 1; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 10px;
  font-stretch: normal;
}
.page-header p { font-size: 1rem; color: rgba(255,255,255,.55); max-width: 520px; }

/* ── SERVICE CARDS ────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-bright), var(--blue-grad));
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 48px; height: 48px;
  background: rgba(0,201,167,.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.service-card__list li {
  font-size: .72rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 500;
}

/* ── SCENARIO CARDS (Einsatzszenarien) ────────────────────── */
.scenarios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.scenario-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.scenario-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(0,229,192,.25);
  transform: translateY(-2px);
}
.scenario-card__num {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  color: var(--teal-bright);
  background: rgba(0,229,192,.1);
  border: 1px solid rgba(0,229,192,.2);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.scenario-card__title {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.scenario-card__desc {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

/* ── KRITIS SECTION ───────────────────────────────────────── */
.kritis__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 52px;
}
.kritis__text p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.kritis__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kritis__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--text);
}
.kritis__list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal-bright);
  flex-shrink: 0;
}
.kritis__badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.kritis__badge {
  background: var(--navy);
  border: 1px solid rgba(0,201,167,.15);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.kritis__badge-icon { font-size: 1.8rem; margin-bottom: 10px; }
.kritis__badge-label {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.kritis__badge-sub { font-size: .72rem; color: var(--gray-400); margin-top: 4px; }

/* ── ABOUT ────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__text p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.about__highlight {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about__highlight-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.about__highlight-text { font-size: .83rem; color: var(--text-muted); line-height: 1.5; }
.about__highlight-text strong {
  display: block;
  font-size: .85rem;
  color: var(--text);
  margin-bottom: 2px;
  font-weight: 600;
}
.about__card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}
.about__card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(0,201,167,.14);
}
.about__card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(0,144,255,.08);
}
.about__card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.about__card-role {
  font-size: .82rem;
  color: var(--teal-bright);
  font-weight: 600;
  margin-bottom: 28px;
  font-family: var(--font-display);
  letter-spacing: .04em;
}
.about__card-items { display: flex; flex-direction: column; gap: 13px; position: relative; z-index: 1; }
.about__card-item { display: flex; align-items: center; gap: 12px; font-size: .86rem; color: rgba(255,255,255,.78); }
.about__card-item span:first-child {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .88rem;
}

/* ── PERSON PAGE ──────────────────────────────────────────── */
.person-page__grid {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 56px;
  align-items: start;
}
.person-page__photo-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 8px;
  box-shadow: 0 8px 28px rgba(10,22,40,.12);
}
.person-page__photo-card img {
  width: 100%;
  height: clamp(360px, 46vw, 520px);
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius-lg) - 6px);
}
.person-page__caption {
  margin: 12px 8px 4px;
  color: var(--white);
}
.person-page__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
}
.person-page__caption span {
  display: block;
  margin-top: 2px;
  color: var(--gray-400);
  font-size: .8rem;
}
.person-page__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.person-page__copy p {
  color: var(--text-muted);
  font-size: .96rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.person-page__copy a:not(.btn) {
  color: var(--teal);
  font-weight: 600;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.profile-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-800);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.2;
}
.person-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ── PROJECT CARDS ────────────────────────────────────────── */
.projects__list { margin-top: 52px; }
.project-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 18px;
  transition: var(--transition);
}
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.project-card__aside {
  background: linear-gradient(175deg, var(--navy-mid) 0%, var(--navy) 100%);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-right: 1px solid rgba(0,201,167,.1);
}
.project-card__period {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--teal-bright);
  text-transform: uppercase;
}
.project-card__company {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.project-card__role { font-size: .78rem; color: rgba(255,255,255,.5); font-style: italic; }
.project-card__body { padding: 28px 32px; }
.project-card__title {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.project-card__tasks {
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 14px;
}
.project-card__tasks li {
  font-size: .8rem;
  color: var(--text-muted);
  padding-left: 12px;
  position: relative;
  line-height: 1.5;
}
.project-card__tasks li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: .7rem;
}
.project-card__tools { display: flex; flex-wrap: wrap; gap: 5px; }
.tag {
  font-size: .7rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  padding: 2px 9px;
  border-radius: 20px;
  font-weight: 500;
}
.tag--teal {
  background: rgba(0,201,167,.07);
  border-color: rgba(0,201,167,.22);
  color: var(--teal);
}

/* ── SKILLS ───────────────────────────────────────────────── */
.skills__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.skill-group {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.skill-group__title {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-100);
}
.skill-group__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.skill-tag {
  font-size: .76rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: var(--transition);
}
.skill-tag:hover {
  background: rgba(0,201,167,.07);
  border-color: rgba(0,201,167,.22);
  color: var(--teal);
}

/* ── INDUSTRIES ───────────────────────────────────────────── */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.industry-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.industry-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(0,229,192,.2);
  transform: translateY(-3px);
}
.industry-card__icon { font-size: 2rem; margin-bottom: 14px; }
.industry-card__name {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
}
.industry-card__desc { font-size: .8rem; color: rgba(255,255,255,.48); line-height: 1.55; }

/* ── DOWNLOAD CARDS ───────────────────────────────────────── */
.download__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.download-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.download-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal-bright), var(--blue-grad));
}
.download-card:hover { background: rgba(255,255,255,.07); transform: translateY(-3px); }
.download-card__icon { font-size: 2.4rem; margin-bottom: 14px; }
.download-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.download-card__hint {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 6px;
  line-height: 1.5;
}
.download-card__badge {
  display: inline-block;
  font-size: .68rem;
  background: rgba(0,229,192,.1);
  border: 1px solid rgba(0,229,192,.2);
  color: var(--teal-bright);
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: .04em;
}
.download-card__unavailable {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  font-style: italic;
  margin-top: 10px;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  margin-top: 52px;
}
.contact__info h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
}
.contact__items { display: flex; flex-direction: column; gap: 14px; }
.contact__item { display: flex; gap: 14px; align-items: flex-start; }
.contact__item-icon {
  width: 38px; height: 38px;
  background: rgba(0,201,167,.09);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  color: var(--teal);
}
.contact__item-label { font-size: .73rem; color: var(--text-muted); margin-bottom: 2px; }
.contact__item-value { font-size: .9rem; font-weight: 500; color: var(--text); }
.contact__item-value a { color: var(--teal); }
.contact__item-value a:hover { text-decoration: underline; }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--gray-800); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,201,167,.1);
}
.form-group textarea { min-height: 110px; resize: vertical; }

/* Consent checkbox */
.form-consent { display: flex; gap: 10px; align-items: flex-start; }
.form-consent input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--teal);
  cursor: pointer;
}
.form-consent label {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 400;
  cursor: pointer;
}
.form-consent label a { color: var(--teal); text-decoration: underline; }

/* Privacy hint */
.form-privacy-note {
  font-size: .74rem;
  color: var(--gray-400);
  line-height: 1.6;
  padding: 10px 14px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--teal);
}

.form-success {
  display: none;
  background: rgba(0,201,167,.05);
  border: 1.5px solid rgba(0,201,167,.22);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--teal);
  font-size: .88rem;
  font-weight: 500;
}
.form-error {
  display: none;
  background: rgba(220,38,38,.05);
  border: 1.5px solid rgba(220,38,38,.2);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: #c02020;
  font-size: .82rem;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq__list { max-width: 800px; margin: 48px auto 0; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}
.faq-item__q:hover { background: var(--gray-50); }
.faq-item__q svg { flex-shrink: 0; transition: transform .25s ease; color: var(--teal); }
.faq-item.open .faq-item__q svg { transform: rotate(180deg); }
.faq-item__a {
  display: none;
  padding: 0 22px 18px;
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-item__a { display: block; }

/* ── CTA STRIP ────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 60%, rgba(0,201,167,.07) 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-strip p { color: rgba(255,255,255,.55); margin-bottom: 30px; font-size: .95rem; }
.cta-strip__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.55);
  padding: 52px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__brand-sub { font-size: .75rem; margin-bottom: 14px; }
.footer__brand-desc { font-size: .8rem; line-height: 1.65; max-width: 240px; }
.footer__col-title {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 14px;
}
.footer__links { display: flex; flex-direction: column; gap: 7px; }
.footer__links a { font-size: .8rem; transition: var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__bottom-text { font-size: .76rem; }
.footer__bottom-links { display: flex; gap: 18px; }
.footer__bottom-links a { font-size: .76rem; transition: var(--transition); }
.footer__bottom-links a:hover { color: var(--white); }

/* ── LEGAL PAGES ──────────────────────────────────────────── */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.legal-content .legal-updated { font-size: .8rem; color: var(--text-muted); margin-bottom: 40px; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 30px 0 10px;
}
.legal-content p, .legal-content li {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}
.legal-content ul { padding-left: 18px; list-style: disc; }
.legal-notice {
  background: #fff8e1;
  border: 1px solid #f5c842;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 30px;
  font-size: .8rem;
  color: #7a5300;
}

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid       { grid-template-columns: repeat(2, 1fr); }
  .scenarios__grid      { grid-template-columns: repeat(2, 1fr); }
  .skills__grid         { grid-template-columns: repeat(2, 1fr); }
  .footer__grid         { grid-template-columns: 1fr 1fr; gap: 28px; }
  .kritis__grid         { grid-template-columns: 1fr; gap: 40px; }
  .person-page__grid    { grid-template-columns: 1fr; gap: 36px; }
  .person-page__photo-card { max-width: 300px; }
  .person-page__photo-card img { height: 400px; }
}
@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .nav__links           { display: none; }
  .nav__toggle          { display: flex; }
  .hero__stats          { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .hero__stat:nth-child(2) { border-right: none; }
  .about__grid          { grid-template-columns: 1fr; gap: 36px; }
  .project-card         { grid-template-columns: 1fr; }
  .project-card__aside  { padding: 18px 22px; }
  .project-card__tasks  { grid-template-columns: 1fr; }
  .skills__grid         { grid-template-columns: 1fr 1fr; }
  .industries__grid     { grid-template-columns: 1fr 1fr; }
  .contact__grid        { grid-template-columns: 1fr; gap: 36px; }
  .form-row             { grid-template-columns: 1fr; }
  .footer__grid         { grid-template-columns: 1fr; gap: 28px; }
  .about__highlights    { grid-template-columns: 1fr; }
  .scenarios__grid      { grid-template-columns: 1fr; }
  .download__grid       { grid-template-columns: 1fr; }
  .kritis__badge-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero__stats          { grid-template-columns: 1fr 1fr; }
  .skills__grid         { grid-template-columns: 1fr; }
  .industries__grid     { grid-template-columns: 1fr; }
  .kritis__badge-grid   { grid-template-columns: 1fr; }
}
