@charset "utf-8";
/* CSS Document */
    :root {
      --xt-yellow:      #ffd652;        /* 30,5,100,0 */
      --xt-cloud:       #ffd652;
      --xt-cloud-hover: #e6b800;
      --xt-cloud-dark:  #b38a00;
      --xt-red:         #DF3925;        /*5,88,90,0 */
      --xt-red-hover:   #B80F1E;        /*5,88,90,20 */
      --xt-green:       #86BD34;        /* 55,0,95,0 */
      --xt-moss-green:  #C7CD00;        /* 30,5,100,0 */
      --xt-grey:        #575756;        /* 0,0,0,80 */
      --xt-blue:        #96C4E3;        /* 45,12,5,0 */
      --xt-blue-hover:  #5BA0D1;        /* 65,25,5,0 */
      --xt-dark:        #222;
      --xt-gray:        #f5f7f8;
      --xt-border:      #e2e6e8;
      --xt-text:        #333;
      --xt-muted:       #666;
      --xt-white:       #fff;
      --font-weight-light: 300;
      --font-weight-normal: 400;
      --font-weight-medium: 500;
      --font-weight-semibold: 600;
      --font-weight-bold: 700;
      --spacing: .25rem;
      --container-xs: 20rem;
      --container-sm: 24rem;
      --container-md: 28rem;
      --container-lg: 32rem;
      --container-xl: 36rem;
      --container-2xl: 42rem;
      --container-3xl: 48rem;
      --container-4xl: 56rem;
      --container-5xl: 64rem;
      --container-6xl: 72rem;
      --container-7xl: 80rem;
    }

    .team-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--xt-gray);
      border: 3px solid var(--xt-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      flex-shrink: 0;
    }
   
    #bottom-space {
      margin-bottom: 30px;
    }

    .img-align-center {
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    body {
      margin: 0;
      font-family: 'sans-serif', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
      line-height: 1.6;
      color: var(--xt-text);
      background: var(--xt-white);
    }

    .container {
      width: min(1120px, 92%);
      margin: 0 auto;
    }

    /* Site header / navigation */
    .site-header {
      background: var(--xt-white);
      border-bottom: 1px solid var(--xt-border);
      position: sticky;
      top: 0;
      z-index: 1100;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }

    .nav-container {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 12px 0;
    }

    .nav-brand .site-logo {
      height: 44px;
      display: block;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 32px;
      height: 24px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      margin-left: auto;
    }

    .nav-toggle-bar {
      display: block;
      width: 100%;
      height: 3px;
      background: var(--xt-dark);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
      transform: translateY(10.5px) rotate(45deg);
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
      opacity: 0;
    }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
      transform: translateY(-10.5px) rotate(-45deg);
    }

    /* Overlay backdrop (hidden by default, active on mobile) */
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 998;
      cursor: pointer;
    }
    .nav-overlay.open {
      display: block;
    }

    /* Drawer header (logo + close button) — hidden on desktop */
    .nav-drawer-header {
      display: none;
    }

    .nav-menu {
      margin-left: auto;
    }

    .nav-menu ul {
      list-style: none;
      display: flex;
      gap: 20px;
      align-items: center;
      margin: 0;
      padding: 0;
    }

    .nav-menu a {
      color: var(--xt-dark);
      text-decoration: none;
      padding: 8px 6px;
      font-weight: 600;
    }

    .nav-menu a.active {
      color: var(--xt-red);
      border-bottom: 3px solid var(--xt-red);
      padding-bottom: 5px;
    }

    /* Dropdown */
    .nav-has-dropdown {
      position: relative;
    }
    .nav-menu ul .nav-dropdown {
      display: none;
      position: absolute;
      left: 0;
      background: var(--xt-white);
      border: 1px solid var(--xt-border);
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.10);
      padding: 6px 0;
      min-width: 210px;
      z-index: 2000;
      list-style: none;
      flex-direction: column;
      gap: 0;
      align-items: stretch;
    }
    .nav-has-dropdown:hover .nav-dropdown,
    .nav-has-dropdown:focus-within .nav-dropdown {
      display: flex;
    }
    .nav-menu ul .nav-dropdown li {
      width: 100%;
    }
    .nav-menu ul .nav-dropdown li a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px;
      font-weight: 500;
      font-size: 0.92rem;
      border-bottom: none;
      color: var(--xt-dark);
      white-space: nowrap;
      text-align: left;
    }
    .nav-menu ul .nav-dropdown li a:hover {
      background: var(--xt-gray);
      color: var(--xt-dark);
    }
    .nav-dropdown-divider {
      height: 1px;
      background: var(--xt-border);
      margin: 4px 0;
    }
    .nav-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      flex-shrink: 0;
      display: inline-block;
    }

    .nav-ctas {
      margin-left: auto;
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .hero {
      background: linear-gradient(135deg, #f7f9fa 0%, #eef5f6 100%);
      padding: 5px 0;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 50px;
      align-items: center;
    }
    .hero-card {
      position: relative;
      z-index: 1;
      background: var(--xt-white);
      border-radius: 18px;
      padding: 32px;
      border: 1px solid var(--xt-border);
      box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    }

    .hero-card-wrapper {
      position: relative;
    }

    .hero-card-deco {
      position: absolute;
      inset: -1.5rem;
      background-color: var(--xt-border,0.15);
      border-radius: 3rem;
      transform: rotate(-2.5deg);
      z-index: 0;
    }

    .breadcrumb {
      font-size: 0.9rem;
      color: var(--xt-muted);
      margin-bottom: 20px;
    }

    .breadcrumb a {
      color: var(--xt-muted);
      text-decoration: none;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    h1, h2, h3 {
      color: var(--xt-dark);
      line-height: 1.25;
    }

    h1 {
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      margin: 0 0 24px;
    }

    h2 {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      margin: 0 0 24px;
    }

    h3 {
      font-size: 1.25rem;
      margin-top: 0;
    }

    .lead {
      font-size: 1.2rem;
      margin-bottom: 32px;
      color: #030303;
    }


    .hero-card ul {
      padding-left: 20px;
      margin-bottom: 28px;
    }

    .hero-card li {
      margin-bottom: 10px;
    }

    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .button-row.centered {
      justify-content: center;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 30px;
    }

    .hero-visual {
      margin: 0 0 32px 0;
      overflow: hidden;
      border-radius: 0px;
      box-shadow: 0 18px 40px rgba(144, 193, 225, 0.35);
    }

    #basic {
      box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    }

    .hero-visual img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .metric {
      background: var(--xt-white);
      border: 1px solid var(--xt-border);
      border-radius: 14px;
      padding: 22px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    }

    .metric strong {
      display: block;
      font-size: 1.1rem;
      margin-bottom: 0.6rem;
      color: var(--xt-red);
    }

    .metric span {
      color: var(--xt-muted);
      font-size: 0.96rem;
      line-height: 1.6;
    }

    .section-highlight {
      background: var(--xt-white);
    }

    .site-footer {
      background: var(--xt-light);
      border-top: 1px solid var(--xt-border);
      padding: 40px 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      align-items: start;
    }

    .site-footer h3 {
      margin-bottom: 10px;
      font-size: 1.1rem;
    }

    .site-footer a {
      color: var(--xt-dark);
      text-decoration: none;
    }

    .site-footer a:hover {
      text-decoration: underline;
    }

    .btn {
      display: inline-block;
      padding: 14px 24px;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      transition: all 0.2s ease;
    }

    .btn-primary,
    .btn-primary-red {
      background: var(--xt-red);
      color: var(--xt-white);
    }

    .btn-primary:hover,
    .btn-primary-red:hover {
      background: var(--xt-red-hover);
    }

    .btn-primary-blue {
      background: var(--xt-blue);
      color: var(--xt-white);
    }

    .btn-primary-blue:hover {
      background: var(--xt-blue-hover);
    } 

    .btn-secondary {
      background: var(--xt-white);
      color: var(--xt-red);
      border: 2px solid var(--xt-red);
    }
    .btn-secondary-blue {      
      background: var(--xt-white);
      color: var(--xt-blue);
      border: 2px solid var(--xt-blue);
    }
    .btn-secondary-blue:hover {
      background: var(--xt-blue);
      color: var(--xt-white);
    }

    .btn-secondary:hover {
      background: var(--xt-light);
    }

    .btn-light {
      background: var(--xt-blue);
      color: #123;
    }

    .btn-light:hover {
      background: var(--xt-blue-hover);
    }

    section {
      padding: 70px 0;
    }

    .section-gray {
      background: var(--xt-gray);
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      align-items: start;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      margin-bottom: 35px;
    }

    .card {
      background: var(--xt-white);
      border: 1px solid var(--xt-border);
      border-radius: 14px;
      padding: 28px;
      height: 80%;
    }

    .card-highlight {
      border-top: 5px solid var(--xt-red);
    }

    .card-highlight-blue {
      border-top: 5px solid var(--xt-blue);
    }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 24px 0 0 ;
    }

    .check-list.blue li::before {
      color: var(--xt-blue);
    }

    .check-list.green li::before {
      color: var(--xt-green);
    }
    
    .check-list li {
      position: relative;
      padding-left: 30px;
      margin-bottom: 14px;
    }

    .check-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--xt-red);
      font-weight: bold;
    }

    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .tag {
      background: #eef5f6;
      color: #244;
      padding: 8px 13px;
      border-radius: 999px;
      font-size: 0.95rem;
    }

    .cta-box {
      background: var(--xt-dark);
      color: var(--xt-white);
      border-radius: 20px;
      padding: 46px;
      text-align: center;
    }

    .cta-box h2 {
      color: var(--xt-white);
    }

    .cta-box p {
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
      color: #e5e5e5;
    }

    .faq-item {
      border-bottom: 1px solid var(--xt-border);
      padding: 24px 0;
    }

    .faq-item h3 {
      margin-bottom: 10px;
    }

    .small-note {
      font-size: 0.95rem;
      color: var(--xt-muted);
      margin-top: 18px;
    }

    @media (max-width: 900px) {
      .hero-grid,
      .hero-metrics,
      .footer-grid,
      .grid-2,
      .grid-3 {
        grid-template-columns: 1fr;
      }

      .hero {
        padding: 55px 0;
      }

      section {
        padding: 50px 0;
      }

      .cta-box {
        padding: 32px 22px;
      }

      /* Mobile nav — sidebar drawer */
      .nav-toggle {
        display: flex;
        margin-left: auto;
      }

      .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 85vw);
        height: 100dvh;
        background: var(--xt-white);
        z-index: 999;
        transform: translateX(110%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -6px 0 32px rgba(0, 0, 0, 0.18);
        display: block;
        margin: 0;
        padding: 0;
      }

      .nav-menu.open {
        transform: translateX(0);
      }

      .nav-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        border-bottom: 1px solid var(--xt-border);
        position: sticky;
        top: 0;
        background: var(--xt-white);
        z-index: 1;
      }

      .nav-drawer-logo {
        height: 32px;
      }

      .nav-close {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        color: var(--xt-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        line-height: 1;
      }

      .nav-close:hover {
        background: var(--xt-gray);
      }

      .nav-menu > ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 4px 0;
        margin: 0;
      }

      .nav-menu > ul > li {
        border-bottom: 1px solid var(--xt-border);
      }

      .nav-menu > ul > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--xt-dark);
        text-decoration: none;
        border-bottom: none;
      }

      .nav-menu > ul > li > a:hover {
        background: var(--xt-gray);
        color: var(--xt-red);
      }

      /* Dropdown arrow */
      .nav-has-dropdown > a::after {
        content: '›';
        padding: 0 0 3px 5px;
        font-size: 1.3rem;
        font-weight: 400;
        opacity: 0.5;
        transition: transform 0.2s ease;
        display: inline-block;
      }

      .nav-has-dropdown.drawer-open > a::after {
        transform: rotate(90deg);
        opacity: 1;
      }

      /* Dropdown as inline list in drawer */
      .nav-menu ul .nav-dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: 0;
        flex-direction: column;
        background: var(--xt-gray);
        z-index: auto;
      }

      .nav-has-dropdown.drawer-open .nav-dropdown {
        display: flex;
      }

      .nav-menu ul .nav-dropdown li a {
        padding: 13px 24px 13px 40px;
        font-size: 0.95rem;
        font-weight: 500;
        border-bottom: none;
      }

      .nav-menu ul .nav-dropdown li a:hover {
        background: var(--xt-border);
      }

      .nav-ctas {
        display: none;
      }

      #zeitleiste {
        display: none;
      }
    }
    /*Footer*/
  .xt-footer { background: var(--xt-dark); color: var(--xt-white); font-family: var(--font-sans); }
  .xt-topbar { background: var(--xt-blue); padding: 11px 32px; text-align: center; font-size: 13px; color: #fff; font-weight: 500; }
  .xt-topbar a { color: #ffd4cc; text-decoration: underline; margin-left: 8px; }
  .xt-topbar a:hover { color: #fff; }
  .xt-inner { max-width: 1100px; margin: 0 auto; padding: 48px 32px 0; }
  .xt-grid { display: grid; grid-template-columns: 1.5fr 1.1fr 1fr 1fr 1fr; gap: 32px; }
  .xt-logo-box { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px; }
  .xt-logo-icon { border-radius: 8px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
  .xt-logo-name { font-size: 17px; font-weight: 500; color: #fff; letter-spacing: -0.3px; }
  .xt-copy { font-size: 12px; color: var(--xt-white); line-height: 1.9; margin: 12px 0 10px; }
  .xt-contact { font-size: 12px; color: var(--xt-white); line-height: 2.1; }
  .xt-contact a { color: var(--xt-white); text-decoration: none; transition: color 0.15s; }
  .xt-contact a:hover { color: var(--xt-red-hover); }
  .xt-lang { display: flex; gap: 6px; align-items: center; margin-top: 10px; }
  .xt-lang a { color: var(--xt-white); font-size: 11px; text-decoration: underline; transition: color 0.15s; }
  .xt-lang a:hover { color: var(--xt-red-hover); }
  .xt-col h6 { color: var(--xt-red); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; margin: 0 0 16px; border-bottom: 1px solid var(--xt-muted); padding-bottom: 8px; }
  .xt-col ul { list-style: none; margin: 0; padding: 0; }
  .xt-col ul li { margin-bottom: 9px; }
  .xt-col ul li a { color: #fff; font-size: 13px; text-decoration: none; transition: color 0.15s; }
  .xt-col ul li a:hover { color: var(--xt-red-hover); }
  .new-pill { background: var(--xt-blue); color: #fff; font-size: 9px; font-weight: 500; border-radius: 4px; padding: 1px 5px ; margin-left: 5px; vertical-align: middle; text-transform: uppercase; letter-spacing: 0.5px; }

/* Lightbox */
.lightbox-img {
  cursor: zoom-in;
  transition: opacity 0.2s;
}
.lightbox-img:hover {
  opacity: 0.88;
}
.xt-lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.xt-lightbox-overlay.active {
  display: flex;
}
.xt-lightbox-overlay img {
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  animation: xt-lb-in 0.2s ease;
}
@keyframes xt-lb-in {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}
.xt-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.xt-lightbox-close:hover {
  opacity: 1;
}
  .xt-bottom { border-top: 1px solid #2e2e2e; margin-top: 40px; padding: 22px 0 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
  .xt-badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .xt-badge { background: #2a2a2a; border: 0.5px solid #333; border-radius: 6px; padding: 5px 12px; font-size: 11px; color: var(--xt-white); display: flex; align-items: center; gap: 6px; }
  .xt-badge i { font-size: 14px; color: var(--xt-green); }
  .xt-badge.red i { color: var(--xt-red); }
  .xt-badge.blue i { color: var(--xt-blue); }
  .xt-badge.moss i { color: var(--xt-moss-green); }
  .xt-socials { display: flex; gap: 8px; }
  .xt-soc { width: 34px; height: 34px; border-radius: 8px; background: #2a2a2a; border: 0.5px solid #333; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background 0.15s, border-color 0.15s; color: var(--xt-white); }
  .xt-soc:hover { background: var(--xt-red); border-color: var(--xt-red); }
  .xt-soc:hover i,
  .xt-soc:hover svg { color: #fff; fill: #fff; }
  .xt-soc i { color: var(--xt-white); fill: currentColor; font-size: 17px; transition: color 0.15s; }
  .xt-soc svg { color: var(--xt-white); fill: currentColor; width: 17px; height: 17px; display: block; transition: color 0.15s; }
  .xt-copy-bottom { font-size: 11px; color: var(--xt-white); margin-top: 4px; }

/* ── Über uns ─────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}
.team-card {
  background: var(--xt-white);
  border: 1px solid var(--xt-border);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.team-card h3  { margin: 0 0 4px; font-size: 1.1rem; }
.team-card .team-role { font-size: 0.85rem; color: var(--xt-red); font-weight: 600; margin-bottom: 8px; }
.team-card .team-qual { font-size: 0.82rem; color: var(--xt-muted); margin-bottom: 10px; }
.team-card p   { font-size: 0.9rem; color: var(--xt-text); margin: 0; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--xt-white);
  border: 1px solid var(--xt-border);
  border-radius: 16px;
}
.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--xt-red);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item span { font-size: 0.88rem; color: var(--xt-muted); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.value-item {
  padding: 24px;
  border-radius: 14px;
  background: var(--xt-gray);
}
.value-item .vi-icon { font-size: 1.6rem; margin-bottom: 12px; display: block; }
.value-item h3 { margin: 0 0 8px; font-size: 1rem; }
.value-item p  { font-size: 0.9rem; color: var(--xt-muted); margin: 0; }

.timeline {
  position: relative;
  margin-top: 32px;
  padding-left: 28px;
  border-left: 2px solid var(--xt-border);
}
.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--xt-red);
  border-radius: 50%;
  border: 2px solid var(--xt-white);
  box-shadow: 0 0 0 2px var(--xt-red);
}
.timeline-item .tl-year {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--xt-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.timeline-item h3 { margin: 0 0 4px; font-size: 1rem; }
.timeline-item p  { margin: 0; font-size: 0.9rem; color: var(--xt-muted); }

.hero-ueber-uns {
  /*background: color-mix(in srgb, #96C4E3 14%, white);*/
  background: linear-gradient(135deg, #f7f9fa 0%, #f2f6f9 100%);
}
.hero-ueber-uns .container {
  display: flex;
  flex-direction: column;
  padding-bottom: 48px;
}
.hero-ueber-uns__row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 16px;
}
.hero-ueber-uns__text {
  flex: 1;
}
.hero-portrait {
  width: clamp(160px, 22vw, 300px);
  height: clamp(160px, 22vw, 300px);
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(150, 196, 227, 0.45);
}

/* --- Hero --- */
.hero-index-software {
  position: relative;
  background: linear-gradient(rgba(247, 249, 250, 0), rgba(242, 246, 249, 0) 80%), url('/images/hero-banner-index.png') center/cover no-repeat;
  padding: 5px 0 50px;
}
.hero-index-software .metric {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
}
.hero-signet {
  position: absolute;
  right: 10%;
  bottom: -60px;
  width: 220px;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.15));
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 900px) {
  .team-grid, .value-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card { flex-direction: column; }
  .hero-ueber-uns .container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .hero-ueber-uns__row {
    flex-direction: column;
    text-align: center;
  }
}

/* ==================== PREISE ==================== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 40px;
}
.pricing-toggle span {
  font-weight: 600;
  font-size: 1rem;
  color: var(--xt-muted);
  transition: color 0.2s;
}
.pricing-toggle span.active {
  color: var(--xt-dark);
}
.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  cursor: pointer;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--xt-red);
  border-radius: 28px;
  transition: background 0.2s;
}
.toggle-track::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 4px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.toggle-switch input:checked + .toggle-track {
  background: var(--xt-blue);
}
.toggle-switch input:checked + .toggle-track::before {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.pricing-card {
  background: var(--xt-white);
  border: 1px solid var(--xt-border);
  border-radius: 18px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--xt-blue);
  box-shadow: 0 8px 32px rgba(150, 196, 227, 0.25);
}
.pricing-card .pc-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  background: var(--xt-blue);
  color: #fff;
}
.pricing-card h3 {
  font-size: 1.2rem;
  margin: 0 0 4px;
}
.pricing-card .pc-sub {
  font-size: 0.88rem;
  color: var(--xt-muted);
  margin-bottom: 20px;
}
.pc-price {
  margin-bottom: 8px;
}
.pc-price strong {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--xt-dark);
  line-height: 1;
}
.pc-price .pc-currency {
  font-size: 1.1rem;
  font-weight: 600;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}
.pc-price .pc-period {
  font-size: 0.85rem;
  color: var(--xt-muted);
  margin-left: 2px;
}
.pc-note {
  font-size: 0.8rem;
  color: var(--xt-muted);
  margin-bottom: 20px;
  min-height: 18px;
}
.pc-divider {
  border: none;
  border-top: 1px solid var(--xt-border);
  margin: 16px 0;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.pricing-card ul li {
  padding: 7px 0;
  border-bottom: 1px solid var(--xt-border);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before {
  content: "✓";
  font-weight: 700;
  flex-shrink: 0;
  color: var(--xt-red);
}
.pricing-card.card-blue ul li::before { color: var(--xt-blue); }
.pricing-card.card-green ul li::before { color: var(--xt-green); }

.pflege-box {
  background: var(--xt-gray);
  border-left: 4px solid var(--xt-red);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  font-size: 0.95rem;
}
.pflege-box strong { display: block; margin-bottom: 6px; }

.cloud-strip {
  background: #fffdf0;
  border: 1px solid #ffd652;
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.cloud-strip h3 { margin: 0 0 6px; }
.cloud-strip p  { margin: 0; color: var(--xt-muted); font-size: 0.95rem; }
.cloud-price { text-align: right; white-space: nowrap; }
.cloud-price strong { font-size: 2rem; font-weight: 700; color: #b38a00; }
.cloud-price span { display: block; font-size: 0.8rem; color: var(--xt-muted); }

.view-kauf, .view-miete { display: none; }
.view-kauf.show, .view-miete.show { display: block; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .cloud-strip { grid-template-columns: 1fr; }
  .cloud-price { text-align: left; }
}

/* ==================== DOWNLOAD PAGE ==================== */
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.download-card {
  background: var(--xt-white);
  border: 1px solid var(--xt-border);
  border-radius: 18px;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.download-card .dl-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.download-card h3 { margin: 0 0 6px; font-size: 1.15rem; }
.download-card .dl-sub { font-size: 0.88rem; color: var(--xt-muted); margin-bottom: 8px; }
.download-card .dl-version { font-size: 0.8rem; color: var(--xt-muted); font-family: monospace; margin-bottom: 14px; }
.dl-history-link { display: block; text-align: center; font-size: 0.82rem; color: var(--xt-muted); margin-top: 8px; text-decoration: none; font-weight: 700; }
.dl-history-link:hover { color: var(--xt-red); }
.download-card .dl-includes {
  background: var(--xt-gray);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--xt-muted);
  margin-bottom: 20px;
  flex: 1;
}
.download-card .dl-includes strong { color: var(--xt-dark); display: block; margin-bottom: 4px; }
.download-card .dl-includes ul { margin: 0; padding-left: 16px; }
.download-card .dl-includes li { margin-bottom: 3px; }
.dl-badge-works {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--xt-green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.dl-sys {
  font-size: 0.8rem;
  color: var(--xt-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.android-card {
  background: var(--xt-white);
  border: 1px solid var(--xt-border);
  border-radius: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 32px;
  margin-top: 32px;
}
.android-card h3 { margin: 0 0 6px; }
.android-card .dl-sub { font-size: 0.9rem; color: var(--xt-muted); margin-bottom: 16px; }
.android-price {
  text-align: right;
  white-space: nowrap;
}
.android-price strong { font-size: 1.8rem; font-weight: 700; color: var(--xt-dark); display: block; }
.android-price span { font-size: 0.8rem; color: var(--xt-muted); }
.sync-note {
  background: #f0f6ff;
  border: 1px solid var(--xt-blue);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--xt-text);
  margin-top: 12px;
}
.sync-note strong { color: var(--xt-blue); }

.sysreq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.sysreq-item {
  padding: 16px 20px;
  background: var(--xt-gray);
  border-radius: 12px;
  font-size: 0.9rem;
}
.sysreq-item strong { display: block; margin-bottom: 4px; color: var(--xt-dark); }

.releasenotes-wrap { font-size: 0.88rem; line-height: 1.6; max-height: 600px; overflow-y: auto; border: 1px solid var(--xt-border); border-radius: 10px; padding: 20px 24px; background: var(--xt-gray); }
.releasenotes-wrap--full { max-height: none; overflow-y: visible; }
.releasenotes-wrap h4 { margin: 0 0 4px; font-size: 0.95rem; }
.releasenotes-wrap ul { margin: 4px 0 8px 18px; padding: 0; }
.releasenotes-wrap li { margin-bottom: 2px; }
.releasenotes-wrap hr { margin: 12px 0; border-color: var(--xt-border); }

.rn-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 0; border-bottom: 2px solid var(--xt-border); padding-bottom: 0; }
.rn-tab { display: inline-block; padding: 10px 20px; font-size: 0.9rem; font-weight: 600; color: var(--xt-muted); text-decoration: none; border-radius: 8px 8px 0 0; border: 1px solid transparent; border-bottom: none; transition: color 0.15s, background 0.15s; }
.rn-tab:hover { color: var(--xt-dark); background: var(--xt-gray); }
.rn-tab--active { color: var(--xt-dark); background: #fff; border-color: var(--xt-border); border-bottom-color: #fff; margin-bottom: -2px; }
.rn-panel { border: 1px solid var(--xt-border); border-top: none; border-radius: 0 0 12px 12px; background: #fff; }
.rn-panel__header { padding: 20px 24px 16px; border-bottom: 1px solid var(--xt-border); }
.rn-panel .releasenotes-wrap { border: none; border-radius: 0 0 12px 12px; background: #fff; padding: 20px 24px 28px; }

.hero-download {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f9fa 0%, #f2f6f9 100%);
}
.hero-download-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-download .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .download-grid, .sysreq-grid { grid-template-columns: 1fr; }
  .android-card { grid-template-columns: 1fr; }
  .android-price { text-align: left; }
}

/* ==================== DATENSCHUTZERKLÄRUNG ==================== */
.dse-section { margin-bottom: 20px; }
.dse-section h2 { font-size: 1.05rem; margin-top: 0; margin-bottom: 10px; }
.dse-section p, .dse-section ul { font-size: 0.93rem; color: var(--xt-text); }
.dse-section ul { padding-left: 20px; margin: 8px 0; }
.dse-section li { margin-bottom: 4px; }
.dse-section h3 { font-size: 0.97rem; margin: 14px 0 6px; color: var(--xt-dark); }
.dse-toc { background: var(--xt-gray); border-radius: 14px; padding: 24px 28px; margin-bottom: 32px; }
.dse-toc h2 { font-size: 1rem; margin-top: 0; margin-bottom: 12px; }
.dse-toc ol { margin: 0; padding-left: 20px; font-size: 0.9rem; column-count: 2; column-gap: 32px; }
.dse-toc li { margin-bottom: 5px; }
.dse-toc a { color: var(--xt-dark); text-decoration: none; }
.dse-toc a:hover { color: var(--xt-red); }

@media (max-width: 600px) {
  .dse-toc ol { column-count: 1; }
}

/* ==================== COOKIE BANNER ==================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--xt-border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#cookie-banner.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 200px;
  margin: 0;
  font-size: 0.88rem;
  color: var(--xt-text);
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--xt-red);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: var(--xt-red);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.cookie-btn-accept:hover {
  background: var(--xt-red-hover);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--xt-muted);
  border: 1px solid var(--xt-border);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.cookie-btn-decline:hover {
  background: var(--xt-gray);
  color: var(--xt-dark);
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
    text-align: center;
  }
}

/* ==================== SHOP INDEX ==================== */
.product-selector { display:flex; gap:12px; margin-bottom:28px; }
.ps-btn {
  flex:1; padding:16px 20px; border:2px solid var(--xt-border); border-radius:12px;
  background:#fff; cursor:pointer; text-align:left; transition:border-color .15s,background .15s;
  font-family:inherit;
}
.ps-btn:hover { border-color:var(--xt-red); }
.ps-btn.active { border-color:var(--xt-red); background:#fff8f7; }
.ps-label { font-size:0.72rem; text-transform:uppercase; letter-spacing:.5px; color:var(--xt-muted); margin-bottom:4px; }
.ps-name  { display:block; font-size:1.05rem; font-weight:700; margin-bottom:2px; }
.ps-btn.active .ps-name { color:var(--xt-red); }
.ps-price { display:block; font-size:0.875rem; font-weight:600; margin-bottom:2px; }
.ps-sub   { font-size:0.78rem; color:var(--xt-muted); }

.mod-row { display:flex; align-items:center; gap:12px; padding:10px 0; border-bottom:1px solid var(--xt-border); }
.mod-row:last-child { border-bottom:none; }
.mod-name { flex:1; min-width:0; }
.mod-name strong { display:block; font-size:0.875rem; }
.mod-name small   { font-size:0.78rem; color:var(--xt-muted); }
.mod-price { min-width:150px; font-size:0.8rem; color:var(--xt-muted); text-align:right; }
.mod-ctrl  { width:72px; display:flex; justify-content:center; }
.mod-ctrl input[type=number] {
  width:60px; padding:5px 6px; border:1px solid var(--xt-border);
  border-radius:6px; font-size:0.9rem; text-align:center; font-family:inherit;
}
.mod-ctrl input[type=checkbox] { width:18px; height:18px; accent-color:var(--xt-red); cursor:pointer; }
.mod-total { width:82px; text-align:right; font-weight:600; font-size:0.875rem; white-space:nowrap; }

@media (max-width:640px) {
  .product-selector { flex-direction:column; }
  .mod-price { display:none; }
}

/* ==================== KONTAKT ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--xt-white);
  border: 1px solid var(--xt-border);
  border-radius: 14px;
}
.contact-item .ci-icon {
  width: 44px;
  height: 44px;
  background: var(--xt-gray);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--xt-red);
}
.contact-item strong { display: block; font-size: 0.85rem; color: var(--xt-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item a { color: var(--xt-dark); text-decoration: none; font-weight: 600; font-size: 1rem; }
.contact-item a:hover { color: var(--xt-red); }
.contact-item p { margin: 0; font-size: 0.9rem; color: var(--xt-muted); }

.contact-form {
  background: var(--xt-white);
  border: 1px solid var(--xt-border);
  border-radius: 18px;
  padding: 36px;
}
.contact-form h2 { margin-top: 0; font-size: 1.5rem; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: var(--xt-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--xt-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--xt-dark);
  background: var(--xt-white);
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--xt-red);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-privacy { font-size: 0.82rem; color: var(--xt-muted); margin-top: 12px; }
.form-success {
  display: none;
  background: #f0faf0;
  border: 1px solid var(--xt-green);
  border-radius: 10px;
  padding: 16px 20px;
  color: #2d6a2d;
  font-size: 0.95rem;
  margin-top: 16px;
}

.teamviewer-box {
  background: #f0f6ff;
  border: 1px solid var(--xt-blue);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.teamviewer-box .tv-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==================== GALLERY ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--xt-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.gallery-item:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.gallery-item .lightbox-img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  border-radius: 0;
}

.gallery-item figcaption {
  padding: 14px 16px;
  border-top: 1px solid var(--xt-border);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gallery-item figcaption strong {
  font-size: 0.9rem;
  color: var(--xt-dark);
}

.gallery-item figcaption span {
  font-size: 0.78rem;
  color: var(--xt-muted);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--xt-border);
  border-radius: 16px;
  padding: 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}

.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--xt-dark);
  font-style: italic;
  margin: 0;
  flex: 1;
}

.testimonial-quote::before { content: ''; }

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid var(--xt-border);
}

.testimonial-footer strong {
  font-size: 0.9rem;
  color: var(--xt-dark);
}

.testimonial-footer span {
  font-size: 0.8rem;
  color: var(--xt-muted);
}

.testimonial-since {
  font-size: 0.75rem !important;
  color: var(--xt-red) !important;
  font-weight: 600;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ==================== EINSATZBEREICHE ==================== */
.einsatz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.einsatz-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--xt-border);
  border-radius: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.einsatz-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.einsatz-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.einsatz-body { flex: 1; min-width: 0; }

.einsatz-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--xt-muted);
  margin: 0 0 6px;
  font-weight: 600;
}

.einsatz-body h2 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--xt-dark);
}

.einsatz-body p {
  font-size: 0.9rem;
  color: var(--xt-text);
  line-height: 1.65;
  margin: 0 0 14px;
}

.einsatz-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--xt-red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.einsatz-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .einsatz-grid { grid-template-columns: 1fr; gap: 16px; }
  .einsatz-card { padding: 22px; }
}

/* ==================== ACCESSIBILITY ==================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--xt-dark);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top 0.1s;
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--xt-red);
  outline-offset: 3px;
  border-radius: 3px;
}

.btn:focus-visible {
  outline: 2px solid var(--xt-red);
  outline-offset: 4px;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: none;
  border-color: var(--xt-red);
  box-shadow: 0 0 0 3px rgba(223, 57, 37, 0.15);
}

/* ==================== UTILITIES ==================== */
.mb-0  { margin-bottom: 0; }
.mb-24 { margin-bottom: 24px; }
