@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700&family=Inter:wght@400;500;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #09090B;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

main, footer {
    position: relative;
    z-index: 2;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background-color: #09090B;
    height: 70px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 200px;
    width: 220px;
    padding: 4px 10px;
    border-radius: 6px;
}
.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(21, 209, 170, 0.35), 0 0 120px rgba(21, 209, 170, 0.12), 0 32px 80px rgba(0,0,0,0.6);
    border: 1px solid rgba(21, 209, 170, 0.35);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    flex-shrink: 0;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21,209,170,0.06) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
    border-radius: 20px;
}

.hero-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 0 80px rgba(21, 209, 170, 0.5), 0 0 160px rgba(21, 209, 170, 0.18), 0 32px 80px rgba(0,0,0,0.6);
}

.hero_jpg {
    display: block;
    width: 520px;
    max-width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 20px;
}

.MenuBar {
    display: flex;
    gap: 32px;
    align-items: center;
}

.link {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    padding-bottom: 4px;
    position: relative;
    transition: color 0.2s ease;
}

.link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #15D1AA;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.link:hover {
    color: #15D1AA;
    cursor: pointer;
}

.link:hover::after {
    transform: scaleX(1);
}

/* Active nav link */
.link.active {
    color: #15D1AA;
}
.link.active::after {
    transform: scaleX(1);
}

/* ===== About Section ===== */
.about-section {
    background-color: #09090B;
    padding: 100px 40px;
    font-family: 'Inter', sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-portrait {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-portrait img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    border: 1px solid rgba(21, 209, 170, 0.25);
    box-shadow: 0 0 60px rgba(21, 209, 170, 0.12), 0 32px 80px rgba(0, 0, 0, 0.6);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-portrait:hover img {
    transform: scale(1.02);
    box-shadow: 0 0 80px rgba(21, 209, 170, 0.22), 0 32px 80px rgba(0, 0, 0, 0.6);
}

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(9, 9, 11, 0.7);
    border: 1px solid rgba(21, 209, 170, 0.4);
    backdrop-filter: blur(12px);
    color: #15D1AA;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 20px;
}

.about-eyebrow {
    color: #15D1AA;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-title {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    color: white;
    font-size: 68px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.about-highlight {
    color: #15D1AA;
}

.about-desc {
    color: #a1a1aa;
    font-size: 17px;
    line-height: 1.8;
}

.about-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #15D1AA, transparent);
    border-radius: 2px;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.about-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #27272a;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.about-gallery-item:hover {
    border-color: rgba(21, 209, 170, 0.4);
    transform: translateY(-4px);
}

.about-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-gallery-item:hover img {
    transform: scale(1.06);
}

.about-gallery-caption {
    padding: 16px 18px;
    background-color: #18181b;
}

.about-gallery-caption h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.about-gallery-caption p {
    color: #71717a;
    font-size: 13px;
    line-height: 1.5;
}

/* ===== Über mich (eingebettet in main.html) ===== */
.ueber-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 40px 80px;
    font-family: 'Inter', sans-serif;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.ueber-hero h1,
.ueber-hero-sub {
    position: relative;
    z-index: 1;
}

.ueber-hero h1 {
    color: white;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 760px;
}

.ueber-highlight { color: #15D1AA; }

.ueber-hero-sub {
    color: #a1a1aa;
    font-size: 18px;
    line-height: 1.6;
    max-width: 520px;
    text-align: center;
}

.ueber-kennen {
    background-color: #09090B;
    padding: 80px 40px;
    font-family: 'Inter', sans-serif;
}

.ueber-kennen-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.ueber-kennen-left,
.ueber-kennen-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
    max-width: 340px;
}

.ueber-img-fixed {
    width: 340px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #27272a;
    flex-shrink: 0;
}

.ueber-img-fixed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ueber-kennen-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ueber-kennen-text h2,
.ueber-kennen-text h3 {
    color: white;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

.ueber-kennen-right h3 {
    color: #15D1AA;
    font-size: 32px;
}

.ueber-kennen-desc {
    color: #a1a1aa;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .ueber-kennen-inner { flex-direction: column; gap: 80px; }
    .ueber-kennen-left,
    .ueber-kennen-right { max-width: 100%; align-items: center; text-align: center; }
    .ueber-img-fixed { width: 100%; max-width: 340px; }
}

.ueber-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 14px 28px;
    background-color: #15D1AA;
    color: white;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.ueber-btn:hover {
    background-color: #0B5041;
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.9), 0 0 48px rgba(34, 197, 94, 0.5);
}

.ueber-stats {
    background-color: #09090B;
    padding: 0 40px 100px;
    font-family: 'Inter', sans-serif;
}

.ueber-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: #27272a;
    border: 1px solid #27272a;
    border-radius: 16px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.ueber-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 40px 20px;
    background-color: #18181b;
}

.ueber-stat-number {
    color: #15D1AA;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ueber-stat-label {
    color: #a1a1aa;
    font-size: 14px;
    text-align: center;
}

.ueber-werte {
    background-color: #09090B;
    padding: 100px 40px;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.ueber-werte h2 {
    color: white;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

.ueber-werte-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    width: 100%;
}

.ueber-wert-card {
    background-color: #18181b;
    border: 1px solid #27272a;
    border-radius: 20px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: border-color 0.3s ease;
}

.ueber-wert-card:hover { border-color: #15D1AA; }

.ueber-wert-icon { margin-bottom: 8px; }

.ueber-wert-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: invert(62%) sepia(98%) saturate(400%) hue-rotate(90deg) brightness(95%);
}

.ueber-wert-card h3 { color: white; font-size: 20px; font-weight: 700; }
.ueber-wert-card p { color: #a1a1aa; font-size: 15px; line-height: 1.7; }

.ueber-equipment {
    background-color: #09090B;
    padding: 0 40px 100px;
    font-family: 'Inter', sans-serif;
}

.ueber-equipment-inner {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #18181b;
    border: 1px solid #27272a;
    border-radius: 20px;
    padding: 64px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.ueber-equipment-inner h2 {
    color: white;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

.ueber-equip-sub {
    color: #a1a1aa;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    max-width: 560px;
    margin-top: -24px;
}

.ueber-equip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.ueber-equip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #09090B;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 20px 24px;
    color: #d4d4d8;
    font-size: 15px;
}

.equip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #15D1AA;
    flex-shrink: 0;
}

/* Hero */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 40px 60px;
    font-family: 'Inter', sans-serif;
    gap: 60px;
    min-height: calc(100vh - 70px);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    min-width: 0;
}

.hero-content h1 {
    color: white;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-highlight {
    color: #15D1AA;
}

.hero-subtitle {
    color: #a1a1aa;
    font-size: 18px;
    line-height: 1.6;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: #15D1AA;
    color: white;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    letter-spacing: 0.01em;
}

.btn-primary .arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-primary:hover {
    background-color: #0B5041;
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(21, 209, 170, 0.9), 0 0 48px rgba(21, 209, 170, 0.5);
}

.btn-outline {
    display: inline-block;
    padding: 14px 28px;
    background-color: transparent;
    color: white;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
    letter-spacing: 0.01em;
}

.btn-outline:hover {
    border-color: white;
    transform: translateY(-1px);
}

.hero-stats {
    display: flex;
    gap: 1px;
    position: relative;
    z-index: 1;
    background-color: #27272a;
    border: 1px solid #27272a;
    border-radius: 16px;
    overflow: hidden;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 32px 60px;
    background-color: rgba(255,255,255,0.04);
}

.stat-number {
    color: white;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.stat-label {
    color: #a1a1aa;
    font-size: 14px;
}

/* CSS Icons */
.icon {
    position: relative;
    width: 28px;
    height: 28px;
}

/* Camera icon: rounded rect body + triangle lens */
.icon-camera {
    width: 20px;
    height: 14px;
    border: 2px solid #15D1AA;
    border-radius: 3px;
    margin: 7px 4px;
}
.icon-camera::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #15D1AA;
}

/* People icon: two circles */
.icon-people {
    width: 28px;
    height: 28px;
}
.icon-people::before,
.icon-people::after {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    border: 2px solid #15D1AA;
    border-radius: 50%;
}
.icon-people::before {
    top: 0;
    left: 0;
}
.icon-people::after {
    top: 0;
    left: 9px;
}

/* Award icon: circle + ribbon triangle below */
.icon-award {
    width: 28px;
    height: 28px;
}
.icon-award::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #15D1AA;
    border-radius: 50%;
}
.icon-award::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid #15D1AA;
}

/* My Services */
/* ===== Section Commons ===== */
.section-eyebrow {
    color: #15D1AA;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

.section-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-align: center;
}

.section-subtitle {
    color: #a1a1aa;
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
    text-align: center;
}

/* ===== Stats ===== */
.stats-section {
    background-color: #09090B;
    padding: 0 40px 100px;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    background-color: #111113;
    border: 1px solid #27272a;
    border-radius: 20px;
    overflow: hidden;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 52px 32px;
}

.stat-number {
    color: white;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -0.04em;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    line-height: 1;
}

.stat-label {
    color: #71717a;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 56px;
    background-color: #27272a;
}

/* ===== Values ===== */
.values-section {
    background-color: #09090B;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
}

.values-section .section-title { margin-bottom: 24px; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    width: 100%;
}

.value-card {
    background-color: #111113;
    border: 1px solid #27272a;
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.value-card:hover {
    border-color: rgba(21, 209, 170, 0.35);
    transform: translateY(-5px);
}

.value-number {
    position: absolute;
    top: 16px;
    right: 24px;
    color: rgba(21, 209, 170, 0.08);
    font-size: 80px;
    font-weight: 700;
    letter-spacing: -0.05em;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.value-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: invert(62%) sepia(98%) saturate(400%) hue-rotate(90deg) brightness(95%);
}

.value-card h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.value-card p {
    color: #a1a1aa;
    font-size: 15px;
    line-height: 1.7;
}

/* ===== Services Preview ===== */
.services-preview-section {
    background-color: #09090B;
    padding: 0 40px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
}

.services-preview-section .section-title { margin-bottom: 0; }

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1100px;
    margin: 16px 0 8px;
}

.services-grid-single {
    grid-template-columns: minmax(0, 360px);
    justify-content: center;
}

.services-grid-double {
    grid-template-columns: repeat(2, minmax(0, 320px));
    justify-content: center;
}

.service-card {
    background-color: #111113;
    border: 1px solid #27272a;
    border-radius: 18px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
    border-color: rgba(21, 209, 170, 0.4);
    box-shadow: 0 0 32px rgba(21, 209, 170, 0.08);
    transform: translateY(-5px);
}

.service-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(21, 209, 170, 0.08);
    border: 1px solid rgba(21, 209, 170, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.service-card p {
    color: #71717a;
    font-size: 14px;
    line-height: 1.7;
}

.btn-primary-link {
    display: inline-block;
    margin-top: 8px;
    padding: 14px 32px;
    background-color: #15D1AA;
    color: white;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    letter-spacing: 0.01em;
}

.btn-primary-link .arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn-primary-link:hover .arrow { transform: translateX(4px); }

.btn-primary-link:hover {
    background-color: #0B5041;
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(21, 209, 170, 0.5);
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Equipment ===== */
.equipment-section {
    background-color: #09090B;
    padding: 0 40px 100px;
    font-family: 'Inter', sans-serif;
}

.equipment-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.equipment-inner .section-title { margin-bottom: 4px; }
.equipment-inner .section-subtitle { margin-bottom: 20px; }

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #111113;
    border: 1px solid #27272a;
    border-left: 2px solid #15D1AA;
    border-radius: 12px;
    padding: 18px 22px;
    color: #d4d4d8;
    font-size: 14px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.equipment-item:hover {
    background-color: rgba(21, 209, 170, 0.04);
    transform: translateX(3px);
}

.equip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #15D1AA;
    flex-shrink: 0;
}

/* ===== Testimonials ===== */
.testimonials-section {
    background-color: #09090B;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 100px;
    font-family: 'Inter', sans-serif;
    gap: 16px;
    overflow: hidden;
}

.testimonials-section .section-title { margin-bottom: 24px; }

.testimonials-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials-marquee-wrapper::before,
.testimonials-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #09090B, transparent);
}

.testimonials-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #09090B, transparent);
}

.testimonials-track {
    display: flex;
    gap: 24px;
    padding: 16px 12px 32px;
    animation: testimonialsScroll 35s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes testimonialsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-stars {
    color: #15D1AA;
    font-size: 15px;
    letter-spacing: 3px;
}

.testimonial-card {
    background-color: #111113;
    border: 1px solid #27272a;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    width: 320px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    border-color: rgba(21, 209, 170, 0.3);
    transform: translateY(-5px);
}

.testimonial-quote {
    color: #d4d4d8;
    font-size: 15px;
    line-height: 1.75;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(21,209,170,0.15), rgba(21,209,170,0.04));
    border: 1px solid rgba(21, 209, 170, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #15D1AA;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.author-name {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.author-type {
    display: block;
    color: #71717a;
    font-size: 13px;
    margin-top: 2px;
}

/* ===== CTA ===== */
.cta-section {
    background-color: #09090B;
    padding: 0 40px 100px;
    font-family: 'Inter', sans-serif;
}

.cta-card {
    max-width: 860px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(21,209,170,0.07) 0%, rgba(9,9,11,0) 70%);
    border: 1px solid rgba(21, 209, 170, 0.18);
    border-radius: 28px;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(21,209,170,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    color: white;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.cta-desc {
    color: #a1a1aa;
    font-size: 17px;
    line-height: 1.7;
    max-width: 460px;
}

.cta-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 16px 36px;
    background-color: #15D1AA;
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    letter-spacing: 0.01em;
}

.cta-btn .arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.cta-btn:hover .arrow { transform: translateX(4px); }

.cta-btn:hover {
    background-color: #0B5041;
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(21, 209, 170, 0.5), 0 0 64px rgba(21, 209, 170, 0.2);
}

.kontakt .arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.kontakt:hover .arrow {
    transform: translateX(4px);
}

/* Footer */
footer {
    background-color: #0d0d0f;
    padding: 72px 40px 36px;
    font-family: 'Inter', sans-serif;
    color: #71717a;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(21,209,170,0.5) 50%, transparent 100%);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 220px;
    flex-shrink: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.footer-logo img {
    height: 100px !important;
    width: auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.footer-tagline {
    color: #52525b;
    font-size: 13px;
    line-height: 1.6;
}

.footer-heading {
    color: #15D1AA;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.footer-links,
.footer-socials,
.footer-legal,
.footer-kontakt {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #71717a;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

.footer-kontakt p {
    font-size: 14px;
    color: #71717a;
}

.footer-divider {
    border: none;
    border-top: 1px solid #1c1c1e;
    max-width: 1200px;
    margin: 0 auto 28px;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #3f3f46;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================================================
   HAMBURGER BUTTON
   =================================================== */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 10;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

/* ===================================================
   RESPONSIVE — 900px
   =================================================== */
@media (max-width: 900px) {
    /* Header & Hamburger */
    header {
        padding: 0 20px;
        flex-wrap: wrap;
        height: auto;
        min-height: 60px;
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .logo img {
        height: 100px;
        width: auto;
    }
    .nav-toggle {
        display: flex;
    }
    .MenuBar {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 8px 0 16px;
        border-top: 1px solid #27272a;
    }
    .MenuBar.open {
        display: flex;
    }
    .MenuBar .link {
        padding: 12px 4px;
        font-size: 16px;
    }

    /* Hero */
    .hero {
        padding: 60px 24px 48px;
        min-height: unset;
    }
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .hero-text {
        align-items: center;
    }
    .hero-content h1 {
        font-size: 48px;
    }
    .hero-subtitle {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero_jpg {
        width: 100%;
        height: auto;
        max-height: 420px;
    }

    /* About */
    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-portrait img { height: 480px; }
    .about-title { font-size: 48px; }
}

/* ===================================================
   RESPONSIVE — 768px
   =================================================== */
@media (max-width: 768px) {

    /* Hero (further adjustments at 768px) */
    .hero {
        padding: 40px 20px 36px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 16px;
    }

    /* Section titles */
    .section-title {
        font-size: 34px;
    }

    /* About */
    .about-section {
        padding: 60px 20px;
    }
    .about-title {
        font-size: 38px;
    }
    .about-portrait img {
        height: 360px;
    }
    .about-gallery {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    .about-gallery-caption {
        display: none;
    }

    /* Stats */
    .stats-section {
        padding: 0 20px 60px;
    }
    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }
    .stat-divider {
        display: none;
    }
    .stat-item {
        padding: 28px 12px;
    }
    .stat-number {
        font-size: 40px;
    }

    /* Values */
    .values-section {
        padding: 60px 20px;
    }
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Services Preview */
    .services-preview-section {
        padding: 0 20px 60px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Equipment */
    .equipment-section {
        padding: 0 20px 60px;
    }
    .equipment-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* CTA */
    .cta-section {
        padding: 0 20px 60px;
    }
    .cta-card {
        padding: 48px 24px;
    }
    .cta-title {
        font-size: 32px;
    }

    /* Über-mich page */
    .ueber-hero {
        padding: 60px 20px 48px;
    }
    .ueber-hero h1 {
        font-size: 40px;
    }
    .ueber-hero-sub {
        font-size: 16px;
    }
    .ueber-kennen {
        padding: 60px 20px;
    }
    .ueber-stats {
        padding: 0 20px 60px;
    }
    .ueber-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ueber-werte {
        padding: 60px 20px;
    }
    .ueber-werte-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ueber-equipment {
        padding: 0 20px 60px;
    }
    .ueber-equipment-inner {
        padding: 40px 24px;
    }
    .ueber-equip-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    footer {
        padding: 36px 20px 24px;
    }
    .footer-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 32px;
        padding-bottom: 24px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    .footer-brand .footer-tagline {
        display: none;
    }
    .footer-logo img {
        height: 70px !important;
    }
    .footer-kontakt {
        grid-column: 1 / -1;
    }
    .footer-heading {
        margin-bottom: 12px;
    }
    .footer-divider {
        margin-bottom: 16px;
    }
}

/* ===================================================
   RESPONSIVE — 480px
   =================================================== */
@media (max-width: 480px) {

    /* Hero */
    .hero-content h1 {
        font-size: 30px;
    }
    .section-title {
        font-size: 26px;
    }

    /* About */
    .about-title {
        font-size: 30px;
    }
    .about-portrait img {
        height: 260px;
    }

    /* Stats: 2 columns, kompakter */
    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }
    .stat-item {
        padding: 20px 8px;
    }
    .stat-number {
        font-size: 32px;
    }

    /* Values: 1 Spalte auf sehr kleinen Screens */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Equipment: 2 Spalten behalten */
    .equipment-grid {
        grid-template-columns: 1fr 1fr;
    }
    .equipment-item {
        padding: 14px 14px;
        font-size: 13px;
    }

    /* CTA */
    .cta-title {
        font-size: 26px;
    }
    .cta-card {
        padding: 36px 20px;
    }

    /* Über-mich */
    .ueber-hero h1 {
        font-size: 32px;
    }
    .ueber-equip-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ueber-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ueber-werte-grid {
        grid-template-columns: 1fr;
    }

    /* Buttons */
    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* ===== Clients / Kunden Section ===== */
.clients-section {
    padding: 60px 0 50px;
    background-color: #09090B;
    text-align: center;
}

.clients-title {
    margin-bottom: 40px;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
}

.client-logo {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.85);
    opacity: 0.75;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .clients-section {
        padding: 40px 0 32px;
    }
    .clients-logos {
        gap: 36px;
        padding: 0 24px;
    }
    .client-logo {
        height: 56px;
        max-width: 130px;
    }
}

@media (max-width: 480px) {
    .clients-logos {
        gap: 28px;
        padding: 0 16px;
    }
    .client-logo {
        height: 44px;
        max-width: 100px;
    }
}
