/*
 * vela-theme — pages.css
 *
 * Styles für die nativen Page-Templates:
 *   .vela-page          → Page-Wrapper
 *   .vela-hero          → Blue-Hero-Section
 *   .vela-section       → Content-Section (Hero exkl.)
 *   .vela-section--*    → Layout-Varianten
 *   .vela-eyebrow       → Pre-Heading (klein, oben)
 *   .vela-bullets       → Listen-Bullets mit Check-Icons
 *
 * Kein Elementor — purer Cascade ohne CSS-Variable-Tricks.
 */

/* === Farb-Palette (VelaColor) =========================================== */
:root {
    --vela-blue: #257CFF;
    --vela-blue-dark: #0F1689;
    --vela-orange: #F45A2A;
    --vela-orange-hover: #FF6900;
    --vela-text: #2f373d;
    --vela-text-muted: #555d6b;
    --vela-bg-light: #f8f9fa;
    --vela-border: #e2e8f0;
}

/* === Layout-Container ================================================== */
.vela-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* === Eyebrow =========================================================== */
.vela-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--vela-orange);
    margin-bottom: 16px;
}

/* === Hero ============================================================== */
.vela-hero {
    background:
        url("/wp-content/uploads/owm/hero-bg-orange-shape.svg") right bottom / auto 100% no-repeat,
        var(--vela-blue);
    color: #fff;
    padding: 160px 0 96px;
    text-align: center;
}
.vela-hero--split {
    text-align: left;
}
.vela-hero--split .vela-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

/* Hero mit Bild ZENTRIERT UNTER dem Text */
.vela-hero--with-image-below .vela-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}
.vela-hero--with-image-below .vela-hero__text {
    text-align: center;
    max-width: 900px;
}
.vela-hero--with-image-below .vela-hero__image {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
}
.vela-hero--with-image-below .vela-hero__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

/* Orange-Highlight im Heading (z.B. "Erleben Sie [Vela Atlas] in Aktion") */
.vela-text-orange {
    color: var(--vela-orange);
}
.vela-hero--split .vela-hero__title,
.vela-hero--split .vela-hero__subheading {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    text-align: left;
}
.vela-hero--split .vela-hero__buttons {
    justify-content: flex-start;
}
.vela-hero--split .vela-hero__image {
    margin: 0;
    max-width: none;
    box-shadow: none;
    border-radius: 0;
}

.vela-hero .vela-eyebrow {
    color: #fff;
    opacity: 0.9;
}

.vela-hero__title {
    font-size: clamp(40px, 5.5vw, 80px);
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 24px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.vela-hero__subheading {
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 720px;
    margin: 0 auto 32px;
}

.vela-hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.vela-hero__cta {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.vela-hero__cta--primary {
    background: #fff;
    color: var(--vela-text);
}
.vela-hero__cta--primary:hover,
.vela-hero__cta--primary:focus {
    background: var(--vela-orange);
    color: #fff;
    transform: translateY(-1px);
}

.vela-hero__cta--ghost {
    background: transparent;
    color: #fff;
    border: 0;
    padding: 14px 12px;
}
.vela-hero__cta--ghost:hover,
.vela-hero__cta--ghost:focus {
    color: #fff;
    transform: translateX(2px);
}

.vela-hero__video,
.vela-hero__image {
    margin: 48px auto 0;
    max-width: 960px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.vela-hero__video video,
.vela-hero__image img {
    width: 100%;
    display: block;
}

.vela-hero {
    position: relative;
}
.vela-hero > .vela-container {
    position: relative;
    z-index: 1;
}

/* === Cards-Grid (Use-Cases auf Home) ===================================== */
.vela-section--cards .vela-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.vela-card {
    background: #fff;
    border: 1px solid var(--vela-border);
    border-radius: 8px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

a.vela-card:hover,
a.vela-card:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.vela-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--vela-blue);
    display: inline-block;
    position: relative;
}
.vela-card__icon::before {
    content: "";
    position: absolute;
    inset: 8px;
    background: #fff;
    mask: var(--icon-mask) no-repeat center / contain;
    -webkit-mask: var(--icon-mask) no-repeat center / contain;
}
.vela-card__icon--users    { --icon-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/><circle cx='9' cy='7' r='4'/><path d='M23 21v-2a4 4 0 0 0-3-3.87'/><path d='M16 3.13a4 4 0 0 1 0 7.75'/></svg>"); }
.vela-card__icon--clock    { --icon-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>"); }
.vela-card__icon--rocket   { --icon-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z'/><path d='m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z'/><path d='M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0'/><path d='M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5'/></svg>"); }
.vela-card__icon--leaf     { --icon-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/><path d='M2 21c0-3 1.85-5.36 5.08-6'/></svg>"); }
.vela-card__icon--cloud    { --icon-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z'/></svg>"); }
.vela-card__icon--arrow-right { --icon-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/><polyline points='12 5 19 12 12 19'/></svg>"); }
.vela-card__icon--server   { --icon-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='2' width='20' height='8' rx='2'/><rect x='2' y='14' width='20' height='8' rx='2'/><line x1='6' y1='6' x2='6.01' y2='6'/><line x1='6' y1='18' x2='6.01' y2='18'/></svg>"); }
.vela-card__icon--code     { --icon-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='16 18 22 12 16 6'/><polyline points='8 6 2 12 8 18'/></svg>"); }
.vela-card__icon--database { --icon-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><ellipse cx='12' cy='5' rx='9' ry='3'/><path d='M21 12c0 1.66-4 3-9 3s-9-1.34-9-3'/><path d='M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5'/></svg>"); }
.vela-card__icon--sync     { --icon-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='23 4 23 10 17 10'/><polyline points='1 20 1 14 7 14'/><path d='M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15'/></svg>"); }
.vela-card__icon--pipeline { --icon-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='6' cy='6' r='3'/><circle cx='6' cy='18' r='3'/><path d='M9 6h6a3 3 0 0 1 3 3v6'/><circle cx='18' cy='18' r='3'/></svg>"); }
.vela-card__icon--terminal { --icon-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 17 10 11 4 5'/><line x1='12' y1='19' x2='20' y2='19'/></svg>"); }
.vela-card__icon--book     { --icon-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/><path d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/></svg>"); }
.vela-card__icon--shield   { --icon-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/></svg>"); }
.vela-card__icon--git      { --icon-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='6' y1='3' x2='6' y2='15'/><circle cx='18' cy='6' r='3'/><circle cx='6' cy='18' r='3'/><path d='M18 9a9 9 0 0 1-9 9'/></svg>"); }

.vela-card__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--vela-text);
}

.vela-card__text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--vela-text-muted);
    margin: 0;
}

/* === About-Centered (Wer steckt hinter Vela Atlas) ====================== */
.vela-section--about-centered {
    text-align: center;
    padding: 64px 0;
}
.vela-section--about-centered .vela-section__title--small {
    font-size: 28px;
    text-align: center;
    margin: 0 auto 24px;
}
.vela-about__logo {
    display: flex;
    justify-content: center;
    margin: 0 auto 24px;
}
.vela-about__logo img {
    max-width: 200px;
    height: auto;
}
.vela-about__text {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    color: var(--vela-text-muted);
    line-height: 1.7;
}
.vela-link-orange {
    color: var(--vela-orange);
    text-decoration: none;
    font-weight: 700;
}
.vela-link-orange:hover {
    text-decoration: underline;
}

/* === Embed-Centered (Sehen Sie es in Aktion mit Video) =================== */
.vela-section.vela-section--embed-centered {
    background: var(--vela-bg-light) !important;
    text-align: center;
    padding: 96px 0;
}
.vela-section--embed-centered .vela-section__title {
    text-align: center;
    margin: 0 auto 16px;
}
.vela-section--embed-centered .vela-section__lead {
    text-align: center;
    margin: 0 auto 48px;
    max-width: 720px;
}
.vela-embed-centered__video {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.vela-embed-centered__video video {
    width: 100%;
    display: block;
}

/* === Mid-CTA-Banner (blauer Banner mitten auf der Page) ================== */
.vela-section.vela-section--mid-cta {
    background: var(--vela-blue) !important;
    color: #fff;
    padding: 64px 0;
    text-align: center;
}
.vela-hero__cta--orange {
    background: var(--vela-orange);
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
}
.vela-hero__cta--orange:hover,
.vela-hero__cta--orange:focus {
    background: var(--vela-orange-hover);
    color: #fff;
}
.vela-section--mid-cta h2,
.vela-section--mid-cta .vela-section__title {
    color: #fff;
    margin: 0 0 16px;
}
.vela-section--mid-cta .vela-section__lead,
.vela-section--mid-cta p {
    color: rgba(255, 255, 255, 0.92);
    margin: 0 auto 24px;
    text-align: center;
    max-width: 640px;
}

/* === Tech-Stack-Strip =================================================== */
.vela-section.vela-section--tech-stack {
    padding: 56px 0;
    background: #fff;
    border-bottom: 1px solid var(--vela-border);
}
.vela-eyebrow--center {
    display: block;
    text-align: center;
    margin: 0 auto 24px;
}
.vela-eyebrow--inline {
    display: inline-block;
    margin: 0;
    flex-shrink: 0;
}
.vela-tech-stack__row {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.vela-tech-stack {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
    align-items: center;
    flex: 1;
    min-width: 0;
}
.vela-tech-stack__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--vela-text-muted);
    font-size: 14px;
    font-weight: 600;
}
.vela-tech-stack__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    fill: currentColor;
}
.vela-tech-stack__icon--java         { color: #f45a2a; }
.vela-tech-stack__icon--angular      { color: #dd0031; }
.vela-tech-stack__icon--aws          { color: #ff9900; }
.vela-tech-stack__icon--google       { color: #4285F4; }
.vela-tech-stack__icon--github       { color: #181717; }
.vela-tech-stack__icon--sync         { color: #ef7b4d; }
.vela-tech-stack__icon--docker       { color: #2496ED; }
.vela-tech-stack__icon--dharmachakra { color: #0F1689; }
.vela-tech-stack__icon--database     { color: #336791; }
.vela-tech-stack__icon--exchange     { color: #2962FF; }
.vela-tech-stack__icon--code-branch  { color: #7B42BC; }
.vela-tech-stack__icon--server       { color: #009639; }

/* === Section CTA Button (innerhalb image-left/right) ===================== */
.vela-section__cta {
    display: inline-block;
    background: var(--vela-orange);
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 16px;
    transition: background 0.2s ease;
}
.vela-section__cta:hover,
.vela-section__cta:focus {
    background: var(--vela-orange-hover);
}

/* === Section =========================================================== */
.vela-section {
    padding: 96px 0;
}

.vela-section__title {
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 32px;
    color: var(--vela-text);
}
.vela-page-home .vela-section--image-right:nth-of-type(7) .vela-section__title,
.vela-page .vela-section__title--small {
    font-size: 28px;
}

.vela-section__lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--vela-text-muted);
    max-width: 720px;
    margin: 0 0 32px;
}

.vela-section__text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--vela-text);
    margin: 0 0 16px;
}

.vela-section__media img {
    max-width: 100%;
    height: auto;
    display: block;
}

.vela-section__embed {
    aspect-ratio: 16 / 9;
}

.vela-section__embed video,
.vela-section__embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* === Layout-Varianten =================================================== */

/* Centered (default): einspaltig zentriert */
.vela-section--centered .vela-section__title,
.vela-section--centered .vela-section__lead,
.vela-section--centered .vela-eyebrow {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.vela-section--centered .vela-section__body {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Image-right: Text links (60%) | Bild rechts (40%) */
.vela-section--image-right .vela-section__body,
.vela-section--image-left .vela-section__body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.vela-section--image-left .vela-section__body {
    grid-template-columns: 1fr 1.2fr;
}

.vela-section--image-left .vela-section__media {
    order: -1;
}

/* Two-column: Text links | Text rechts (gleiche Breite) */
.vela-section--two-column .vela-section__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

/* Embed: Section mit Video oder Iframe (zentriert) */
.vela-section--embed .vela-section__body {
    max-width: 960px;
    margin: 0 auto;
}

/* Final-CTA: blau (default) oder dark (mit Image + Stats) */
.vela-section--final-cta {
    color: #fff;
    text-align: left;
}
.vela-section.vela-section--final-cta--blue {
    background: var(--vela-blue) !important;
    text-align: center;
}
.vela-section.vela-section--final-cta--dark {
    background: #2f373d !important;
    position: relative;
    padding-top: 140px;
    overflow: visible;
}
/* Diagonale Schräge oben — weißes Trapez überlagert die Sektion-Spitze */
.vela-section.vela-section--final-cta--dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
    z-index: 1;
}
.vela-final-cta__icon-badge {
    position: absolute;
    top: 30px;
    left: max(80px, calc((100% - 1940px) / 2));
    width: 72px;
    height: 72px;
    background: #257CFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 3;
}
.vela-final-cta__icon-badge svg {
    width: 38px;
    height: 38px;
    color: #fff;
}
.vela-section--final-cta h2,
.vela-section--final-cta .vela-section__title {
    color: #fff;
}
.vela-section--final-cta .vela-section__lead,
.vela-section--final-cta p {
    color: rgba(255, 255, 255, 0.85);
}
.vela-section--final-cta--blue .vela-section__title,
.vela-section--final-cta--blue .vela-section__lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.vela-section--final-cta .vela-container {
    max-width: none;
    padding: 0 80px;
}
.vela-final-cta__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    width: 1940px;
    max-width: 100%;
    margin: 0 auto;
}
.vela-final-cta__text {
    width: 600px;
    flex-shrink: 0;
}
/* Final-CTA ohne Bild → zentrierte, kompakte Card */
.vela-section--final-cta:not(.vela-section--final-cta--has-image) .vela-final-cta__body {
    justify-content: center;
    width: 100%;
    max-width: 720px;
}
.vela-section--final-cta:not(.vela-section--final-cta--has-image) .vela-final-cta__text {
    width: auto;
    max-width: 100%;
    text-align: center;
}
.vela-section--final-cta:not(.vela-section--final-cta--has-image) .vela-final-cta__icon-badge {
    display: none;
}
.vela-section--final-cta:not(.vela-section--final-cta--has-image) .vela-hero__cta {
    margin-top: 16px;
}
.vela-final-cta__media {
    width: 850px;
    flex-shrink: 0;
    min-width: 0;
}
.vela-final-cta__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.vela-stats-grid {
    margin: 56px auto 0;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: start;
    width: 1940px;
    max-width: 100%;
}
.vela-stat {
    text-align: center;
}
.vela-stat__value {
    display: block;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 6px;
}
.vela-stat__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--vela-orange);
}

@media (max-width: 1024px) {
    .vela-section--final-cta--has-image .vela-final-cta__body {
        grid-template-columns: 1fr;
    }
    .vela-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }
    .vela-stats-grid .vela-stat {
        min-width: 0;
    }
}

/* === Bullets =========================================================== */
.vela-bullets {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.vela-bullets li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.vela-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    background: var(--vela-orange);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}

/* === Version-Tabelle (Versionen-Page) ================================== */
.vela-version-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background: transparent;
}

.vela-version-table th,
.vela-version-table td {
    padding: 9px 14px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95em;
}

.vela-version-table thead th {
    background: #2f373d;
    color: #fff;
    font-weight: 600;
    padding: 10px 14px;
}

.vela-version-table__version {
    font-weight: 400;
}

/* Versionen-Page: Section-Titel kleiner (wie kompakte Tabellen-Überschriften) */
.vela-page-versions .vela-section--centered {
    padding: 0;
}
.vela-page-versions .vela-section--centered .vela-container {
    padding-top: 0;
    padding-bottom: 0;
}
.vela-page-versions .vela-section--centered .vela-section__body {
    max-width: 900px;
    margin: 0 auto;
}
.vela-page-versions .vela-section--centered .vela-section__title {
    font-size: 1.4em;
    color: #2f373d;
    margin: 2.8em auto 0.7em;
    max-width: 900px;
    text-align: left;
    border-bottom: 2px solid var(--vela-orange);
    padding-bottom: 6px;
}
.vela-page-versions main {
    padding-bottom: 80px;
}

/* === FAQ-Page ========================================================== */
.vela-page-faq main {
    padding-bottom: 80px;
}
.vela-section--faq {
    padding: 32px 0;
}
.vela-section--faq:first-of-type {
    padding-top: 64px;
}
.vela-section--faq .vela-container {
    max-width: 860px;
}
.vela-faq__category {
    text-align: left;
    color: #2f373d;
    font-size: 1.5em;
    margin: 0 0 24px;
    border-bottom: 2px solid var(--vela-orange);
    padding-bottom: 8px;
}
.vela-faq {
    border-top: 1px solid #e2e8f0;
}
.vela-faq__item {
    border-bottom: 1px solid #e2e8f0;
}
.vela-faq__q {
    padding: 18px 0;
    font-weight: 600;
    font-size: 1.05em;
    color: #2f373d;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.vela-faq__q::-webkit-details-marker { display: none; }
.vela-faq__q::after {
    content: '+';
    font-size: 1.4em;
    color: var(--vela-orange);
    font-weight: 300;
    transition: transform 0.2s ease;
    line-height: 1;
    flex: 0 0 auto;
}
.vela-faq__item[open] .vela-faq__q::after {
    content: '−';
}
.vela-faq__item[open] .vela-faq__q {
    color: var(--vela-orange);
}
.vela-faq__a {
    padding: 0 0 20px;
    color: #5a6570;
    line-height: 1.7;
    font-size: 0.98em;
}
.vela-faq__a a {
    color: var(--vela-orange);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}
.vela-faq__a a:hover {
    border-bottom-color: transparent;
}

/* === Mobile (≤1024px) ================================================== */
@media (max-width: 1024px) {
    .vela-hero {
        padding: 120px 0 64px;
    }

    .vela-section {
        padding: 64px 0;
    }

    .vela-section--image-right .vela-section__body,
    .vela-section--image-left .vela-section__body,
    .vela-section--two-column .vela-section__body {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vela-section--image-left .vela-section__media {
        order: 0;
    }
}

@media (max-width: 600px) {
    .vela-hero {
        padding: 96px 0 48px;
    }

    .vela-section {
        padding: 48px 0;
    }

    .vela-hero__cta,
    .vela-section--final-cta .vela-hero__cta {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* === Tech-Details (dunkle Sektion mit 6 Cards + 4 Stats) ================== */
.vela-section--tech-details {
    background: #2f373d;
    padding: 120px 0 80px;
    color: #e8eaee;
    position: relative;
    overflow: hidden;
}
/* Diagonale Schräge oben — analog zum Final-CTA-Dark */
.vela-section--tech-details::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
    z-index: 1;
}
.vela-section--tech-details > .vela-container {
    position: relative;
    z-index: 2;
}
.vela-section--tech-details .vela-eyebrow--centered {
    display: block;
    text-align: center;
    margin: 0 auto 40px;
    color: var(--vela-orange);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 12px;
}
.vela-section--tech-details .vela-section--tech-details__title {
    color: #fff;
    text-align: center;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
    margin: 0 auto 56px;
    max-width: 900px;
}
.vela-tech-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 48px;
    max-width: 1100px;
    margin: 0 auto 56px;
}
.vela-tech-details-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.vela-tech-details-card__body {
    margin: 0;
    color: #c8ccd2;
    font-size: 13px;
    line-height: 1.6;
}
.vela-tech-details-card__caption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
}
.vela-tech-details-card__caption-main {
    color: var(--vela-orange);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 11px;
}
.vela-tech-details-card__caption-sub {
    color: #8b9098;
    font-size: 11px;
}
.vela-stats-grid--inline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.vela-stats-grid--inline .vela-stat {
    text-align: center;
    color: #fff;
}
.vela-stats-grid--inline .vela-stat__value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 4px;
}
.vela-stats-grid--inline .vela-stat__label {
    color: #c8ccd2;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .vela-tech-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 32px;
    }
    .vela-stats-grid--inline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 16px;
    }
    .vela-stats-grid--inline .vela-stat {
        min-width: 0;
    }
}
@media (max-width: 600px) {
    .vela-tech-details-grid {
        grid-template-columns: 1fr;
    }
}

/* === Mobile Layout-Refinements (≤900px / ≤600px) ========================= */
@media (max-width: 900px) {
    /* Hero-Split → Stack: Text oben, Bild darunter */
    .vela-hero--split .vela-hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .vela-hero--split .vela-hero__title,
    .vela-hero--split .vela-hero__subheading {
        text-align: center;
    }
    .vela-hero--split .vela-hero__buttons {
        justify-content: center;
    }

    /* Final-CTA mit Bild → Stack: Text + Bild + Stats untereinander */
    .vela-section--final-cta--has-image .vela-final-cta__body {
        flex-direction: column;
        width: 100%;
        gap: 32px;
    }
    .vela-section--final-cta--has-image .vela-final-cta__text,
    .vela-section--final-cta--has-image .vela-final-cta__media {
        width: 100%;
    }
    .vela-section--final-cta .vela-final-cta__icon-badge {
        display: none;
    }

    /* Cards-Grid: 3 → 2 Cols */
    .vela-section--cards .vela-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tech-Stack-Strip: Eyebrow oben, Logos darunter wrappen */
    .vela-tech-stack__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .vela-tech-stack {
        flex-wrap: wrap;
    }

    /* Mid-CTA: Text + Button kompakter */
    .vela-section--mid-cta .vela-section__title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    /* Cards-Grid: 2 → 1 Col */
    .vela-section--cards .vela-cards-grid {
        grid-template-columns: 1fr;
    }

    /* Hero-Titles kleiner */
    .vela-hero__title {
        font-size: 36px;
        line-height: 1.15;
    }
    .vela-hero__subheading {
        font-size: 16px;
    }

    /* Section-Titles kleiner */
    .vela-section__title {
        font-size: 28px;
    }

    /* Final-CTA: Title + Stats kompakter */
    .vela-section--final-cta .vela-section__title {
        font-size: 28px;
    }
    .vela-stats-grid,
    .vela-stats-grid--inline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 16px;
        width: 100%;
    }
    .vela-stat {
        min-width: 0;
    }
    .vela-stat__value {
        font-size: 32px;
    }
    .vela-stat__label,
    .vela-stats-grid--inline .vela-stat__label {
        font-size: 10px;
        letter-spacing: 0.08em;
        word-break: break-word;
    }

    /* Container-Padding fur kleinere Screens */
    .vela-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Version-Tabelle: kompakter */
    .vela-version-table th,
    .vela-version-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}
