/* ===================================================================
   ACRP — Asturian Coal Reclamation Project
   Shared stylesheet
   =================================================================== */

:root{
  --navy: #0d1b3a;
  --navy-2: #0a1730;
  --white: #ffffff;
  --ink: #14213d;
  --text: #2b3550;
  --text-light: #5b6478;
  --border: #e4e7ee;
  --bg-page: #f5f7fa;
  --bg-soft: #eceff4;
  --bg-soft-2: #e6eaf0;

  /* theme accent — overridden per page via .theme-orange */
  --accent: #6fae30;
  --accent-dark: #558423;
  --accent-tint: #eef6e4;
}

.theme-orange{
  --accent: #e07a2c;
  --accent-dark: #b45f1f;
  --accent-tint: #fbeee2;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin:0; padding:0; }
img{ max-width:100%; display:block; }
h1,h2,h3,h4{ margin:0; font-family: "Poppins","Segoe UI",Arial,sans-serif; color: var(--navy); }
p{ margin:0; }

.container{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ---------------- Top utility bar ---------------- */
.topbar{
  background: var(--navy);
  color: #cfd6e6;
  font-size:15px;
}
.topbar-inner{
  max-width:1440px;
  margin:0 auto;
  padding: 7px 64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.topbar-langs a{ color:#cfd6e6; margin-right:8px; }
.topbar-langs a:hover{ color: var(--accent); }
.topbar-tagline{ letter-spacing:.3px; }
.topbar-tagline .hl{ color: var(--accent); font-weight:600; }
.topbar-mail{ display:flex; align-items:center; gap:8px; color:#e8ebf2; }
.topbar-mail svg{ width:15px; height:15px; }

/* ---------------- Header / Nav ---------------- */
header.site-header{
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner{
  max-width:1440px;
  margin:0 auto;
  padding: 13px 64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-logo-img{ height:62px; width:auto; display:block; }
.footer-brand{ display:flex; gap:12px; margin-bottom:14px; }
.footer-logo-chip{
  background:#fff; border-radius:6px; padding:8px 12px;
  display:inline-flex; align-items:center;
}
.footer-logo-img{ height:38px; width:auto; display:block; }
.brand-mark{ width:36px; height:36px; flex-shrink:0; }
.brand-text .name{
  font-family:"Poppins",sans-serif;
  font-weight:700;
  font-size:23px;
  color: var(--navy);
  letter-spacing:.5px;
  line-height:1;
}
.brand-text .sub{
  font-size:12.5px;
  letter-spacing:1.5px;
  color: var(--text-light);
  font-weight:600;
  margin-top:3px;
}
nav.main-nav ul{ display:flex; gap:36px; }
nav.main-nav a{
  font-size:14.5px;
  font-weight:600;
  letter-spacing:.3px;
  color: var(--navy);
  padding-bottom: 14px;
  border-bottom: 3px solid transparent;
  transition:.2s;
}
nav.main-nav a:hover{ color: var(--accent); }
nav.main-nav a.active{ color: var(--accent); border-bottom-color: var(--accent); }

/* ---------------- Hero (interior pages) ---------------- */
.page-hero{
  position:relative;
  background: linear-gradient(120deg, var(--navy) 0%, #16295a 60%, #1c3468 100%);
  color:#fff;
  overflow:hidden;
  background-size: cover;
  background-position: center;
  min-height:330px;
  display:flex; align-items:center;
}
.page-hero-inner{ width:100%; }
.page-hero.photo-1{
  background-image:
    linear-gradient(90deg, rgba(9,18,42,.96) 0%, rgba(9,18,42,.88) 30%, rgba(9,18,42,.45) 55%, rgba(9,18,42,.08) 80%),
    url('../img/port-01-harbourbridge.jpg');
  background-position: center 40%;
}
.page-hero.photo-2{
  background-image:
    linear-gradient(90deg, rgba(9,18,42,.96) 0%, rgba(9,18,42,.88) 30%, rgba(9,18,42,.45) 55%, rgba(9,18,42,.08) 80%),
    url('../img/port-02-crane-detail.jpg');
  background-position: center 78%;
}
.page-hero.photo-3{
  background-image:
    linear-gradient(90deg, rgba(9,18,42,.96) 0%, rgba(9,18,42,.88) 30%, rgba(9,18,42,.45) 55%, rgba(9,18,42,.08) 80%),
    url('../img/port-03-cranes-city.jpg');
  background-position: center 58%;
}
.page-hero.photo-4{
  background-image:
    linear-gradient(90deg, rgba(9,18,42,.96) 0%, rgba(9,18,42,.88) 30%, rgba(9,18,42,.45) 55%, rgba(9,18,42,.08) 80%),
    url('../img/port-04-crane-calm.jpg');
  background-position: center 72%;
}
.page-hero.photo-5{
  background-image:
    linear-gradient(90deg, rgba(9,18,42,.96) 0%, rgba(9,18,42,.88) 30%, rgba(9,18,42,.45) 55%, rgba(9,18,42,.08) 80%),
    url('../img/port-05-evergreen.jpg');
  background-position: center 48%;
}
.page-hero-inner{
  max-width:1440px;
  margin:0 auto;
  padding: 40px 64px 46px;
  display:block;
  position:relative;
  z-index:2;
}
.breadcrumb{
  font-size:13px;
  letter-spacing:1px;
  color:#aeb9d6;
  margin-bottom:10px;
  text-transform:uppercase;
}
.breadcrumb .accent{ color: var(--accent); margin:0 6px; }
.page-hero h1{
  color:#fff;
  font-size:34.5px;
  font-weight:700;
  line-height:1.15;
  margin-bottom:10px;
}
.rule{
  width:52px; height:3px;
  background: var(--accent);
  margin-bottom:12px;
}
.page-hero p.lead{
  color:#c9d1e6;
  font-size:15.5px;
  line-height:1.55;
  max-width:520px;
}
.hero-photo{
  border-radius: 4px;
  overflow:hidden;
  aspect-ratio: 16/5.6;
  background-size:cover;
  background-position:center;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.photo-port{
  background-image:
    linear-gradient(180deg, rgba(10,20,45,.08), rgba(8,16,34,.38)),
    url('../img/port-01-harbourbridge.jpg');
  background-size: cover;
  background-position: center;
}
.photo-1{
  background-image:
    linear-gradient(180deg, rgba(10,20,45,.08), rgba(8,16,34,.4)),
    url('../img/port-01-harbourbridge.jpg');
  background-size: cover; background-position: center 42%;
}
.photo-2{
  background-image:
    linear-gradient(180deg, rgba(10,20,45,.1), rgba(8,16,34,.4)),
    url('../img/port-02-crane-detail.jpg');
  background-size: cover; background-position: center 55%;
}
.photo-3{
  background-image:
    linear-gradient(180deg, rgba(10,20,45,.1), rgba(8,16,34,.42)),
    url('../img/port-03-cranes-city.jpg');
  background-size: cover; background-position: center 60%;
}
.photo-4{
  background-image:
    linear-gradient(180deg, rgba(10,20,45,.1), rgba(8,16,34,.4)),
    url('../img/port-04-crane-calm.jpg');
  background-size: cover; background-position: center 55%;
}
.photo-5{
  background-image:
    linear-gradient(180deg, rgba(10,20,45,.12), rgba(8,16,34,.45)),
    url('../img/port-05-evergreen.jpg');
  background-size: cover; background-position: center 50%;
}

/* ---------------- Home hero (bigger, full) ---------------- */
.home-hero{
  position:relative;
  min-height: 340px;
  color:#fff;
  background-image:
    linear-gradient(90deg, rgba(9,18,42,.96) 0%, rgba(9,18,42,.88) 28%, rgba(9,18,42,.45) 55%, rgba(9,18,42,.08) 80%),
    url('../img/port-01-harbourbridge.jpg');
  background-size: cover;
  background-position: center 38%;
  display:flex;
  align-items:center;
}
.home-hero-inner{
  max-width:1440px; margin:0 auto; padding: 40px 64px; width:100%;
}
.home-hero h1{
  color:#fff; font-size:36.5px; line-height:1.18; font-weight:700; max-width:640px;
}
.home-hero .accent-dot{ color: var(--accent); }
.home-hero p.lead{
  color:#dbe1ee; font-size:15.5px; line-height:1.55; max-width:520px; margin:12px 0 18px;
}
.hero-cta{ display:flex; gap:16px; }
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 11px 20px;
  font-size:13.5px; font-weight:700; letter-spacing:.5px;
  border-radius:2px;
  cursor:pointer;
  transition:.2s;
  border:1px solid transparent;
}
.btn-primary{ background: var(--navy); color:#fff; }
.btn-primary:hover{ background: var(--navy-2); }
.btn-outline{ background:transparent; border-color:#fff; color:#fff; }
.btn-outline:hover{ background:rgba(255,255,255,.1); }
.btn-accent{ background: var(--accent); color:#fff; }
.btn-accent:hover{ background: var(--accent-dark); }
.btn-navy-outline{ border:1px solid var(--navy); color:var(--navy); background:transparent; }
.btn-navy-outline:hover{ background: var(--navy); color:#fff; }

/* ---------------- Stat strip ---------------- */
.stat-strip{
  background: var(--bg-soft);
  border-bottom:1px solid var(--border);
}
.stat-strip .container{
  display:grid;
  grid-template-columns: repeat(6,1fr);
  padding: 18px 64px;
}
.stat-item{ text-align:center; padding: 0 10px; border-right:1px solid var(--border); }
.stat-item:last-child{ border-right:none; }
.stat-icon{ width:26px; height:26px; margin:0 auto 6px; color: var(--accent); }
.stat-item .big{ font-size:17px; font-weight:700; color: var(--navy); margin-bottom:2px; }
.stat-item .small{ font-size:11.5px; letter-spacing:.5px; color: var(--text-light); font-weight:600; }

/* ---------------- Generic sections ---------------- */
section{ padding: 28px 64px; max-width:1440px; margin:0 auto; }
.eyebrow{
  font-size:12.5px; font-weight:700; letter-spacing:1.2px;
  color: var(--accent); text-transform:uppercase; margin-bottom:6px;
}
.section-title{ font-size:26px; font-weight:700; margin-bottom:10px; }
.section-lead{ color: var(--text-light); font-size:14.5px; line-height:1.6; max-width:640px; margin-bottom:14px;}

.two-col-intro{
  display:grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items:center;
  padding: 36px 64px;
}
.video-card{
  position:relative; border-radius:4px; overflow:hidden; aspect-ratio: 1/1;
  max-width:235px; width:100%; margin-left:auto;
  background-image:
    linear-gradient(160deg, rgba(15,30,20,.35), rgba(8,15,10,.6)),
    url('../img/port-05-evergreen.jpg');
  background-size: cover;
  background-position: center 45%;
}
.play-btn{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:64px; height:64px; border-radius:50%; background:rgba(255,255,255,.92);
  display:flex; align-items:center; justify-content:center;
}
.play-btn svg{ width:22px; height:22px; margin-left:3px; color: var(--navy); }
.video-caption{
  position:absolute; left:50%; bottom:26px; transform:translateX(-50%);
  text-align:center; color:#fff;
}
.video-caption .t{ font-weight:700; letter-spacing:.5px; font-size:16px; }
.video-caption .d{ font-size:14px; color:#cfd6e6; margin-top:2px; }

/* ---------------- Value pillars footer strip ---------------- */
.pillars{
  background: var(--navy); color:#fff;
}
.pillars .container{
  display:grid; grid-template-columns: repeat(4,1fr);
  padding: 24px 64px; gap: 20px;
}
.pillar{ display:flex; gap:14px; }
.pillar svg{ width:30px; height:30px; color: var(--accent); flex-shrink:0; }
.pillar h4{ color:#fff; font-size:14px; letter-spacing:.4px; margin-bottom:4px; }
.pillar p{ font-size:13px; color:#b9c2d9; line-height:1.5; }

/* ---------------- Cards / grids ---------------- */
.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }
.grid-3 > *, .grid-2 > *, .grid-4 > *{ min-width:0; }
.grid-4{ display:grid; grid-template-columns: repeat(4,1fr); gap:16px; }
.grid-2{ display:grid; grid-template-columns: repeat(2,1fr); gap:16px; }

.icon-card{
  background: var(--bg-soft); border-radius:4px; padding:18px 18px;
}
.icon-card svg{ width:24px; height:24px; color: var(--accent); margin-bottom:8px; }
.icon-card h4{ font-size:14.5px; margin-bottom:5px; }
.icon-card p{ font-size:13.5px; color: var(--text-light); line-height:1.5; }

.list-arrow{ display:grid; gap:0; }
.list-arrow-item{
  display:flex; gap:14px; padding: 13px 0; border-bottom:1px solid var(--border);
}
.list-arrow-item:last-child{ border-bottom:none; }
.list-arrow-icon{
  width:36px; height:36px; border-radius:50%; background:#fff; border:2px solid var(--accent);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.list-arrow-icon svg{ width:17px; height:17px; color: var(--accent); }
.list-arrow-item h4{ font-size:13px; color: var(--navy); letter-spacing:.3px; margin-bottom:3px; text-transform:uppercase; font-weight:700;}
.list-arrow-item p{ font-size:12.5px; color: var(--text-light); line-height:1.5; }

/* ---------------- CTA banner ---------------- */
.cta-banner{
  background: var(--accent); color:#fff; border-radius:4px;
  padding: 18px 22px; display:flex; flex-direction:column; gap:10px; justify-content:center;
}
.cta-banner h4{ color:#fff; font-size:15.5px; }
.cta-banner .btn{ align-self:flex-start; }

/* ---------------- Bottom feature strip (home) ---------------- */
.feature-strip{ background: var(--navy); color:#fff; }
.feature-strip .container{
  display:grid; grid-template-columns: repeat(4,1fr); gap:16px;
  padding: 16px 64px;
}
.feature-strip .item{ display:flex; gap:14px; }
.feature-strip svg{ width:22px; height:22px; color: var(--accent); flex-shrink:0; }
.feature-strip h4{ color:#fff; font-size:14px; margin-bottom:3px; }
.feature-strip p{ font-size:13px; color:#b9c2d9; line-height:1.5; }

/* ---------------- Mini footer bar (timeline-style) ---------------- */
.mini-footer-bar{ background: var(--navy); }
.mini-footer-bar .container{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding: 14px 64px; flex-wrap:wrap;
}
.mini-tagline{
  display:flex; align-items:center; gap:8px; color:#fff; font-size:12px; font-weight:600; white-space:nowrap;
}
.mini-tagline svg{ width:16px; height:16px; color: var(--accent); }
.mini-items{ display:flex; gap:28px; flex-wrap:wrap; }
.mini-item{ display:flex; align-items:center; gap:7px; color:#b9c2d9; font-size:12px; white-space:nowrap; }
.mini-item svg{ width:15px; height:15px; color: var(--accent); flex-shrink:0; }
.mini-copy{ color:#7c88a8; font-size:11.5px; white-space:nowrap; }

/* ---------------- Footer ---------------- */
footer.site-footer{ background: var(--navy-2); color:#c7cee2; }
.footer-inner{
  max-width:1440px; margin:0 auto; padding: 26px 64px 12px;
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:40px;
}
.footer-inner.footer-3col{ grid-template-columns: 1.4fr 1fr 1fr; }
.footer-brand{ display:flex; gap:12px; margin-bottom:14px; }
.footer-brand .name{ color:#fff; font-weight:700; font-size:22px; font-family:"Poppins",sans-serif;}
.footer-brand .sub{ font-size:11.5px; letter-spacing:1.5px; color:#8f9ab8; margin-top:2px;}
.footer-col h5{ color:#fff; font-size:14px; letter-spacing:.6px; margin-bottom:10px; text-transform:uppercase;}
.footer-col ul li{ margin-bottom:6px; font-size:13.5px; }
.footer-col ul li a:hover{ color: var(--accent); }
.footer-col p{ font-size:13.5px; line-height:1.6; color:#a7b1cb; }
.social-row{ display:flex; gap:10px; margin-top:12px; }
.social-row a{
  width:32px; height:32px; border:1px solid #33406a; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.social-row svg{ width:15px; height:15px; }
.footer-contact-item{ display:flex; gap:10px; margin-bottom:8px; font-size:13.5px; }
.footer-contact-item svg{ width:16px; height:16px; flex-shrink:0; margin-top:2px; color: var(--accent);}
.footer-bottom{
  border-top:1px solid #24304f; text-align:center; padding: 12px 64px;
  font-size:13px; color:#7c88a8;
}

/* ---------------- Utility ---------------- */
.bg-soft{ background: var(--bg-soft); }
.bg-navy{ background: var(--navy); color:#fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4{ color:#fff; }
.text-accent{ color: var(--accent); }
.divider-accent{ width:64px; height:3px; background: var(--accent); margin-bottom:18px; }

/* forms */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-grid.full{ grid-template-columns: 1fr; }
input, select, textarea{
  width:100%; padding:13px 14px; border:1px solid var(--border); border-radius:3px;
  font-family:inherit; font-size:15.5px; color: var(--text); background:#fbfbfc;
}
textarea{ min-height:110px; resize:vertical; }
.checkbox-row{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color: var(--text-light); }
.checkbox-row input{ width:auto; margin-top:2px; }
.checkbox-row a{ color: var(--accent); }

/* map placeholder */
.map-box{
  border-radius:4px; overflow:hidden; border:1px solid var(--border);
  aspect-ratio: 16/9;
  background: repeating-linear-gradient(45deg,#eef1f5,#eef1f5 10px,#e6e9ee 10px,#e6e9ee 20px);
  position:relative;
}
.map-pin{
  position:absolute; background:#fff; border:1px solid var(--border); border-radius:3px;
  padding:12px 14px; top:20px; left:20px; box-shadow:0 6px 20px rgba(0,0,0,.08); font-size:14.5px; max-width:200px;
}
.map-pin .flag{ font-weight:700; color: var(--accent); font-size:13px; letter-spacing:.5px; margin-bottom:6px;}

/* timeline */
.tl-phases{ display:grid; grid-template-columns:repeat(5,1fr); gap:10px; margin-bottom:14px;}
.tl-phase{ background: var(--bg-soft); border-top:3px solid var(--accent); padding:16px 10px 14px; text-align:center; border-radius:6px;}
.tl-phase.active{ border-top-color: var(--accent); background:#fff; box-shadow:0 4px 16px rgba(0,0,0,.06);}
.tl-phase svg{ width:26px; height:26px; color: var(--accent); margin-bottom:8px;}
.tl-phase .num{ font-size:12.5px; letter-spacing:.8px; color: var(--text-light); font-weight:700;}
.tl-phase .lbl{ font-size:15px; font-weight:700; color: var(--navy);}

.tl-track{ position:relative; margin: 18px 0 6px; }
.tl-line{ position:absolute; top:9px; left:0; right:0; height:2px; background: var(--border); }
.tl-line-fill{ position:absolute; top:9px; left:0; height:2px; background: var(--accent); }
.tl-points{ display:flex; justify-content:space-between; position:relative; }
.tl-point{ text-align:center; width:120px; }
.tl-dot{ width:20px; height:20px; border-radius:50%; background:#fff; border:2px solid var(--accent); margin:0 auto 12px; }
.tl-point .month{ font-weight:700; color: var(--navy); font-size:13.5px; margin-bottom:2px;}
.tl-point p{ font-size:12.5px; color: var(--text-light); line-height:1.4; }

.milestone-list{ display:grid; gap:5px; }
.milestone{ display:flex; justify-content:space-between; align-items:flex-start; gap:9px; padding-bottom:6px; border-bottom:1px solid var(--border);}
.milestone:last-child{ border-bottom:none; }
.milestone-left{ display:flex; gap:9px; align-items:flex-start; }
.milestone svg{ width:17px; height:17px; color: var(--accent); margin-top:1px; flex-shrink:0; }
.milestone h5{ font-size:13px; color: var(--navy); margin:0 0 1px; }
.milestone p{ font-size:12px; color: var(--text-light); margin:0; }
.milestone .when{ font-size:12.5px; font-weight:700; color: var(--navy); white-space:nowrap; }

/* org chart */
.org-box{ border:1px solid var(--border); border-radius:6px; padding:11px; background:#fff; text-align:center; }
.org-box.top{ background: var(--navy); color:#fff; }
.org-box .flag{ width:26px; height:26px; border-radius:50%; margin:0 auto 5px; background: linear-gradient(#333,#333); }
.org-title{ font-weight:700; font-size:13.5px; }
.org-sub{ font-size:12.5px; color: var(--text-light); margin-top:1px; }

/* org chart connector (elbow lines) */
.org-connector{ position:relative; height:22px; }
.org-connector .oc-vert{ position:absolute; top:0; left:50%; width:2px; height:10px; background:#9aa3ba; transform:translateX(-50%); }
.org-connector .oc-horiz{ position:absolute; top:10px; left:16.6%; right:16.6%; height:2px; background:#9aa3ba; }
.org-connector .oc-drop{ position:absolute; top:10px; width:2px; height:12px; background:#9aa3ba; transform:translateX(-50%); }

/* partner org boxes (wider, left-aligned) */
.org-box-partner{ border:1px solid var(--border); border-radius:6px; padding:16px; background:#fff; text-align:left; }
.obp-head{ display:flex; align-items:center; gap:12px; margin-bottom:10px; }
.obp-head .leader-flag{ width:42px; height:42px; }
.obp-name{ font-weight:700; font-size:13.5px; color:var(--navy); }
.obp-role{ font-size:11px; color:var(--accent-dark); font-weight:700; margin-top:1px; }
.obp-desc{ font-size:11.5px; color:var(--text-light); line-height:1.5; }

/* department boxes */
.dept-box{ border-radius:6px; padding:14px 10px; background: var(--bg-soft); text-align:center; }
.dept-box svg{ width:24px; height:24px; color: var(--accent); margin:0 auto 8px; display:block; }
.dept-box .dept-title{ font-weight:700; font-size:10.5px; color:var(--navy); margin-bottom:4px; letter-spacing:.2px; }
.dept-box .dept-desc{ font-size:9.5px; color: var(--text-light); line-height:1.4; }

/* leadership card */
.leader-card{ display:flex; gap:14px; align-items:flex-start; padding:16px 18px; border:none; border-radius:6px; background: var(--bg-soft); }
.leader-flag{ width:50px; height:50px; border-radius:50%; flex-shrink:0; overflow:hidden; }
.leader-card h4{ font-size:14.5px; margin-bottom:1px; }
.leader-card .role{ font-size:12px; color: var(--accent-dark); font-weight:700; margin-bottom:5px;}
.leader-card p.desc{ font-size:12.5px; color: var(--text-light); line-height:1.5; }

.strength-item{ display:flex; gap:9px; align-items:flex-start; }
.strength-item svg{ width:18px; height:18px; color: var(--accent); flex-shrink:0; margin-top:1px;}
.strength-item h5{ font-size:13px; margin-bottom:2px; }
.strength-item p{ font-size:12.5px; color: var(--text-light); line-height:1.4; }

.check-list li{ display:flex; gap:10px; margin-bottom:16px; font-size:13.5px; line-height:1.55; color:var(--text); align-items:flex-start;}
.check-list svg{ width:16px; height:16px; color: var(--accent); margin-top:3px; flex-shrink:0;}

.decision-flow{ display:flex; justify-content:space-between; align-items:center; gap:6px; }
.decision-step{ text-align:center; flex:1; min-width:0; }
.decision-step .circle{
  width:44px; height:44px; border-radius:50%; background: var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center; margin:0 auto 7px;
}
.decision-step svg{ width:17px; height:17px; }
.decision-step .lbl{ font-size:10.5px; font-weight:700; color: var(--navy); overflow-wrap:break-word; }
.decision-step p{ font-size:9px; color: var(--text-light); margin-top:1px; overflow-wrap:break-word; }
.decision-arrow{ color: var(--border); font-size:22px; }

/* value creation steps */
.vc-steps{ display:grid; grid-template-columns:1fr auto 1fr auto 1fr auto 1fr; align-items:start; gap:10px; }
.vc-steps > *{ min-width:0; }
.vc-step{ text-align:center; flex:1; }
.vc-step svg{ width:30px; height:30px; color: var(--accent); margin-bottom:8px; }
.vc-step h4{ font-size:13.5px; margin-bottom:4px; }
.vc-step p{ font-size:12.5px; color: var(--text-light); line-height:1.45; }
.vc-arrow{ color: var(--accent); font-size:24px; padding-top:14px; }

.driver-item{ display:flex; gap:11px; padding: 11px 0; border-bottom:1px solid var(--border); }
.driver-item:last-child{ border-bottom:none; }
.driver-icon{ width:32px; height:32px; border-radius:50%; background: var(--navy); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.driver-icon svg{ width:18px; height:18px; color:#fff; }
.driver-item h5{ font-size:13px; letter-spacing:.3px; color: var(--accent-dark); margin-bottom:2px; text-transform:uppercase;}
.driver-item p{ font-size:13px; color: var(--text-light); line-height:1.45; }

.stake-item{ display:flex; gap:11px; padding:11px 0; border-bottom:1px solid var(--border);}
.stake-item:last-child{ border-bottom:none; }
.stake-item svg{ width:22px; height:22px; color: var(--accent); flex-shrink:0; }
.stake-item h5{ font-size:13.5px; margin-bottom:2px; }
.stake-item p{ font-size:13px; color: var(--text-light); line-height:1.45; }

/* sustainability SDG badges */
.sdg-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.sdg-row > *{ min-width:0; }
.sdg-badge{
  width:100%; aspect-ratio: 1/1; border-radius:5px; color:#fff; font-size:9.5px; font-weight:700;
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:6px;
  line-height:1.25;
}
.sdg-badge .n{ font-size:17px; font-weight:800; margin-bottom:3px;}

.standard-item{ text-align:center; }
.standard-item svg{ width:48px; height:48px; color: var(--navy); margin:0 auto 16px; }
.standard-item h5{ font-size:16px; margin-bottom:9px; }
.standard-item p{ font-size:14.5px; color: var(--text-light); line-height:1.65; }

.bullet-list li{ font-size:13.5px; color: var(--text); line-height:1.5; padding-left:14px; position:relative; margin-bottom:6px;}
.bullet-list li::before{ content:""; position:absolute; left:0; top:8px; width:6px; height:6px; border-radius:50%; background: var(--accent); }

.approach-item{ display:block; margin-bottom:2px; }
.approach-item svg{ width:22px; height:22px; color: var(--accent); display:block; margin-bottom:6px; }
.approach-item h5{ font-size:12px; margin-bottom:3px; white-space:nowrap; }
.approach-item p{ font-size:12px; color: var(--text-light); line-height:1.45;}

/* project value chain */
.chain{ display:flex; justify-content:space-between; gap:8px; }
.chain-step{ text-align:center; flex:1; }
.chain-step svg{ width:28px; height:28px; color: var(--navy); margin-bottom:7px; }
.chain-step h5{ font-size:12.5px; margin-bottom:2px; }
.chain-step p{ font-size:12px; color: var(--text-light); line-height:1.4; }
.chain-arrow{ color: var(--accent); align-self:center; font-size:20px; }

.spec-row{ display:flex; justify-content:space-between; padding:15px 0; border-bottom:1px solid var(--border); font-size:14px; }
.spec-row:last-child{ border-bottom:none; }
.spec-row .k{ display:flex; gap:10px; align-items:center; color: var(--navy); font-weight:600;}
.spec-row .k svg{ width:17px; height:17px; color: var(--accent); }
.spec-row .v{ color: var(--text-light); }

.download-card{ background: var(--navy); color:#fff; border-radius:4px; padding:10px 13px; }
.download-card h5{ color:#fff; font-size:15px; margin:6px 0 4px; }
.download-card p{ font-size:14px; color:#b9c2d9; margin-bottom:10px; }

/* Responsive */
@media (max-width: 980px){
  .container, .nav-inner, .topbar-inner, .page-hero-inner, section, .footer-inner, .pillars .container, .feature-strip .container, .stat-strip .container{
    padding-left:24px; padding-right:24px;
  }
  nav.main-nav{
    /* Mobil: Navigation bleibt sichtbar und wird horizontal scrollbar.
       Ohne dies waeren die Unterseiten nur ueber den Footer erreichbar. */
    display:block;
    order:3;
    flex:0 0 100%;
    margin-top:10px;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    /* Anschnitt am rechten Rand signalisiert, dass es weitergeht */
    -webkit-mask-image:linear-gradient(to right,#000 calc(100% - 26px),transparent 100%);
            mask-image:linear-gradient(to right,#000 calc(100% - 26px),transparent 100%);
  }
  nav.main-nav::-webkit-scrollbar{ display:none; }
  nav.main-nav ul{
    display:flex;
    flex-wrap:nowrap;
    gap:0;
    width:max-content;
    padding:0 4px 2px 0;
  }
  nav.main-nav li{ flex:0 0 auto; }
  nav.main-nav a{
    display:block;
    padding:11px 13px;      /* ausreichend grosse Tap-Flaeche */
    white-space:nowrap;
  }
  .nav-inner{ flex-wrap:wrap; padding-top:11px; padding-bottom:4px; }
  .page-hero-inner{ grid-template-columns:1fr; }
  .two-col-intro{ grid-template-columns:1fr; }
  .grid-3, .grid-4, .grid-2{ grid-template-columns:1fr; }
  .stat-strip .container{ grid-template-columns: repeat(2,1fr); gap:20px;}
  .pillars .container, .feature-strip .container{ grid-template-columns:1fr 1fr; }
  .footer-inner{ grid-template-columns:1fr 1fr; }
  .vc-steps, .chain, .decision-flow{ flex-direction:column; }
  .vc-arrow, .chain-arrow, .decision-arrow{ display:none; }
  .tl-phases{ grid-template-columns:repeat(2,1fr); }
  .tl-points{ flex-wrap:wrap; gap:20px; }

  /* Tap-Flaechen: Empfehlung Apple/Google ist rund 44px.
     Betrifft Sprachumschalter, Kopf-Mail und Footer-Links. */
  .topbar-langs a{
    display:inline-block;
    padding:9px 8px;
    margin-right:2px;
    line-height:1;
  }
  .topbar-mail a{ display:inline-block; padding:8px 0; }
  .site-footer a{ display:inline-block; padding:7px 0; }
  .footer-col ul li{ margin-bottom:0; }

  /* Kleinste Schriftgrade auf dem Handy anheben */
  .kt-eyebrow{ font-size:11.5px; }
  .nr{ font-size:12px; }

  /* Raster, die sonst mehrspaltig bleiben und den Text silbenweise
     umbrechen lassen. Bei .nutzen steht die Spaltenzahl als
     Inline-Style im HTML - daher !important. */
  .nutzen{ grid-template-columns:1fr !important; gap:14px; }
  .form-grid{ grid-template-columns:1fr; }
  /* Lange Komposita nicht mitten im Wort brechen lassen */
  .n-card h4, .probe-data .pl, .probe-data .pv{
    overflow-wrap:break-word;
    word-break:normal;
    hyphens:auto;
  }
}

/* ===== Organization page: template-faithful components ===== */
.sec-title{
  font-family:"Poppins","Segoe UI",Arial,sans-serif;
  font-size:16.5px; font-weight:700; color:var(--navy);
  letter-spacing:.4px; text-transform:uppercase; margin-bottom:7px;
}
.sec-rule{ width:44px; height:3px; background:var(--accent); margin-bottom:16px; }

/* Leadership cards: flag | name+role | divider | description */
.lead-card{
  display:flex; align-items:center; gap:16px;
  background:#fff; border:1px solid var(--border); border-radius:8px; box-shadow:0 2px 8px rgba(13,27,58,.04);
  padding:16px 18px;
}
.lead-card .lc-flag{ width:52px; height:52px; border-radius:50%; flex-shrink:0; border:1px solid #e2e5ea; }
.lead-card .lc-id{ min-width:150px; }
.lead-card .lc-name{ font-weight:700; font-size:15px; color:var(--navy); letter-spacing:.4px; text-transform:uppercase; }
.lead-card .lc-role{ font-size:13px; color:var(--accent-dark); font-weight:700; margin-top:2px; line-height:1.3; }
.lead-card .lc-div{ width:1px; align-self:stretch; background:#dfe3ea; flex-shrink:0; }
.lead-card .lc-desc{ font-size:13px; color:var(--text-light); line-height:1.55; }

/* Strengths: 3-column grid with vertical separators */
.strengths-grid{ display:grid; grid-template-columns:repeat(3,1fr); }
.strengths-grid > *{ min-width:0; }
.strength-cell{ padding:10px 14px 12px 0; border-right:1px solid var(--border); border-bottom:1px solid var(--border); }
.strength-cell:nth-child(3n){ border-right:none; }
.strength-cell:nth-child(n+4){ border-bottom:none; padding-top:12px; }
.strength-cell:nth-child(3n+2), .strength-cell:nth-child(3n){ padding-left:14px; }
.strength-cell svg{ width:26px; height:26px; color:var(--accent); margin-bottom:6px; }
.strength-cell h5{ font-size:12px; font-weight:700; color:var(--navy); letter-spacing:.3px; margin-bottom:4px; text-transform:uppercase; }
.strength-cell p{ font-size:11.5px; color:var(--text-light); line-height:1.5; }

/* Board of Directors: centered pill */
.board-wrap{ text-align:center; }
.board-box{
  display:inline-flex; align-items:center; gap:12px;
  background:var(--navy); color:#fff; border-radius:8px;
  padding:13px 26px; text-align:left;
}
.board-box svg{ width:26px; height:26px; flex-shrink:0; }
.board-box .bb-t{ font-weight:700; font-size:13.5px; letter-spacing:.4px; }
.board-box .bb-s{ font-size:11px; color:#b9c2d9; margin-top:1px; }

/* Partner boxes under connector */
.pbox{
  border:1.5px solid #dfe3ea; border-radius:8px; background:#fff;
  padding:14px 12px 12px; text-align:center;
}
.pbox .pb-head{ display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:8px; text-align:left; min-height:44px; }
.pbox .pb-flag{ width:38px; height:38px; border-radius:50%; flex-shrink:0; border:1px solid #e2e5ea; }
.pbox .pb-name{ font-weight:700; font-size:13px; color:var(--navy); letter-spacing:.3px; text-transform:uppercase; }
.pbox .pb-role{ font-size:11.5px; color:var(--accent-dark); font-weight:700; line-height:1.25; margin-top:1px; }
.pbox .pb-desc{ font-size:11px; color:var(--navy); font-weight:700; line-height:1.4; border-top:1px solid var(--border); padding-top:8px; }

/* Departments: 6 in one row */
.dept-row{ display:grid; grid-template-columns:repeat(6,1fr); gap:7px; }
.dept-row > *{ min-width:0; }
.dept-cell{
  background:#fff; border:1px solid var(--border); border-radius:7px; box-shadow:0 2px 8px rgba(13,27,58,.04);
  padding:12px 5px 10px; text-align:center;
}
.dept-cell svg{ width:22px; height:22px; color:var(--accent); margin:0 auto 7px; display:block; }
.dept-cell .dc-t{ font-weight:700; font-size:9px; color:var(--navy); letter-spacing:.1px; margin-bottom:3px; line-height:1.25; overflow-wrap:break-word; }
.dept-cell .dc-d{ font-size:9px; color:var(--text-light); line-height:1.35; }

/* Strong partners band: light green */
.partners-band{
  background:var(--accent-tint); border-radius:7px;
  padding:12px 16px; text-align:center;
}
.partners-band svg{ width:20px; height:20px; color:var(--accent-dark); display:inline-block; vertical-align:-4px; margin-right:8px; }
.partners-band .pb-t{ font-weight:700; font-size:12.5px; color:var(--accent-dark); letter-spacing:.4px; }
.partners-band .pb-d{ font-size:12px; color:var(--text); margin-top:3px; }

/* Corporate governance circle-check list */
.gov-item{ display:flex; gap:10px; margin-bottom:11px; align-items:flex-start; font-size:12.5px; color:var(--text); line-height:1.5; }
.gov-item svg{ width:18px; height:18px; color:var(--accent); flex-shrink:0; margin-top:1px; }

/* Roles & Responsibilities: bare green icons, separated rows */
.rr-item{ display:flex; gap:13px; padding:11px 0; border-bottom:1px solid var(--border); }
.rr-item:last-child{ border-bottom:none; }
.rr-item svg{ width:28px; height:28px; color:var(--accent); flex-shrink:0; margin-top:1px; }
.rr-item h4{ font-size:13px; color:var(--navy); font-weight:700; letter-spacing:.3px; text-transform:uppercase; margin-bottom:3px; }
.rr-item p{ font-size:12.5px; color:var(--text-light); line-height:1.55; }

/* Vertical decision-making flow */
.decision-vert{ display:flex; flex-direction:column; }
.dv-step{ display:flex; align-items:center; gap:14px; }
.dv-step .circle{
  width:46px; height:46px; border-radius:50%; background:var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.dv-step .circle svg{ width:20px; height:20px; }
.dv-step .lbl{ font-size:13px; font-weight:700; color:var(--navy); letter-spacing:.3px; }
.dv-step p{ font-size:12px; color:var(--text-light); margin-top:1px; }
.dv-arrow{ color:var(--accent); font-size:17px; font-weight:700; margin:3px 0 3px 17px; line-height:1; }

/* Departments in 2 rows x 3 with larger text */
.dept-row-2x3{ grid-template-columns:repeat(3,1fr); gap:10px; }
.dept-row-2x3 .dept-cell{ padding:14px 10px 12px; }
.dept-row-2x3 .dept-cell svg{ width:26px; height:26px; margin-bottom:8px; }
.dept-row-2x3 .dept-cell .dc-t{ font-size:11.5px; letter-spacing:.3px; margin-bottom:4px; }
.dept-row-2x3 .dept-cell .dc-d{ font-size:10.5px; line-height:1.4; }

/* Our Strengths: single full-width row of 6 */
.strengths-row{ display:grid; grid-template-columns:repeat(6,1fr); gap:0; }
.strengths-row > *{ min-width:0; }
.strength-col{ padding:6px 18px 4px 0; border-right:1px solid var(--border); }
.strength-col:last-child{ border-right:none; }
.strength-col + .strength-col{ padding-left:18px; }
.strength-col svg{ width:28px; height:28px; color:var(--accent); margin-bottom:8px; }
.strength-col h5{ font-size:12.5px; font-weight:700; color:var(--navy); letter-spacing:.3px; margin-bottom:5px; text-transform:uppercase; }
.strength-col p{ font-size:12px; color:var(--text-light); line-height:1.5; }

/* Corporate Governance: 3-column full-width row */
.gov-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:0 40px; }
.gov-row > *{ min-width:0; }
.gov-row .gov-item{ font-size:13px; }

/* Decision flow full-width: larger circles and labels */
.decision-flow .circle{ width:52px; height:52px; }
.decision-flow .circle svg{ width:22px; height:22px; }
.decision-flow .decision-step .lbl{ font-size:13px; }
.decision-flow .decision-step p{ font-size:11.5px; }
.decision-arrow{ color:var(--accent); font-size:22px; }


/* Stretch outer columns of org row 1 so they end flush with middle column */
.col-flex{ display:flex; flex-direction:column; }
.fill-between{ flex:1; display:flex; flex-direction:column; justify-content:space-between; }


/* Competitive advantages: unified with vc-step sizing */
.adv-item{ text-align:left; }
.adv-item svg{ width:30px; height:30px; color:var(--accent); margin-bottom:8px; display:block; }
.adv-item p{ font-size:12.5px; color:var(--text-light); line-height:1.45; }


/* Timeline phase month badge */
.tl-badge{
  display:inline-block; margin-top:8px;
  background:var(--accent-tint); color:var(--accent-dark);
  font-size:11.5px; font-weight:700; letter-spacing:.3px;
  padding:4px 12px; border-radius:20px;
}

/* Contact page refinements */
.footer-inner.footer-3col-contact{ grid-template-columns: 1.3fr 1fr 1.1fr; gap:56px; }
.ql-2col{ display:grid; grid-template-columns:1fr 1fr; gap:0 28px; }
.map-frame{
  border-radius:6px; overflow:hidden; border:1px solid var(--border);
  height:210px; box-shadow:0 4px 14px rgba(13,27,58,.06);
}
.map-frame iframe{ width:100%; height:100%; border:0; display:block; }

/* Legal pages */
.legal-prose{ max-width:860px; margin:0 auto; padding:36px 64px 44px; }
.legal-prose h2{ font-size:22px; color:var(--navy); margin:0 0 6px; }
.legal-prose h3{ font-size:14.5px; color:var(--navy); margin:22px 0 6px; text-transform:none; }
.legal-prose p{ font-size:13.5px; color:var(--text); line-height:1.7; margin:0 0 8px; }
.legal-prose .legal-sub{ color:var(--text-light); font-size:13px; margin-bottom:14px; }
.legal-prose .legal-link{ color:var(--accent-dark); word-break:break-all; }
.legal-note{
  margin-top:28px; background:#fff; border-left:4px solid var(--accent);
  border-radius:6px; padding:14px 16px; font-size:12.5px; color:var(--text-light); line-height:1.6;
  box-shadow:0 2px 8px rgba(13,27,58,.05);
}

/* Active language in switcher */
.topbar-langs .lang-on{ color:#fff; font-weight:700; }

/* Multilingual: allow long DE/ES words to break in narrow columns */
.vc-step h4, .vc-step p, .adv-item p,
.tl-point p, .bullet-list li, .dept-cell .dc-t, .dept-cell .dc-d,
.strength-col h5, .strength-col p, .sdg-badge{
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

/* Value creation now full-width: no hyphenation needed, larger text */
.vc-step h4, .vc-step p, .adv-item p{ hyphens: manual; }
.vc-step h4{ font-size:14px; }
.vc-step p{ font-size:13px; line-height:1.55; }
.adv-item p{ font-size:13px; line-height:1.55; }
.vc-step svg{ width:34px; height:34px; }
.adv-item svg{ width:34px; height:34px; }

/* Footer bottom: copyright + credit with balanced spacing */
.footer-bottom{ display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:0; }
.footer-bottom .fb-sep{ margin:0 14px; color:#4a5675; }
.footer-bottom .fb-by{ color:#66738f; }
.mini-copy .fb-sep{ margin:0 10px; color:#4a5675; }
.mini-copy .fb-by{ color:#66738f; }

/* Thank-you page */
.thanks-check{
  width:72px; height:72px; margin:0 auto; border-radius:50%;
  background:#fff; border:2px solid var(--accent);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(13,27,58,.06);
}
.thanks-check svg{ width:32px; height:32px; color:var(--accent); }

/* Video-/Foto-Platzhalter: aktiviert sich automatisch, sobald Datei vorhanden */
.video-card .vc-player{
  width:100%; height:100%; object-fit:cover; display:block;
  background:#0d1b3a; border-radius:4px;
}
.video-card .vc-placeholder{ position:absolute; inset:0; }
.video-card.has-media{ background-size:cover; background-position:center; }

/* ═══════════ Neue Bausteine (Abwicklungs-Positionierung) ═══════════ */
.home-hero{ min-height:410px; }
.home-hero h1{ font-size:37px; max-width:800px; line-height:1.22; }
.home-hero h1 .hl2{ color:#8fd14f; }
.home-hero p.lead{ max-width:620px; font-size:14.5px; }
.kicker{
  display:inline-block; background:rgba(111,174,48,.18); border:1px solid rgba(143,209,79,.5);
  color:#a9de75; font-size:11.5px; font-weight:700; letter-spacing:1.2px;
  padding:6px 14px; border-radius:20px; margin-bottom:16px; text-transform:uppercase;
}
/* Logistikkette */
.kette{ display:grid; grid-template-columns:1fr auto 1fr auto 1fr auto 1fr; align-items:start; gap:10px; }
.kette > *{ min-width:0; }
.k-step{ text-align:center; }
.k-step .ring{
  width:56px; height:56px; border-radius:50%; background:#fff; border:2px solid var(--accent);
  display:flex; align-items:center; justify-content:center; margin:0 auto 10px;
  box-shadow:0 3px 10px rgba(13,27,58,.07);
}
.k-step .ring svg{ width:24px; height:24px; color:var(--accent-dark); }
.k-step h5{ font-size:13px; color:var(--navy); margin-bottom:4px; letter-spacing:.3px; }
.k-step p{ font-size:12px; color:var(--text-light); line-height:1.55; }
.k-arrow{ color:var(--accent); font-size:20px; padding-top:18px; text-align:center; }
.k-band{
  margin-top:22px; background:var(--navy); color:#fff; border-radius:8px;
  padding:16px 22px; display:flex; align-items:center; gap:14px;
}
.k-band svg{ width:22px; height:22px; color:#8fd14f; flex-shrink:0; }
.k-band p{ font-size:13.5px; color:#dbe1ee; margin:0; }
.k-band strong{ color:#fff; }
/* Nutzen-Karten */
.nutzen{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.nutzen > *{ min-width:0; }
.n-card{
  background:#fff; border:1px solid var(--border); border-radius:8px; padding:22px 24px;
  box-shadow:0 2px 10px rgba(13,27,58,.05);
}
.n-card .nr{ font-size:11px; font-weight:700; letter-spacing:1.2px; color:var(--accent-dark);
             text-transform:uppercase; margin-bottom:10px; }
.n-card h4{ font-size:16px; color:var(--navy); margin-bottom:8px; }
.n-card p{ font-size:13.5px; color:var(--text-light); line-height:1.65; }
/* Fakten-Liste */
.fakt{
  display:flex; align-items:center; gap:16px;
  padding:11px 0; border-bottom:1px solid var(--border);
}
.fakt:last-child{ border-bottom:none; }
.fakt svg{
  width:26px; height:26px; color:var(--accent);
  flex-shrink:0; align-self:center; margin:0;
}
.fakt h5{ font-size:13.5px; color:var(--navy); margin:0 0 2px; }
.fakt p{ font-size:12.5px; color:var(--text-light); line-height:1.55; margin:0; }
/* Diskretion */
.diskret{
  background: var(--bg-soft);
  border:1px solid var(--border);
  border-radius:8px; padding:24px 28px;
}
.diskret h3{ color: var(--navy); font-size:17px; margin-bottom:10px; letter-spacing:.2px; }
.diskret p{ color: var(--text); font-size:13.5px; line-height:1.75; margin-bottom:8px; }
.diskret .sig{
  color: var(--accent-dark); font-size:13px; font-weight:600; margin-top:12px;
  border-top:1px solid var(--border); padding-top:12px;
}
/* Weiße Karte */
.soft-card{
  background:#fff; border:1px solid var(--border); border-radius:8px;
  padding:20px 24px; box-shadow:0 2px 10px rgba(13,27,58,.05);
}
.soft-card h4{ font-size:15px; color:var(--navy); margin-bottom:8px; }
.soft-card p{ font-size:13px; color:var(--text-light); line-height:1.7; }
/* Offen-gesagt-Kasten */
.offen-box{
  background: var(--bg-soft);
  border:1px solid var(--border);
  border-radius:8px; padding:24px 28px;
}
.offen-box h3{ font-size:16px; color:var(--navy); margin-bottom:12px; }
.offen-box p{ font-size:13.5px; color:var(--text); line-height:1.75; margin-bottom:10px; }
.offen-box p:last-child{ margin-bottom:0; }
.offen-box strong{ color:var(--navy); }
/* Transport-Karten */
.dist{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.dist > *{ min-width:0; }
.d-card{ background:#fff; border:1px solid var(--border); border-radius:8px; padding:20px 22px;
         box-shadow:0 2px 10px rgba(13,27,58,.05); }
.d-card .dh{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.d-card .dh svg{ width:22px; height:22px; color:var(--accent-dark); flex-shrink:0; }
.d-card h4{ font-size:15px; color:var(--navy); margin:0; }
.d-card p{ font-size:13px; color:var(--text-light); line-height:1.65; }
/* Probenahme */
.probe-row{ display:grid; grid-template-columns:320px 1fr; gap:32px; align-items:center; }
.probe-row > *{ min-width:0; }
.probe-img{
  border-radius:8px; overflow:hidden; border:1px solid var(--border);
  box-shadow:0 3px 14px rgba(13,27,58,.08); background:#0d1b3a;
  aspect-ratio: 3/2;
}
.probe-img img{ width:100%; height:100%; object-fit:cover; display:block; }
.probe-data{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; margin-top:18px; }
.probe-data > *{ min-width:0; }
.pd{ padding-right:22px; border-right:1px solid var(--border); }
.pd:last-child{ border-right:none; }
.pd + .pd{ padding-left:22px; }
.pd .pl{ font-size:10.5px; letter-spacing:1px; text-transform:uppercase;
         color:var(--text-light); margin-bottom:5px; }
.pd .pv{ font-size:17px; font-weight:700; color:var(--navy); }
/* Videos */
.vid-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.vid-row > *{ min-width:0; }
.vid-box{ position:relative; border-radius:8px; overflow:hidden; background:#0d1b3a;
          border:1px solid var(--border); box-shadow:0 3px 14px rgba(13,27,58,.07); }
.vid-box video{ width:100%; height:100%; display:block; object-fit:cover; }
.vid-tag{
  position:absolute; left:12px; bottom:12px; z-index:2;
  background:rgba(9,18,42,.85); color:#fff; font-size:11px; font-weight:600;
  letter-spacing:.4px; padding:6px 12px; border-radius:20px;
}

/* ═══════════ Ablauf-Seite: Schritte mit markanter Nummer ═══════════ */
.prinzip{
  display:flex; gap:20px; align-items:flex-start;
  padding:20px 0; border-bottom:1px solid var(--border);
}
.prinzip:last-child{ border-bottom:none; }
.prinzip .num{
  width:52px; height:52px; flex-shrink:0;
  border-radius:50%;
  background: var(--navy);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family:"Poppins","Segoe UI",Arial,sans-serif;
  font-size:22px; font-weight:700; letter-spacing:0;
  box-shadow:0 4px 12px rgba(13,27,58,.22);
  border:3px solid #fff;
  outline:2px solid var(--accent);
  position:relative;
}
.prinzip h4{
  font-size:15.5px; color:var(--navy); margin:6px 0 6px;
  letter-spacing:.2px;
}
.prinzip p{
  font-size:13.5px; color:var(--text-light); line-height:1.7; margin:0;
}

/* ═══════════ Startseite: Ketten-Band über volle Breite ═══════════ */
.kette-teaser{
  background: var(--bg-soft);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.kette-teaser .container{
  max-width:1440px; margin:0 auto; padding:24px 64px 26px;
}
.kette-teaser .kt-head{
  display:flex; align-items:center; justify-content:space-between; margin-bottom:16px;
}
.kette-teaser .kt-eyebrow{
  font-size:10.5px; font-weight:700; letter-spacing:1.4px; text-transform:uppercase;
  color: var(--accent-dark); margin:0;
}
.kette-teaser .kt-link{
  display:inline-flex; align-items:center; gap:6px;
  font-size:12.5px; font-weight:700; color: var(--navy);
  border-bottom:1px solid var(--accent); padding-bottom:2px;
}
.kette-teaser .kt-link svg{ color: var(--accent); }
.kette-teaser .kt-link:hover{ color: var(--accent-dark); }

/* Die vier Glieder über die volle Breite */
.ktx{
  display:grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items:center; gap:12px;
}
.ktx > *{ min-width:0; }
.ktx-step{
  display:flex; align-items:center; justify-content:center; gap:11px;
  background:#fff; border:1px solid var(--border); border-radius:8px;
  padding:13px 16px;
  box-shadow:0 2px 8px rgba(13,27,58,.04);
}
.ktx-step svg{ color: var(--accent); flex-shrink:0; }
.ktx-step span{
  font-family:"Poppins","Segoe UI",Arial,sans-serif;
  font-size:14px; font-weight:700; color: var(--navy); letter-spacing:.2px;
  white-space:nowrap;
}
.ktx-arrow{ display:flex; align-items:center; justify-content:center; color: var(--accent); }
.kette-teaser .kt-note{
  font-size:12.5px; color: var(--text-light); margin:14px 0 0; line-height:1.6;
}

/* ═══════════ Seitenabschluss zurückhaltender ═══════════ */
/* Feature-Leiste: hell statt Navy → nur noch EIN dunkler Block am Seitenende */
.feature-strip{
  background: var(--bg-soft);
  color: var(--text);
  border-top:1px solid var(--border);
}
.feature-strip .container{ padding: 20px 64px; }
.feature-strip h4{ color: var(--navy); font-size:12px; letter-spacing:.4px; }
.feature-strip p{ color: var(--text-light); font-size:11.5px; }
.feature-strip svg{ color: var(--accent); }

/* Footer: schmaler und ruhiger */
.footer-inner{ padding: 22px 64px 8px; gap:36px; }
.footer-col h5{ font-size:11.5px; letter-spacing:1px; margin-bottom:9px; color:#a7b1cb; font-weight:700; }
.footer-col ul li{ margin-bottom:4px; font-size:12.5px; }
.footer-col ul li a{ color:#dbe1ee; }
.footer-contact-item{ margin-bottom:6px; font-size:12.5px; gap:9px; }
.footer-contact-item svg{ width:14px; height:14px; }
.footer-bottom{ padding: 10px 64px; font-size:12px; }

/* ═══════════ Logistik: Flächen nach dem Abtrag ═══════════ */
.flaechen-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:0 48px;
  margin-top:16px;
}
.flaechen-grid > *{ min-width:0; }
.flaechen-grid .fakt{
  border-bottom:none;
  background:#fff; border:1px solid var(--border); border-radius:8px;
  padding:20px 24px;
  align-items:center;
}
.flaechen-note{
  font-size:13px; font-weight:700; color:var(--navy); line-height:1.7;
  text-align:center;
  margin-top:18px; padding-top:16px;
  border-top:1px solid var(--border);
}


/* ═══════════════════════════════════════════════════════════════════
   ERGÄNZUNG 18.07.2026
   Schrifteinbindung + Responsive-Korrekturen
   Diese Regeln stehen bewusst am Dateiende, da sie vorherige
   Definitionen überschreiben.
   ═══════════════════════════════════════════════════════════════════ */

/* ---------- 1) Schriften lokal einbinden ----------------------------
   Bisher setzte das Stylesheet "Inter" und "Poppins", ohne sie zu
   laden – die gesamte Site lief auf Arial.
   Lokale Einbindung statt Google Fonts: kein externer Serveraufruf,
   damit datenschutzrechtlich unbedenklich.
   Dateien liegen in css/fonts/. Nur die tatsächlich genutzten
   Schnitte sind eingebunden: Inter 400/600/700, Poppins 700.
   -------------------------------------------------------------------- */
@font-face{
  font-family:'Inter';
  src:url('fonts/inter-regular.woff2') format('woff2');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Inter';
  src:url('fonts/inter-semibold.woff2') format('woff2');
  font-weight:600; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Inter';
  src:url('fonts/inter-bold.woff2') format('woff2');
  font-weight:700; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Poppins';
  src:url('fonts/poppins-bold.woff2') format('woff2');
  font-weight:700; font-style:normal; font-display:swap;
}

/* ---------- 2) Feature-Leiste am Seitenabschluss ---------------------
   Die Spaltenzahl wurde bisher per Inline-Style im HTML gesetzt.
   Inline-Styles überschreiben Media Queries – die Leiste blieb auf
   dem Handy dreispaltig und lief seitlich über.
   Im HTML nun: <div class="container feature-3">
   -------------------------------------------------------------------- */
.feature-strip .container.feature-3{ grid-template-columns: repeat(3,1fr); }
.feature-strip .container.feature-4{ grid-template-columns: repeat(4,1fr); }

/* !important ist hier nötig: Auf den bestehenden Seiten steht die
   Spaltenzahl als Inline-Style direkt im HTML, und Inline-Styles
   haben Vorrang vor Media Queries. So greift der Umbruch auch dort,
   ohne dass die vorhandenen Seiten angefasst werden müssen. */
@media (max-width: 900px){
  .feature-strip .container,
  .feature-strip .container.feature-3,
  .feature-strip .container.feature-4{ grid-template-columns: 1fr 1fr !important; }
  .pillars .container{ grid-template-columns: 1fr 1fr !important; }
  .stat-strip .container{ grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 560px){
  .feature-strip .container,
  .feature-strip .container.feature-3,
  .feature-strip .container.feature-4{ grid-template-columns: 1fr !important; }
}

/* ---------- 3) Footer-Variante footer-3col-contact -------------------
   Die bestehende Media Query setzt nur .footer-inner auf 1fr 1fr;
   die spezifischere Klasse behielt drei Spalten und lief über.
   -------------------------------------------------------------------- */
@media (max-width: 900px){
  .footer-inner.footer-3col-contact{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-inner.footer-3col-contact{ grid-template-columns: 1fr; }
}

/* ---------- 4) Prozesskette .ktx -------------------------------------
   Starres 7-Spalten-Raster mit nowrap-Text, ohne mobilen Umbruch.
   Betrifft auch Start- und Logistikseite.
   Ab hier untereinander, Pfeile um 90 Grad gedreht.
   -------------------------------------------------------------------- */
@media (max-width: 900px){
  .ktx{ grid-template-columns: 1fr; gap: 10px; }
  .ktx-step{ width:100%; }
  .ktx-step span{ white-space: normal; }
  .ktx-arrow{ transform: rotate(90deg); height:18px; }
}
@media (max-width: 420px){
  .ktx-step{ padding:11px 12px; gap:9px; }
  .ktx-step span{ font-size:13px; }
}

/* ---------- 5) Karten-Raster .nutzen ---------------------------------
   .nutzen ist ein eigenes 3-Spalten-Grid und fehlte in der bestehenden
   Media Query (dort nur .grid-2/-3/-4). Auf schmalen Displays
   schrumpften die Karten auf unter 100 px, der Text lief heraus.
   Betrifft auch die Startseite.
   -------------------------------------------------------------------- */
@media (max-width: 900px){
  .nutzen{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  .nutzen{ grid-template-columns: 1fr; }
}

/* Sicherheitsnetz: lange deutsche Komposita umbrechen lassen */
.n-card p, .n-card h4, .fakt p, .soft-card p, .diskret p{
  overflow-wrap: break-word;
}


/* ---------- 6) Modulraster an die tatsächliche Kachelzahl anpassen ---
   .stat-strip .container steht fest auf repeat(6,1fr). Enthält eine
   Seite weniger Kacheln, bleiben die restlichen Spalten leer und der
   Inhalt endet optisch vor dem rechten Seitenrand.
   Lösung: automatische Spaltenverteilung über die vorhandenen Kacheln.
   Wirkt auch auf der Startseite (dort 5 Kacheln in 6 Spalten).
   -------------------------------------------------------------------- */
.stat-strip .container{
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}

@media (max-width: 900px){
  .stat-strip .container{
    grid-auto-flow: row;
    grid-template-columns: repeat(2,1fr) !important;
    gap: 18px 0;
  }
  .stat-item{ border-right:none; }
}
@media (max-width: 480px){
  .stat-strip .container{ grid-template-columns: 1fr !important; }
}

/* ---------- 8) Weitere Bestandsseiten: mobile Korrekturen -----------
   Beim Test bei 390 px aufgefallen. Betrifft ausschließlich vorhandene
   Seiten, nicht die neue Nachnutzungsseite.
   -------------------------------------------------------------------- */

/* 8a) Prozesskette .kette (Logistikseite) – gleiches Muster wie .ktx:
       starres 7-Spalten-Raster, kein mobiler Umbruch. */
@media (max-width: 900px){
  .kette{ grid-template-columns: 1fr; gap:14px; }
  .k-arrow{ transform: rotate(90deg); height:18px; }
}

/* 8b) .grid-2 mit Inline-Spaltenangabe (z. B. Kontaktseite).
       Inline-Styles schlagen Media Queries, daher !important. */
@media (max-width: 900px){
  .grid-2{ grid-template-columns: 1fr !important; }
}

/* 8c) Sehr lange Wörter in Überschriften auf schmalen Displays
       (betrifft vor allem die spanischen Fassungen). */
@media (max-width: 480px){
  .page-hero h1, .home-hero h1{ font-size: 27px; }
  /* Silbentrennung statt hartem Bruch: "Datenschutzerklärung" wird
     zu "Datenschutz-erklärung" statt zu "Datenschutzerklärun / g".
     break-word bleibt als letzte Reserve, greift aber erst, wenn
     auch getrennt nichts mehr passt. */
  h1, h2, .section-title{
    hyphens:auto;
    -webkit-hyphens:auto;
    overflow-wrap:break-word;
  }
}

/* 8d) Distanz-Karten .dist (Logistikseite) – zweispaltig auch auf
       sehr schmalen Displays, dadurch Textüberlauf in den Karten. */
@media (max-width: 620px){
  .dist{ grid-template-columns: 1fr !important; }
}

/* 8e) Weitere feste Raster auf sehr schmalen Displays (360–390 px).
       Beim Test der Bestandsseiten aufgefallen. */
@media (max-width: 620px){
  .probe-row{ grid-template-columns: 1fr !important; }
  .dept-row{ grid-template-columns: repeat(2,1fr) !important; }
  .strengths-grid{ grid-template-columns: 1fr !important; }
  .strength-cell{ border-right:none; padding-left:0 !important; }
}

/* 8f) Sicherheitsnetz gegen lange Komposita.
       WICHTIG: nur auf schmalen Displays. Auf dem Desktop ist genug
       Platz vorhanden; Trennstriche mitten in Überschriften und
       Fließtext wirken dort wie ein Satzfehler.
       hyphens:auto trennt an sprachlich korrekter Stelle und setzt
       ein lang-Attribut am <html>-Element voraus - auf allen Seiten
       vorhanden (de / en / es). overflow-wrap bleibt als Reserve für
       Fälle ohne Trennstelle, etwa lange URLs. */
@media (max-width: 980px){
  p, h1, h2, h3, h4, h5, .big, .small, .pd, .lead{
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: break-word;
  }
}

/* 8g) Sehr schmale Geräte (unter 400 px): Innenabstände reduzieren.
       Verschachtelte .container erzeugen sonst doppelte Ränder, und
       Rasterinhalte bekommen zu wenig Platz. */
@media (max-width: 400px){
  .container, .nav-inner, .topbar-inner, .page-hero-inner, section,
  .footer-inner, .pillars .container, .feature-strip .container,
  .stat-strip .container, .kette-teaser .container{
    padding-left:16px; padding-right:16px;
  }
  .container .container{ padding-left:0; padding-right:0; }
  .grid-2 > *, .grid-3 > *, .grid-4 > *, .nutzen > *{ min-width:0; }
  .vid-box{ min-width:0; }
}

/* 8h) Letzte Feinheiten bei 360 px.
       section-Padding muss !important tragen, da es weiter oben in
       einer späteren Regel erneut gesetzt wird. */
@media (max-width: 400px){
  section{ padding-left:16px !important; padding-right:16px !important; }
}
@media (max-width: 700px){
  .flaechen-grid{ grid-template-columns: 1fr !important; gap:14px !important; }
}

/* 8i) Leadership-Karten (Organisationsseite): .lc-id hat min-width 150px,
       was zusammen mit Flag und Text auf 360 px nicht mehr passt.
       Ab hier untereinander statt nebeneinander. */
@media (max-width: 460px){
  .lead-card{ flex-wrap: wrap; gap:10px; }
  .lead-card .lc-id{ min-width:0; }
  .lead-card .lc-div{ display:none; }
}

/* ---------- 9) Höhe des Start-Heros an die Unterseiten angleichen ----
   .home-hero stand auf 410px, .page-hero der Unterseiten auf 330px.
   Der Sprung von 80px fiel beim Wechsel zwischen den Seiten auf.
   Gemeinsame Höhe: 360px – etwas mehr Raum als die Unterseiten,
   da der Start-Hero Kicker, zweizeilige Überschrift und dreizeiligen
   Fließtext trägt, aber deutlich näher am Rest der Site.
   -------------------------------------------------------------------- */
.home-hero{ min-height: 360px; }
.page-hero{ min-height: 360px; }

@media (max-width: 900px){
  .home-hero, .page-hero{ min-height: 300px; }
}
@media (max-width: 560px){
  .home-hero, .page-hero{ min-height: 260px; }
}

/* 9b) Start-Hero auf schmalen Displays: Die Überschrift ist länger als
       auf den Unterseiten und umbricht in viele Zeilen. Etwas kleinere
       Schrift hält den Hero näher an der Höhe der übrigen Seiten. */
@media (max-width: 560px){
  .home-hero h1{ font-size: 27px; line-height:1.2; }
  .home-hero p.lead{ font-size: 14.5px; }
}
@media (max-width: 400px){
  .home-hero h1{ font-size: 24px; }
}

/* 9c) .home-hero-inner fehlte in den Padding-Regeln für schmale Displays.
       Dadurch blieben links und rechts je 64px stehen und die Überschrift
       umbrach in fünf Zeilen – der Start-Hero wurde dadurch sehr hoch. */
@media (max-width: 900px){
  .home-hero-inner{ padding-left:24px !important; padding-right:24px !important; }
}
@media (max-width: 400px){
  .home-hero-inner{ padding-left:16px !important; padding-right:16px !important; }
}

/* 9d) Auf schmalen Displays trägt der Start-Hero mehr Text als die
       Unterseiten (Kicker + zweizeilige Überschrift + dreizeiliger
       Fließtext). Kompaktere vertikale Abstände gleichen die Höhe an. */
@media (max-width: 900px){
  .home-hero-inner{ padding-top:26px !important; padding-bottom:26px !important; }
  .home-hero .kicker{ margin-bottom:8px; }
  .home-hero h1{ margin-bottom:8px; }
  .home-hero p.lead{ line-height:1.5; }
}

/* ============================================================
   Mobile Nachtraege
   Stehen bewusst am Dateiende: Einige Grundregeln (z. B.
   .probe-data, .probe-row) sind weiter unten in dieser Datei
   definiert als der Haupt-Media-Query und wuerden ihn sonst
   ueberschreiben.
   ============================================================ */
@media (max-width: 980px){
  .probe-row{ grid-template-columns:1fr; gap:20px; }
  .probe-data{ grid-template-columns:1fr; row-gap:2px; }
  .probe-data .pd{ padding:9px 0; border-right:none; border-bottom:1px solid var(--border); }
  .probe-data .pd:last-child{ border-bottom:none; }
}
