:root {
  --primary: #2563eb;
  --primary-dark: #1e3a8a;
  --primary-light: #dbeafe;
  --text: #1e293b;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo img { height: 26px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}

.nav-links a:hover { color: var(--primary); }

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: .875rem !important;
  font-weight: 600 !important;
  transition: background .2s !important;
}

.nav-cta:hover { background: var(--primary-dark) !important; color: #fff !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 60%, #bfdbfe 100%);
  padding: 80px 24px 100px;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: .01em;
}

.hero-workflow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;
  margin-bottom: 28px;
}
.wf-step {
  background: var(--wf-color, var(--primary-dark));
  color: #fff;
  border-radius: 12px;
  width: 96px;
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  flex-shrink: 0;
}
.wf-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.wf-label {
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .02em;
  padding: 0 6px;
}
.wf-arrow {
  color: #475569;
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

/* Mobile: 3×2 Grid, Pfeile ausblenden */
@media (max-width: 700px) {
  .hero-workflow {
    display: grid;
    grid-template-columns: repeat(3, 88px);
    justify-content: center;
    gap: 10px;
  }
  .wf-arrow { display: none; }
  .wf-step { width: 88px; height: 88px; }
  .wf-icon { font-size: 1.5rem; }
  .wf-label { font-size: .65rem; }
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s;
}

.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--primary-dark);
  color: #fff;
  padding: 28px 24px;
}

.trust-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
}

.trust-item .icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.trust-item strong { display: block; font-size: .75rem; opacity: .7; font-weight: 400; }

.trust-rate {
  background: #fff;
  color: var(--primary-dark);
  border-radius: 6px;
  padding: 8px 20px;
  font-weight: 800;
  font-size: 1.1rem;
}

/* ── SECTIONS ── */
.section { padding: 80px 24px; }
.section-alt { background: var(--bg-light); }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid-4 { grid-template-columns: 1fr; }
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: box-shadow .2s, transform .2s;
}

.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--primary-light);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: .875rem;
  font-weight: 600;
  margin-top: 20px;
  transition: gap .2s;
}

.service-link:hover { gap: 10px; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: .95rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.stat {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-photo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-photo {
  width: 100%;
  max-width: 340px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-photo-caption {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-photo-caption strong { font-size: 1rem; color: var(--primary-dark); }
.about-photo-caption span { font-size: .85rem; color: var(--text-muted); }

/* ── VALUES GRID ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
  border: 1px solid var(--border);
}

.value-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
  display: block;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.value-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail div strong { font-weight: 600; font-size: .85rem; color: var(--text-muted); display: block; margin-bottom: 2px; }
.contact-detail div span { font-size: .95rem; }

.contact-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 20px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}
.contact-qr img {
  width: 270px;
  height: 270px;
  border-radius: 8px;
}
.contact-qr-text strong { font-size: .85rem; color: var(--text); display: block; margin-bottom: 4px; }
.contact-qr-text span { font-size: .8rem; color: var(--text-muted); line-height: 1.4; }

.vcf-download {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 14px 16px;
  background: var(--primary-light);
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s;
}
.vcf-download:hover { background: #bfdbfe; }
.vcf-icon { font-size: 1.8rem; flex-shrink: 0; }
.vcf-download div strong { font-size: .85rem; color: var(--primary-dark); display: block; margin-bottom: 3px; }
.vcf-download div span { font-size: .78rem; color: var(--text-muted); line-height: 1.4; }

.contact-form-title { font-size: 1.6rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.contact-form-sub { font-size: .95rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }

.contact-form {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 36px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .9rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color .2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
}

.form-submit:hover { background: var(--primary-dark); }

/* ── POWER BI ANIMATED ICON ── */
@keyframes bi-pop-in {
  0%   { opacity: 0; transform: scale(0.85) translateY(4px); }
  55%  { opacity: 1; transform: scale(1.04) translateY(-1px); }
  80%  { transform: scale(0.99) translateY(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes bi-bar-rise {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes bi-dot-pop {
  0%   { opacity: 0; transform: scale(0.3); }
  60%  { opacity: 1; transform: scale(1.25); }
  100% { opacity: 1; transform: scale(1); }
}
.service-icon--bi { background: none; padding: 0; overflow: visible; }
.bi-anim {
  width: 52px; height: 52px; border-radius: 10px; position: relative;
  background: linear-gradient(155deg, #cfe8fb 0%, #a9d8f7 55%, #8ecaf3 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 6px 14px rgba(63,120,163,.28);
  overflow: hidden;
  animation: bi-pop-in 2.1s cubic-bezier(.22,1,.36,1) both;
}
.bi-glow {
  position: absolute; top: -20px; left: -20px; width: 56px; height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.bi-chart {
  position: absolute; left: 11px; right: 11px; bottom: 13px; top: 17px;
  display: flex; align-items: flex-end; gap: 2px;
}
.bi-bw { position: relative; flex: 1; height: 100%; }
.bi-b {
  position: absolute; bottom: 0; left: 0; right: 0;
  border-radius: 3px 3px 1px 1px; transform-origin: bottom center;
  animation: bi-bar-rise 1.86s cubic-bezier(.22,1,.36,1) both;
}
.bi-b1 { height: 42%; background: linear-gradient(180deg,#ffe580,#f2c811); animation-delay:.15s; }
.bi-b2 { height: 68%; background: linear-gradient(180deg,#ffe580,#f2c811); animation-delay:.45s; }
.bi-b3 { height: 52%; background: linear-gradient(180deg,#fff,#e4eef7);   animation-delay:.75s; }
.bi-b4 { height: 88%; background: linear-gradient(180deg,#ffe580,#f2c811); animation-delay:1.05s; }
.bi-dot {
  position: absolute; top: 15px; right: 12px; width: 5px; height: 5px;
  border-radius: 50%; background: #f2c811;
  box-shadow: 0 0 0 2px rgba(242,200,17,.2);
  animation: bi-dot-pop 1.5s cubic-bezier(.22,1,.36,1) both;
  animation-delay: 1.35s;
}

/* ── POWER APPS ANIMATED ICON ── */
@keyframes pa-pop-in {
  0%   { opacity: 0; transform: scale(0.85) translateY(4px); }
  55%  { opacity: 1; transform: scale(1.04) translateY(-1px); }
  80%  { transform: scale(0.99) translateY(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes pa-tile-pop {
  0%   { opacity: 0; transform: scale(0.4) translateY(2px); }
  65%  { opacity: 1; transform: scale(1.08) translateY(-1px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes pa-dot-pop {
  0%   { opacity: 0; transform: scale(0.3); }
  60%  { opacity: 1; transform: scale(1.25); }
  100% { opacity: 1; transform: scale(1); }
}
.service-icon--pa { background: none; padding: 0; overflow: visible; }
.pa-anim {
  width: 52px; height: 52px; border-radius: 10px; position: relative;
  background: linear-gradient(155deg, #cfe8fb 0%, #a9d8f7 55%, #8ecaf3 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 6px 14px rgba(63,120,163,.28);
  overflow: hidden;
  animation: pa-pop-in 2.1s cubic-bezier(.22,1,.36,1) both;
}
.pa-glow {
  position: absolute; top: -10px; left: -10px; width: 38px; height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.pa-device {
  position: absolute; left: 16px; right: 16px; top: 8px; bottom: 8px;
  border-radius: 5px;
  background: linear-gradient(155deg, #8a94a3 0%, #5b6472 100%);
  box-shadow: 0 2px 5px rgba(31,60,86,.25);
  display: flex; flex-direction: column; align-items: center;
  padding: 3px 2px 2px;
  box-sizing: border-box;
}
.pa-notch { width: 6px; height: 1px; border-radius: 1px; background: rgba(255,255,255,.6); flex-shrink: 0; }
.pa-tiles { display: flex; flex-direction: column; gap: 2px; width: 100%; margin-top: 2px; flex: 1; }
.pa-tile { border-radius: 1px; animation: pa-tile-pop 1.8s cubic-bezier(.22,1,.36,1) both; }
.pa-t1 { height: 3px; width: 85%; background: linear-gradient(155deg,#fff,#e9edf2); animation-delay:.24s; }
.pa-t2 { height: 3px; width: 65%; background: linear-gradient(155deg,#fff,#e9edf2); animation-delay:.54s; }
.pa-t3 { height: 3px; width: 75%; background: linear-gradient(155deg,#fff,#e9edf2); animation-delay:.84s; }
.pa-t4 { height: 4px; width: 100%; background: linear-gradient(155deg,#2f5f8f,#12293f); margin-top: 1px; animation-delay:1.2s; }
.pa-home {
  width: 6px; height: 6px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  margin-top: 2px; flex-shrink: 0;
}
.pa-dot {
  position: absolute; top: 15px; right: 12px; width: 3px; height: 3px;
  border-radius: 50%; background: #12293f;
  animation: pa-dot-pop 1.5s cubic-bezier(.22,1,.36,1) both;
  animation-delay: 1.5s;
}

/* ── POWER AUTOMATE ANIMATED ICON ── */
@keyframes fa-pop-in {
  0%   { opacity: 0; transform: scale(0.85) translateY(4px); }
  55%  { opacity: 1; transform: scale(1.04) translateY(-1px); }
  80%  { transform: scale(0.99) translateY(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes fa-node-pop {
  0%   { opacity: 0; transform: scale(0.4) translateY(-2px); }
  65%  { opacity: 1; transform: scale(1.1) translateY(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes fa-diamond-pop {
  0%   { opacity: 0; transform: rotate(45deg) scale(0.4); }
  65%  { opacity: 1; transform: rotate(45deg) scale(1.15); }
  100% { opacity: 1; transform: rotate(45deg) scale(1); }
}
@keyframes fa-line-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes fa-diag-grow {
  from { transform: rotate(var(--ang)) scaleX(0); }
  to   { transform: rotate(var(--ang)) scaleX(1); }
}
@keyframes fa-check-fade { from { opacity:0; transform: scale(0.5); } to { opacity:1; transform: scale(1); } }

.service-icon--fa { background: none; padding: 0; overflow: visible; }
.fa-anim {
  width: 52px; height: 52px; border-radius: 10px; position: relative;
  background: linear-gradient(155deg, #cfe8fb 0%, #a9d8f7 55%, #8ecaf3 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 6px 14px rgba(63,120,163,.28);
  overflow: hidden;
  animation: fa-pop-in 0.7s cubic-bezier(.22,1,.36,1) both;
}
.fa-glow {
  position: absolute; top: -10px; left: -10px; width: 38px; height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.fa-bezel {
  position: absolute; left: 12px; right: 12px; top: 6px; bottom: 6px;
  border-radius: 3px;
  background: linear-gradient(155deg, #a0a7b0 0%, #868e98 100%);
  box-shadow: 0 2px 5px rgba(31,60,86,.2);
  padding: 1px; box-sizing: border-box;
}
.fa-screen {
  position: relative; width: 100%; height: 100%;
  border-radius: 2px; background: #fbfdff; overflow: hidden;
}
.fa-trigger {
  position: absolute; left: 10px; top: 4px; width: 4px; height: 4px;
  border-radius: 50%; background: linear-gradient(155deg,#ffe580,#f2c811);
  box-shadow: 0 1px 3px rgba(242,200,17,.4);
  animation: fa-node-pop 0.45s cubic-bezier(.22,1,.36,1) both; animation-delay:.05s;
}
.fa-line1 {
  position: absolute; left: 11.5px; top: 8px; width: 1px; height: 3px;
  background: #7d8a9a; transform-origin: 50% 0%;
  animation: fa-line-grow 0.28s cubic-bezier(.22,1,.36,1) both; animation-delay:.42s;
}
.fa-diamond {
  position: absolute; left: 8.5px; top: 11px; width: 6px; height: 6px;
  border-radius: 1px; background: linear-gradient(155deg,#5b9dff,#1f6fe0);
  box-shadow: 0 1px 3px rgba(31,111,224,.35);
  animation: fa-diamond-pop 0.5s cubic-bezier(.22,1,.36,1) both; animation-delay:.65s;
}
.fa-brL {
  position: absolute; left: 12px; top: 17px; width: 8px; height: 1px;
  background: #7d8a9a; transform-origin: 0% 50%; --ang: 145deg;
  animation: fa-diag-grow 0.32s cubic-bezier(.22,1,.36,1) both; animation-delay:1.0s;
}
.fa-brR {
  position: absolute; left: 12px; top: 17px; width: 8px; height: 1px;
  background: #7d8a9a; transform-origin: 0% 50%; --ang: 35deg;
  animation: fa-diag-grow 0.32s cubic-bezier(.22,1,.36,1) both; animation-delay:1.0s;
}
.fa-boxA {
  position: absolute; left: 2px; top: 20px; width: 6px; height: 4px;
  border-radius: 1px; background: linear-gradient(155deg,#ffb454,#e8801a);
  animation: fa-node-pop 0.45s cubic-bezier(.22,1,.36,1) both; animation-delay:1.35s;
}
.fa-boxB {
  position: absolute; left: 16px; top: 20px; width: 6px; height: 4px;
  border-radius: 1px; background: linear-gradient(155deg,#b874e8,#8a2be2);
  animation: fa-node-pop 0.45s cubic-bezier(.22,1,.36,1) both; animation-delay:1.35s;
}
.fa-mgL {
  position: absolute; left: 5px; top: 24px; width: 8px; height: 1px;
  background: #7d8a9a; transform-origin: 0% 50%; --ang: 35deg;
  animation: fa-diag-grow 0.32s cubic-bezier(.22,1,.36,1) both; animation-delay:1.7s;
}
.fa-mgR {
  position: absolute; left: 19px; top: 24px; width: 8px; height: 1px;
  background: #7d8a9a; transform-origin: 0% 50%; --ang: 145deg;
  animation: fa-diag-grow 0.32s cubic-bezier(.22,1,.36,1) both; animation-delay:1.7s;
}
.fa-final {
  position: absolute; left: 7px; top: 28px; width: 10px; height: 5px;
  border-radius: 2px; background: linear-gradient(155deg,#24c2c9,#0e8f96);
  display: flex; align-items: center; justify-content: center;
  animation: fa-node-pop 0.45s cubic-bezier(.22,1,.36,1) both; animation-delay:2.0s;
}
.fa-check {
  color: #fff; font-size: 4px; font-weight: 700; line-height: 1;
  animation: fa-check-fade 0.3s ease-out both; animation-delay:2.35s;
}

/* ── CHRONIK TABLE ── */
.chronik-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.chronik-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  min-width: 780px;
}
.chronik-table thead tr {
  background: var(--primary-dark);
  color: #fff;
}
.chronik-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.chronik-table td {
  padding: 14px 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.55;
}
.chronik-table tbody tr:last-child td { border-bottom: none; }
.chronik-table tbody tr:nth-child(even) { background: var(--bg-light); }
.chronik-table tbody tr:hover { background: #eff6ff; }
.chronik-table td:first-child { white-space: nowrap; font-weight: 600; color: var(--primary); }

/* ── FOOTER ── */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.7);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img { height: 28px; filter: brightness(0) invert(1); }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }

.footer-copy { font-size: .8rem; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 16px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-image-box { display: none; }

  .trust-bar-inner { gap: 20px; }
  .trust-item { font-size: .8rem; }

  .footer-inner { flex-direction: column; text-align: center; }
}

/* ── SECTION DIVIDER ── */
.section-divider {
  margin: 48px 0 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-divider h3 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }
