/* ============================================
   QBM Stuttgart – Plain HTML/CSS/JS Rebuild
   ============================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Raleway', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #ffffff;
  color: #1a1a1a;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  background: #fff;
  padding: 8px 16px;
  z-index: 1000;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  background: #092F5D;
}

.hd-nav {
  width: 100%;
  padding: 0 16px;
  position: relative;
  z-index: 100;
}
.hd-nav ::selection { background-color: #3580d9; color: white; }

.hd-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.hd-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}

.hd-logo-img, .ft-logo-img {
  height: 32px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}

.hd-nav .hd-logo-img {
  filter: brightness(0) invert(1);
}

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

.hd-link {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 8px 20px; border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease; position: relative;
}
.hd-link:hover { color: #ffffff; background: rgba(255,255,255,0.07); }
.hd-link.is-active { color: #ffffff; }

.hd-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #f59e0b; color: #061d3a; font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  padding: 10px 24px; border-radius: 9999px; margin-left: 12px;
  transition: all 0.3s ease; border: none; cursor: pointer;
}
.hd-cta:hover { background: #fbbf24; transform: scale(1.03); box-shadow: 0 4px 16px rgba(245,158,11,0.25); }

.hd-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hd-burger span {
  display: block; width: 24px; height: 2px;
  background: rgba(255,255,255,0.8); border-radius: 2px; transition: all 0.3s ease;
}
.hd-burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hd-burger.is-open span:nth-child(2) { opacity: 0; }
.hd-burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.hd-mobile-menu {
  display: none; position: absolute; top: 72px; left: 0; right: 0;
  background: #071e3b; border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px 24px; flex-direction: column; gap: 4px; z-index: 99;
}
.hd-mobile-menu.is-open { display: flex; }
.hd-mobile-link {
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 16px; border-radius: 8px; transition: all 0.25s ease;
}
.hd-mobile-link:hover { color: #ffffff; background: rgba(255,255,255,0.07); }
.hd-mobile-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: #f59e0b; color: #061d3a; font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  padding: 14px 24px; border-radius: 9999px; margin-top: 8px; transition: all 0.3s ease;
}
.hd-mobile-cta:hover { background: #fbbf24; }

@media (max-width: 768px) {
  .hd-links { display: none; }
  .hd-cta-desktop { display: none; }
  .hd-burger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero-outer {
  position: relative;
  background-image: url("../img/header-background.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: #000000;
  opacity: 0.58;
}

.hero-section {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 16px 0;
  width: 100%;
  color: #ffffff;
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero-section ::selection { background-color: #092f5d; color: white; }

@media (min-width: 640px) {
  .hero-section { padding-left: 24px; padding-right: 24px; }
}
@media (min-width: 1024px) {
  .hero-section { padding-left: 32px; padding-right: 32px; }
}

.hero-inner { max-width: 896px; }

.hero-taglines {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-tagline-wrap { overflow: hidden; }
.hero-tagline {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(100%);
}
@media (min-width: 640px) {
  .hero-tagline { font-size: 16px; }
}
.hero-tagline.is-visible {
  animation: heroSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-claim-wrap { overflow: hidden; margin-bottom: 10px; }
.hero-claim {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #3580d9;
  opacity: 0;
  transform: translateY(100%);
}
.hero-claim.is-visible {
  animation: heroSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-h1-wrap { overflow: hidden; }
.hero-h1 {
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  opacity: 0;
  transform: translateY(100%);
}
.hero-h1.is-visible {
  animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-h1-accent {
  position: relative;
  display: inline;
  color: #f59e0b;
}
.hero-h1-accent::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f59e0b;
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: left;
}
.hero-h1.is-visible .hero-h1-accent::after {
  animation: heroLineGrow 0.6s ease forwards;
  animation-delay: 0.6s;
}

.hero-cursor {
  display: inline-block;
  width: 3px;
  margin-left: 3px;
  height: 0.85em;
  background: #f59e0b;
  vertical-align: baseline;
  position: relative;
  top: 0.05em;
  animation: heroBlink 0.7s step-end infinite;
}
.hero-cursor.typing { animation: none; opacity: 1; }

@keyframes heroBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-desc-wrap { max-width: 520px; margin-bottom: 28px; }
.hero-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
}
.hero-desc.is-visible { animation: heroFadeUp 0.7s ease forwards; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
}
.hero-buttons.is-visible { animation: heroFadeUp 0.7s ease forwards; }

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f59e0b;
  color: #061d3a;
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.hero-btn-primary:hover {
  background: #fbbf24;
  transform: scale(1.02);
  box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.2);
}
.hero-btn-primary svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.hero-btn-primary:hover svg { transform: translateX(4px); }

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.025em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}
.hero-btn-secondary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.02);
}

.hero-certs {
  margin-top: 40px;
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
}
.hero-certs.is-visible { animation: heroFadeUp 0.7s ease forwards; }
.hero-certs-line {
  width: 36px; height: 1px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.hero-certs-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroLineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ============================================
   MARQUEE
   ============================================ */
.mq-section {
  background: #092F5D;
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mq-track {
  display: flex;
  white-space: nowrap;
  animation: mqScroll 35s linear infinite;
  width: max-content;
}
.mq-item { display: flex; align-items: center; flex-shrink: 0; }
.mq-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 32px;
}
.mq-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(245, 158, 11, 0.6);
  flex-shrink: 0;
}
@keyframes mqScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   LEISTUNGEN
   ============================================ */
.ls-section {
  padding: 48px 16px;
  background: #ffffff;
  color: #1a1a1a;
}
.ls-section ::selection { background-color: #092f5d; color: white; }

.ls-wrap { max-width: 1280px; margin: 0 auto; }

.ls-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .ls-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ls-grid { grid-template-columns: repeat(3, 1fr); } }

.ls-card {
  display: block;
  position: relative;
  background: #f9fafb;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #f3f4f6;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
}
.ls-card:hover {
  border-color: #b8cce2;
  box-shadow: 0 20px 40px -12px rgba(9, 47, 93, 0.06);
  transform: translateY(-4px);
}
.ls-card.is-visible { animation: lsFadeUp 0.6s ease forwards; }

.ls-card-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.ls-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: #e8eef6;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.ls-card:hover .ls-icon-wrap { background: #d4deec; }
.ls-icon-wrap svg {
  width: 20px; height: 20px;
  stroke: #092f5d; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.ls-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700;
  color: #d1d5db; letter-spacing: 0.05em;
}
.ls-card-title {
  font-size: 20px; font-weight: 700;
  color: #061d3a; letter-spacing: -0.025em;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.ls-card:hover .ls-card-title { color: #092f5d; }
.ls-card-desc {
  font-size: 15px; color: #6b7280;
  line-height: 1.75; margin-bottom: 24px;
}
.ls-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: #1467cc;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}
.ls-card:hover .ls-link { gap: 12px; color: #0e4a8f; }
.ls-link svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Hervorgehobene Karte (Digitalisierung & KI) */
.ls-card--featured {
  background: linear-gradient(155deg, #f9fafb 0%, #fef6e7 100%);
  border: 1px solid #f3d9a4;
  box-shadow: 0 1px 0 rgba(245, 158, 11, 0.08) inset;
}
.ls-card--featured:hover {
  border-color: #f0c368;
  box-shadow: 0 20px 40px -12px rgba(245, 158, 11, 0.14);
}
.ls-card--featured .ls-icon-wrap { background: #fbe8c4; }
.ls-card--featured:hover .ls-icon-wrap { background: #f7dba3; }
.ls-card--featured .ls-icon-wrap svg { stroke: #92660c; }
.ls-card-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: #f59e0b; color: #061d3a;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 9999px;
}
@keyframes lsFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   METHODIK (PDCA)
   ============================================ */
.mt-section {
  position: relative;
  padding: 112px 16px;
  color: #ffffff;
  background: #092F5D;
}
.mt-section ::selection { background-color: #3580d9; color: white; }

.mt-wrap { position: relative; max-width: 1280px; margin: 0 auto; z-index: 2; }
.mt-header { text-align: center; margin-bottom: 80px; }
.mt-label {
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #3580d9; margin-bottom: 16px;
  opacity: 0; transform: translateY(20px);
}
.mt-title {
  font-size: 36px; font-weight: 800;
  color: #ffffff; letter-spacing: -0.025em; line-height: 1.1;
  margin: 0;
  opacity: 0; transform: translateY(20px);
}
@media (min-width: 1024px) { .mt-title { font-size: 48px; } }

.mt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .mt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .mt-grid { grid-template-columns: repeat(4, 1fr); } }

.mt-step { position: relative; opacity: 0; transform: translateY(24px); }
.mt-step .mt-connector { display: none; }
@media (min-width: 1024px) {
  .mt-step .mt-connector {
    display: block; position: absolute;
    top: 48px; left: calc(100% + 0.5rem);
    width: calc(100% - 2rem); height: 1px; overflow: hidden;
  }
  .mt-connector-line {
    height: 100%; width: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.2), transparent);
  }
  .mt-step.is-visible .mt-connector-line { animation: mtDrawLine 0.8s ease forwards; }
}

.mt-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mt-step:hover .mt-card {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}
.mt-card-top { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.mt-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(9, 47, 93, 0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.mt-step:hover .mt-icon-wrap { background: rgba(9, 47, 93, 0.45); }
.mt-icon-wrap svg {
  width: 20px; height: 20px;
  stroke: #3580d9; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.mt-num {
  font-size: 24px; font-weight: 900;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1; text-transform: uppercase; letter-spacing: 0.04em;
  transition: color 0.3s ease;
}
.mt-step:hover .mt-num { color: rgba(255, 255, 255, 0.2); }
.mt-card-title {
  font-size: 20px; font-weight: 800;
  color: #ffffff; letter-spacing: -0.025em;
  margin: 0 0 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.mt-card-desc {
  font-size: 15px; color: rgba(255, 255, 255, 0.4);
  line-height: 1.625; margin: 0;
}

@keyframes mtFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mtDrawLine {
  from { width: 0; }
  to { width: 100%; }
}
.mt-label.is-visible { animation: mtFadeUp 0.6s ease forwards; }
.mt-title.is-visible { animation: mtFadeUp 0.6s ease forwards; animation-delay: 0.1s; }
.mt-step.is-visible { animation: mtFadeUp 0.6s ease forwards; }

/* ============================================
   CTA
   ============================================ */
.cta-section {
  padding: 96px 16px;
  color: #092F5D;
  text-align: center;
  background: #ffffff;
}
.cta-section ::selection { background-color: #3580d9; color: white; }
.cta-wrap { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.cta-title {
  font-size: 36px; font-weight: 800;
  color: #092F5D; letter-spacing: -0.025em; line-height: 1.15;
  margin: 0 0 20px;
  opacity: 0; transform: translateY(20px);
}
@media (min-width: 1024px) { .cta-title { font-size: 48px; } }
.cta-title-accent { color: #f59e0b; }
.cta-desc {
  font-size: 17px; color: rgba(9, 47, 93, 0.55);
  line-height: 1.7; max-width: 520px; margin: 0 auto 36px;
  opacity: 0; transform: translateY(20px);
}
.cta-btn-wrap { opacity: 0; transform: translateY(20px); }
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #f59e0b; color: #061d3a;
  padding: 18px 40px; border-radius: 9999px;
  font-weight: 700; font-size: 16px; letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.3s ease; border: none; cursor: pointer;
}
.cta-btn:hover {
  background: #fbbf24; transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.25);
}
.cta-btn svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.cta-btn:hover svg { transform: translateX(4px); }
@keyframes ctaFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cta-title.is-visible { animation: ctaFadeUp 0.6s ease forwards; }
.cta-desc.is-visible { animation: ctaFadeUp 0.6s ease forwards; animation-delay: 0.12s; }
.cta-btn-wrap.is-visible { animation: ctaFadeUp 0.6s ease forwards; animation-delay: 0.24s; }

/* ============================================
   STATISTIKEN
   ============================================ */
.st-section {
  position: relative;
  padding: 96px 16px;
  color: #ffffff;
  background: #092F5D;
}
.st-section ::selection { background-color: #3580d9; color: white; }
.st-wrap { position: relative; max-width: 1280px; margin: 0 auto; z-index: 2; }

.st-header {
  text-align: center; margin-bottom: 64px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.st-header.is-visible { opacity: 1; transform: translateY(0); }
.st-label {
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #f59e0b; margin-bottom: 16px;
}
.st-title {
  font-size: 36px; font-weight: 800;
  color: #ffffff; letter-spacing: -0.025em; line-height: 1.1;
  margin: 0;
}
@media (min-width: 1024px) { .st-title { font-size: 48px; } }

.st-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (min-width: 1024px) { .st-grid { grid-template-columns: repeat(4, 1fr); gap: 64px; } }

.st-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.st-item.is-visible { opacity: 1; transform: translateY(0); }
.st-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.st-item:hover .st-icon-wrap { background: rgba(255, 255, 255, 0.2); transform: scale(1.1); }
.st-icon-wrap svg {
  width: 24px; height: 24px;
  stroke: #f59e0b; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.st-value {
  font-size: 36px; font-weight: 800;
  color: #ffffff; letter-spacing: -0.025em;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 1024px) { .st-value { font-size: 48px; } }
.st-label-text {
  font-size: 14px; font-weight: 500;
  color: rgba(255, 255, 255, 0.5); letter-spacing: 0.025em;
}

/* ============================================
   FOOTER
   ============================================ */
.ft-section {
  padding: 64px 16px 0;
  color: #1a1a1a;
  background: #f9fafb;
  border-top: 1px solid #f0f2f5;
}
.ft-section ::selection { background-color: #d1e3f8; color: #061d3a; }
.ft-wrap { max-width: 1280px; margin: 0 auto; }
.ft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
@media (min-width: 768px) { .ft-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; } }
.ft-brand { max-width: 360px; }
.ft-section .ft-logo-img {
  height: 36px;
  margin-bottom: 24px;
}
.ft-desc { font-size: 15px; color: #6b7280; line-height: 1.7; margin-bottom: 28px; }
.ft-certs {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; color: #9ca3af;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.ft-certs-dot { width: 4px; height: 4px; border-radius: 50%; background: #d1d5db; flex-shrink: 0; }
.ft-col-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #061d3a; margin-bottom: 20px;
}
.ft-links { display: flex; flex-direction: column; gap: 14px; }
.ft-link { font-size: 15px; color: #6b7280; text-decoration: none; transition: color 0.25s ease; }
.ft-link:hover { color: #061d3a; }
.ft-contact-item { display: flex; flex-direction: column; gap: 4px; }
.ft-contact-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: #9ca3af;
}
.ft-contact-value { font-size: 14px; color: #6b7280; text-decoration: none; transition: color 0.25s ease; line-height: 1.4; }
a.ft-contact-value:hover { color: #061d3a; }
.ft-divider { height: 1px; background: #e5e7eb; }
.ft-bottom {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px 0; font-size: 13px; color: #9ca3af;
}
@media (min-width: 768px) {
  .ft-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
