/* =========================================================
   TINAX WERBETECHNIK — STYLESHEET
   Design: moderne Außenwerbung-Ästhetik
   Brand: Tinax Lime #a7be15 · Dunkel #141414 · Off-White #f4f4f1
   ========================================================= */

/* -------- Self-hosted Google Sans (subset: Latin + German) -------- */
@font-face {
    font-family: 'Google Sans';
    src: url('../fonts/GoogleSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Google Sans';
    src: url('../fonts/GoogleSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Google Sans';
    src: url('../fonts/GoogleSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Google Sans';
    src: url('../fonts/GoogleSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* -------- Design Tokens -------- */
:root {
    /* Farben */
    --c-bg:             #F8F3E1;
    --c-bg-alt:         #EFE7CE;
    --c-ink:            #141414;
    --c-ink-soft:       #222222;
    --c-ink-softer:     #2b2b2b;
    --c-surface:        #ffffff;
    --c-text:           #171717;
    --c-text-muted:     #6c6c6c;
    --c-text-subtle:    #9a9a9a;
    --c-text-light:     #f4f4f1;
    --c-text-light-muted: #aaaaa3;
    --c-accent:         #a7be15;
    --c-accent-bright:  #bcd21c;
    --c-accent-soft:    #d2e24a;
    --c-accent-ink:     #0e0e0e;
    --c-border:         #e4e4dc;
    --c-border-dark:    #2a2a2a;
    --c-shadow:         0 30px 60px -30px rgba(20,20,20,0.25);
    --c-shadow-soft:    0 10px 30px -10px rgba(20,20,20,0.15);

    /* Typography */
    --font-display: 'Google Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body:    'Google Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;

    /* Radius */
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 28px;
    --r-xl: 36px;
    --r-full: 9999px;

    /* Maße */
    --max-w: 1506px;
    --pad-x: clamp(20px, 4vw, 48px);
    --section-py: clamp(64px, 9vw, 130px);
}

/* -------- Reset / Base -------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

::selection {
    background: var(--c-accent);
    color: var(--c-accent-ink);
}

/* -------- Typography Utilities -------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.035em;
    color: var(--c-ink);
}

h1 {
    font-size: clamp(2.5rem, 6.5vw, 6.25rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2.25rem, 5vw, 4.375rem);
    font-weight: 700;
    letter-spacing: -0.035em;
}

h3 {
    font-size: clamp(1.5rem, 2.4vw, 1.875rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.015em;
}

p {
    color: var(--c-text-muted);
    line-height: 1.65;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    padding: 6px 14px 6px 10px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-ink);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-full);
}

.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-accent);
}

.eyebrow--light {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--c-text-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* -------- Container / Layout -------- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.section {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 720px;
    margin-bottom: 56px;
}

.section-head .eyebrow {
    align-self: flex-start;
}

.section-head p {
    font-size: 1.05rem;
}

/* -------- Buttons -------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    border-radius: var(--r-full);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover svg {
    transform: translate(2px, -2px);
}

.btn--primary {
    background: var(--c-accent);
    color: var(--c-accent-ink);
}

.btn--primary:hover {
    background: var(--c-accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -8px rgba(167, 190, 21, 0.5);
}

.btn--ghost-light {
    background: rgba(255, 255, 255, 0.08);
    color: var(--c-text-light);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.btn-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--c-accent);
    color: var(--c-accent-ink);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.btn-circle svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-circle:hover {
    background: var(--c-accent-bright);
}

.btn-circle:hover svg {
    transform: translate(3px, -3px);
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px var(--pad-x);
    transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.is-hidden {
    transform: translateY(-110%);
}

.header.is-scrolled {
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px var(--pad-x);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Combined logo+menu pill (like Vian reference) */
.nav-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-full);
    padding: 8px 24px 8px 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 56px;
    flex-shrink: 0;
    padding: 0 14px 0 6px;
    margin-right: 8px;
}

.nav-logo img {
    height: 52px;
    width: auto;
}

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

.nav-menu > li {
    position: relative;
}

.nav-menu a,
.nav-menu .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--c-text-light);
    border-radius: var(--r-full);
    transition: background 0.25s ease, color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu .nav-link:hover {
    color: var(--c-accent);
}

.nav-caret {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.nav-item--has-sub:hover .nav-caret,
.nav-item--has-sub.is-open .nav-caret {
    transform: rotate(180deg);
}

/* Dropdown panel */
.nav-sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    margin-top: 12px;
    padding: 10px;
    background: rgba(20, 20, 20, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    list-style: none;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 100;
}

.nav-item--has-sub:hover .nav-sub,
.nav-item--has-sub:focus-within .nav-sub,
.nav-item--has-sub.is-open .nav-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-sub li {
    list-style: none;
}

.nav-sub a {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--c-text-light);
    border-radius: 10px;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-sub a:hover {
    background: var(--c-accent);
    color: var(--c-accent-ink);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px 12px 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--c-text-light);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-full);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.25s ease;
}

.nav-phone:hover {
    background: rgba(255, 255, 255, 0.12);
}

.nav-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--c-accent);
    color: var(--c-accent-ink);
    border-radius: 50%;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--c-text-light);
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    position: relative;
    transition: background 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s ease, top 0.3s ease;
}

.nav-toggle span::before {
    top: -6px;
}

.nav-toggle span::after {
    top: 6px;
}

.nav.is-open .nav-toggle span {
    background: transparent;
}

.nav.is-open .nav-toggle span::before {
    top: 0;
    transform: rotate(45deg);
}

.nav.is-open .nav-toggle span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 0;
    background: var(--c-ink);
    overflow: hidden;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20,20,20,0.35) 0%, rgba(20,20,20,0.55) 60%, rgba(20,20,20,0.78) 100%);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 130px var(--pad-x) clamp(40px, 6vw, 70px);
    color: var(--c-text-light);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-title {
    text-align: right;
    margin: 0 0 36px;
    font-size: clamp(2.4rem, 6.2vw, 6rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: var(--c-text-light);
    font-weight: 600;
}

.hero-title-accent {
    color: var(--c-accent);
}

.hero-divider {
    width: 100%;
    height: 1px;
    background: rgba(244,244,241,0.28);
    margin-bottom: 32px;
}

.hero-foot {
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: clamp(40px, 7vw, 90px);
    align-items: end;
}

/* Featured project card (left) */
.hero-feature {
    background: rgba(244,244,241,0.08);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
    border-radius: var(--r-md);
    padding: 18px;
    border: 1px solid rgba(244,244,241,0.14);
}

.hero-feature-eyebrow {
    display: block;
    font-size: 0.78rem;
    color: rgba(244,244,241,0.7);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-feature-body {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 16px;
    align-items: center;
}

.hero-feature-media {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    background: rgba(0,0,0,0.3);
}

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

.hero-feature-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.hero-feature-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--c-text-light);
    letter-spacing: -0.01em;
    font-weight: 500;
}

.hero-feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--c-text-light);
    color: var(--c-ink);
    border-radius: var(--r-full);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s ease, color 0.2s ease;
}

.hero-feature-btn:hover {
    background: var(--c-accent);
    color: var(--c-accent-ink);
}

/* Right-aligned text block */
.hero-text {
    text-align: right;
    color: rgba(244,244,241,0.92);
}

.hero-text .hero-lead {
    font-size: 1.0625rem;
    color: var(--c-text-light);
    margin: 0 0 16px;
    font-weight: 500;
    line-height: 1.45;
    max-width: none;
}

.hero-text > p:not(.hero-lead) {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 26px;
    color: rgba(244,244,241,0.82);
}

.hero-cta-row {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero stat cards */
.hero-stats {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: auto;
    margin-bottom: -200px;
}

.stat-card {
    position: relative;
    padding: 32px 32px 28px;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    overflow: hidden;
    cursor: default;
}

.stat-card-dot {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c-accent);
    box-shadow: 0 0 0 4px rgba(167, 190, 21, 0.2);
    transform: scale(1);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    z-index: 0;
    will-change: transform;
}

.stat-card:hover .stat-card-dot {
    transform: scale(120);
    box-shadow: none;
}

.stat-card-num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--c-ink);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.stat-card-label {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 250px;
    margin-top: 12px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-card-label {
    color: var(--c-accent-ink);
}

.stat-card--accent {
    background: var(--c-surface);
    color: var(--c-ink);
    grid-column: span 1;
    padding: 32px;
    gap: 20px;
    justify-content: flex-start;
    align-items: stretch;
}

.stat-card--accent .stat-card-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--c-ink);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    padding-right: 32px;
}

.stat-card--accent:hover .stat-card-title {
    color: var(--c-accent-ink);
}

.stat-card--accent .stat-card-img {
    flex: 1;
    border-radius: var(--r-md);
    overflow: hidden;
    background: rgba(0,0,0,0.06);
    aspect-ratio: 16/10;
    position: relative;
    z-index: 1;
}

.stat-card--accent .stat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: light-color-cycle 18s linear infinite;
}

@keyframes light-color-cycle {
    from { filter: hue-rotate(0deg); }
    to   { filter: hue-rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .stat-card--accent .stat-card-img img {
        animation: none;
    }
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services {
    position: relative;
    z-index: 1;
    background: var(--c-bg);
    overflow: hidden;
    padding-top: var(--section-py);
}

.services-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 56px;
}

.services-head-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
}

.services-head-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: var(--c-text-muted);
    font-size: 1rem;
}

.services-head-right h2 {
    color: var(--c-ink);
    margin: 0;
}

.services-head-right p {
    margin: 0;
    font-size: 1rem;
    color: var(--c-text-muted);
}

.services-grid {
    --visible-cards: 4;
    --gap: 20px;
    position: relative;
    z-index: 1;
    display: flex;
    gap: var(--gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: var(--pad-x);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 4px var(--pad-x) 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-grid::-webkit-scrollbar {
    display: none;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px 28px 28px;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 calc((100vw - 2 * var(--pad-x) - (var(--visible-cards) - 1) * var(--gap)) / var(--visible-cards));
    scroll-snap-align: start;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--c-shadow-soft);
}

.service-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--c-bg-alt);
    border-radius: var(--r-sm);
    color: var(--c-ink);
    flex-shrink: 0;
}

.service-card-icon--img {
    background: transparent;
    width: 56px;
    height: 56px;
}

.service-card-icon--img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--c-ink);
    line-height: 1.2;
}

.service-card-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--c-text-muted);
    flex: 1;
}

.service-card-media {
    position: relative;
    aspect-ratio: 16 / 11;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--c-bg-alt);
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-media img {
    transform: scale(1.05);
}

.service-card-media .btn-circle {
    position: absolute;
    right: 14px;
    bottom: 14px;
}

.services-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 56px;
    flex-wrap: wrap;
}

.services-footer p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.services-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-surface);
    color: var(--c-ink);
    border: 1px solid var(--c-border);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.slider-arrow:hover {
    background: var(--c-accent);
    color: var(--c-accent-ink);
    border-color: var(--c-accent);
    transform: translateY(-2px);
}

.slider-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    background: var(--c-surface);
    color: var(--c-ink);
    border-color: var(--c-border);
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about {
    position: relative;
    background: var(--c-bg);
    overflow: hidden;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.about-visual {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--c-bg-alt);
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
}

.about-rating {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--c-accent);
    color: var(--c-accent-ink);
    padding: 18px 24px;
    border-radius: var(--r-md);
    text-align: center;
    min-width: 120px;
}

.about-rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 6px;
    font-size: 0.75rem;
    color: var(--c-accent-ink);
}

.about-rating-score {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.about-rating-label {
    font-size: 0.75rem;
    margin-top: 6px;
    opacity: 0.85;
}

.about-content {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.about-content h2 {
    max-width: 540px;
}

.about-content p {
    max-width: 520px;
    font-size: 1rem;
}

/* =========================================================
   FEATURE BANNER SECTION
   ========================================================= */
.feature-banner {
    position: relative;
    padding: clamp(80px, 12vw, 160px) 0;
    color: var(--c-text-light);
    overflow: hidden;
    isolation: isolate;
    background: #141414;
}

.feature-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.fb-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.fb-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 25%, transparent 85%);
            mask-image: radial-gradient(ellipse at 50% 50%, #000 25%, transparent 85%);
    z-index: 1;
}

.feature-banner-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20,20,20,0.85) 0%, rgba(20,20,20,0.55) 60%, rgba(20,20,20,0.45) 100%),
        radial-gradient(ellipse 110% 80% at 50% 50%, transparent 35%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

.feature-banner-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-banner-content h2 {
    color: var(--c-text-light);
    margin-bottom: 20px;
}

.feature-banner-content p {
    color: #ffffff;
    max-width: 480px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.feature-banner-card {
    justify-self: end;
    max-width: 380px;
    padding: 24px;
    background: rgba(20, 20, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-lg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.feature-banner-card-img {
    aspect-ratio: 16/9;
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 18px;
    background: #0a0a0a;
}

.feature-banner-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Auto-cycling hue animation for the sichtbar-werden light cone */
@keyframes feature-banner-hue-cycle {
    from { filter: hue-rotate(0deg); }
    to   { filter: hue-rotate(360deg); }
}

.feature-banner-card-img--cycle img {
    animation: feature-banner-hue-cycle 14s linear infinite;
    will-change: filter;
}

@media (prefers-reduced-motion: reduce) {
    .feature-banner-card-img--cycle img {
        animation: none;
    }
}

.feature-banner-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-text-light);
    letter-spacing: -0.015em;
    line-height: 1.25;
}

/* =========================================================
   PROJECTS / PORTFOLIO
   ========================================================= */
.projects {
    background: var(--c-bg);
}

.projects-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 56px;
}

.projects-head-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
}

.projects-head-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: var(--c-text-muted);
    font-size: 1rem;
}

.projects-head-right h2 {
    color: var(--c-ink);
    margin: 0;
}

.projects-head-right p {
    margin: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.projects-footer {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.project-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--c-surface);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-card-media {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
    background: var(--c-bg-alt);
}

.project-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: transform 0.6s ease, filter 0.5s ease;
}

.project-card:hover .project-card-media img {
    transform: scale(1.06);
    filter: grayscale(0);
}

.project-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
}

.project-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--c-ink);
    margin-bottom: 4px;
}

.project-card-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--c-text-subtle);
}

/* =========================================================
   COMMITMENT / WHY US
   ========================================================= */
.commitment {
    position: relative;
    padding: clamp(80px, 12vw, 160px) 0;
    color: var(--c-ink);
    overflow: hidden;
    isolation: isolate;
    background: var(--c-bg-alt);
}

.commitment-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.commitment-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 440px;
    align-items: flex-start;
}

.commitment-left h2 {
    color: var(--c-ink);
}

.commitment-left p {
    color: var(--c-text-muted);
}

.commitment-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-self: stretch;
}

.commitment-cards-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.commitment-cards-col--offset {
    margin-top: 140px;
}

.commitment-card {
    padding: 36px 36px 32px;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    color: var(--c-text);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.commitment-card-head {
    display: flex;
    align-items: center;
    gap: 22px;
}

.commitment-card-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--c-accent);
    color: var(--c-accent-ink);
    border-radius: 50%;
}

.commitment-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--c-ink);
    line-height: 1.2;
    margin: 0;
}

.commitment-card-text {
    font-size: 1rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin: 0;
    padding-top: 26px;
    border-top: 1px solid rgba(20, 20, 20, 0.1);
}

/* =========================================================
   PROCESS SECTION
   ========================================================= */
.process {
    background: var(--c-bg);
}

.process-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 56px;
}

.process-head-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 8px;
}

.process-head-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: var(--c-text-muted);
    font-size: 1rem;
}

.process-head-right h2 {
    color: var(--c-ink);
    margin: 0;
}

.process-head-right p {
    margin: 0;
    font-size: 1rem;
    color: var(--c-text-muted);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-step {
    padding: 32px 28px;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--c-shadow-soft);
}

.process-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--c-bg-alt);
    color: var(--c-ink);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 50%;
    letter-spacing: -0.02em;
}

.process-step:hover .process-step-num {
    background: var(--c-accent);
    color: var(--c-accent-ink);
}

.process-step-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--c-ink);
}

.process-step-text {
    font-size: 0.92rem;
    color: var(--c-text-muted);
    line-height: 1.55;
}

/* =========================================================
   TEAM SECTION
   ========================================================= */
.team {
    background: var(--c-bg);
    padding-bottom: calc(var(--section-py) * 0.5);
}

.team-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 56px;
}

.team-head-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.team-head-right {
    aspect-ratio: 16/10;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--c-bg-alt);
    max-width: 520px;
    justify-self: end;
    width: 100%;
}

.team-head-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-card-photo {
    aspect-ratio: 4/5;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--c-bg-alt);
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--c-ink);
}

.team-card-role {
    font-size: 0.88rem;
    color: var(--c-text-subtle);
    margin-top: 2px;
}

/* =========================================================
   REFERENCES LOGO MARQUEE
   ========================================================= */
.ref-marquee {
    background: var(--c-bg);
    padding: clamp(60px, 8vw, 100px) 0;
    overflow: hidden;
}

.ref-marquee-eyebrow {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-text-subtle);
    margin-bottom: 40px;
}

.ref-marquee-viewport {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.ref-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 64px;
    white-space: nowrap;
    will-change: transform;
    animation: ref-marquee-scroll 40s linear infinite;
}

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

@keyframes ref-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.ref-logo {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 600;
    color: var(--c-ink);
    opacity: 0.45;
    letter-spacing: -0.015em;
    transition: opacity 0.3s ease;
    line-height: 1;
}

.ref-logo:hover {
    opacity: 1;
}

.ref-logo--serif {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: italic;
}

.ref-logo--bold {
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.ref-logo--mono {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    letter-spacing: -0.02em;
}

@media (prefers-reduced-motion: reduce) {
    .ref-marquee-track {
        animation: none;
    }
}

/* =========================================================
   CONTACT CTA SECTION
   ========================================================= */
.contact-cta {
    position: relative;
    padding: clamp(70px, 10vw, 120px) 0;
    color: var(--c-text-light);
    overflow: hidden;
    isolation: isolate;
    background: #141414;
}

.contact-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.cc-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 25%, transparent 85%);
            mask-image: radial-gradient(ellipse at 50% 50%, #000 25%, transparent 85%);
}

/* Lime green glow on the right where the contact form sits */
.cc-glow {
    position: absolute;
    top: 50%;
    right: -8%;
    width: 55vw;
    height: 55vw;
    max-width: 700px;
    max-height: 700px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(167, 190, 21, 0.45) 0%, rgba(167, 190, 21, 0) 65%);
    filter: blur(70px);
    opacity: 0.75;
    pointer-events: none;
}

.contact-cta-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 110% 80% at 50% 50%, transparent 35%, rgba(0,0,0,0.45) 100%);
}

.contact-cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.contact-cta-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-cta-left h2 {
    color: var(--c-text-light);
}

.contact-info-group {
    margin-top: 4px;
}

.contact-info-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.contact-info-text {
    color: var(--c-text-light-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.contact-info-text a {
    color: var(--c-text-light-muted);
    transition: color 0.2s ease;
}

.contact-info-text a:hover {
    color: var(--c-accent);
}

/* Contact form */
.contact-form-card {
    padding: 36px;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    color: var(--c-text);
}

.contact-form-card h3 {
    color: var(--c-ink);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-card-sub {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    margin-bottom: 22px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form .form-field {
    display: flex;
    flex-direction: column;
}

.contact-form .form-field--full {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    color: var(--c-text);
    font-size: 0.9rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    width: 100%;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--c-accent);
    background: var(--c-surface);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--c-text-subtle);
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.5;
    grid-column: 1 / -1;
    margin-top: 4px;
}

.contact-form-check input {
    width: auto;
    margin-top: 3px;
    accent-color: var(--c-accent);
}

.contact-form-check a {
    color: var(--c-ink);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-form-submit {
    grid-column: 1 / -1;
    margin-top: 8px;
    justify-self: flex-start;
}

/* =========================================================
   BLOG / NEWS SECTION
   ========================================================= */
.blog {
    background: var(--c-bg);
}

.blog-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 56px;
}

.blog-head-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card-media {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--c-bg-alt);
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.05);
}

.blog-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: var(--c-accent);
    color: var(--c-accent-ink);
    border-radius: var(--r-full);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-card-body {
    padding: 0 6px 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-card-meta {
    font-size: 0.78rem;
    color: var(--c-text-subtle);
    display: flex;
    gap: 6px;
    align-items: center;
}

.blog-card-meta .dot {
    opacity: 0.5;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--c-ink);
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    line-height: 1.55;
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq {
    background: var(--c-bg);
    position: relative;
    overflow: hidden;
}

.faq-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.faq-head {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--c-surface);
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.25s ease;
}

.faq-item.is-open {
    border-color: var(--c-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-ink);
    letter-spacing: -0.005em;
}

.faq-question-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--c-ink);
    transition: transform 0.3s ease, color 0.25s ease;
}

.faq-item.is-open .faq-question-icon {
    transform: rotate(45deg);
    color: var(--c-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 26px 22px;
    font-size: 0.95rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
}

/* =========================================================
   MARQUEE CTA / FOOTER
   ========================================================= */
.marquee-cta {
    position: relative;
    padding: 50px 0 40px;
    background: var(--c-ink);
    color: var(--c-text-light);
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--c-border-dark);
}

.marquee-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.25;
}

.marquee-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marquee-cta-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,20,20,0.7) 0%, rgba(20,20,20,0.85) 100%);
}

.marquee-track {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    will-change: transform;
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 36px;
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--c-text-light);
}

.marquee-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--c-text-light);
    border: 1px solid rgba(255,255,255,0.15);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.15;
    flex-shrink: 0;
    padding: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.marquee-badge svg {
    position: absolute;
    top: 14px;
    right: 14px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--c-ink);
    color: var(--c-text-light);
    padding: 80px 0 32px;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--c-border-dark);
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-text-light);
    margin-bottom: 20px;
    letter-spacing: -0.005em;
}

.footer-brand img {
    height: 54px;
    width: auto;
    margin-bottom: 22px;
}

.footer-brand p {
    color: var(--c-text-light-muted);
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--c-text-light);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
    background: var(--c-accent);
    color: var(--c-accent-ink);
    border-color: var(--c-accent);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.92rem;
    color: var(--c-text-light-muted);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: var(--c-accent);
    padding-left: 4px;
}

.footer-contact {
    color: var(--c-text-light-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-contact a {
    color: var(--c-text-light-muted);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--c-accent);
}

.footer-contact-row {
    margin-bottom: 12px;
}

.footer-newsletter-sub {
    font-size: 0.88rem;
    color: var(--c-text-light-muted);
    line-height: 1.55;
    margin-bottom: 18px;
}

.footer-newsletter-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-full);
    padding: 6px 6px 6px 18px;
}

.footer-newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--c-text-light);
    font-size: 0.9rem;
    padding: 10px 4px;
}

.footer-newsletter-form input::placeholder {
    color: var(--c-text-light-muted);
}

.footer-newsletter-form button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-accent);
    color: var(--c-accent-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}

.footer-newsletter-form button:hover {
    background: var(--c-accent-bright);
    transform: translateY(-1px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 32px;
    font-size: 0.82rem;
    color: var(--c-text-light-muted);
    flex-wrap: wrap;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--c-text-light-muted);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--c-accent);
}

/* =========================================================
   PAGE HEADER (INNER PAGES)
   ========================================================= */
.page-head {
    position: relative;
    padding: 180px var(--pad-x) 100px;
    background: var(--c-ink);
    color: var(--c-text-light);
    overflow: hidden;
    isolation: isolate;
}

.page-head-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.45;
}

.page-head-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-head-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,20,20,0.75) 0%, rgba(20,20,20,0.92) 100%);
}

.page-head-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.page-head h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    color: var(--c-text-light);
    max-width: 900px;
}

.page-head p {
    color: var(--c-text-light-muted);
    max-width: 640px;
    font-size: 1.05rem;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.85rem;
    color: var(--c-text-light-muted);
    margin-bottom: 4px;
}

.breadcrumbs a {
    color: var(--c-text-light-muted);
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--c-accent);
}

.breadcrumbs .sep {
    opacity: 0.4;
}

/* =========================================================
   PRODUCT GRID (Produkte page)
   ========================================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    padding: 28px;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--c-shadow-soft);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--c-bg-alt);
    border-radius: var(--r-sm);
    color: var(--c-ink);
    transition: background 0.3s ease, color 0.3s ease;
}

.product-card:hover .product-card-icon {
    background: var(--c-accent);
    color: var(--c-accent-ink);
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--c-ink);
    line-height: 1.2;
}

.product-card-text {
    font-size: 0.92rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    flex: 1;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--c-ink);
    margin-top: auto;
}

.product-card-link svg {
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-link svg {
    transform: translate(3px, -3px);
}

/* =========================================================
   CONTACT PAGE GRID
   ========================================================= */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-block {
    padding: 32px;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    margin-bottom: 20px;
}

.contact-block h3 {
    font-size: 1.3rem;
    color: var(--c-ink);
    margin-bottom: 16px;
}

.contact-block p,
.contact-block a {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-block a:hover {
    color: var(--c-accent-ink);
}

.contact-map {
    aspect-ratio: 16/11;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--c-bg-alt);
    border: 1px solid var(--c-border);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2);
}

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
    .nav-phone {
        display: none;
    }

    .services-grid {
        --visible-cards: 2;
    }

    .process-steps,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-inner,
    .commitment-inner,
    .projects-head,
    .team-head,
    .blog-head,
    .faq-inner,
    .contact-cta-inner,
    .contact-page-grid,
    .feature-banner-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        max-width: 500px;
    }

    .team-head-right,
    .feature-banner-card {
        justify-self: start;
    }

    .commitment-cards {
        grid-template-columns: 1fr;
    }

    .commitment-cards-col--offset {
        margin-top: 0;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card--accent {
        grid-column: span 2;
        flex-direction: row;
        min-height: auto;
    }

    .stat-card--accent .stat-card-img {
        max-width: 280px;
    }
}

@media (max-width: 780px) {
    :root {
        --section-py: clamp(56px, 10vw, 90px);
    }

    .nav-bar {
        background: transparent;
        border: none;
        padding: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-logo {
        height: 48px;
        padding: 0;
        margin-right: 0;
    }

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

    .nav-menu,
    .nav-phone {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav.is-open .nav-menu {
        display: flex;
        position: absolute;
        top: calc(100% + 8px);
        left: var(--pad-x);
        right: var(--pad-x);
        flex-direction: column;
        padding: 16px;
        border-radius: var(--r-md);
        background: rgba(20,20,20,0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .nav.is-open .nav-menu a {
        width: 100%;
        text-align: left;
    }

    .nav.is-open .nav-menu > li {
        width: 100%;
    }

    .nav-sub {
        position: static;
        width: 100%;
        min-width: 0;
        margin: 4px 0 4px 16px;
        padding: 4px 0 4px 12px;
        background: transparent;
        border: none;
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-item--has-sub.is-open .nav-sub {
        display: block;
    }

    .nav-sub a {
        padding: 8px 12px;
        font-size: 0.88rem;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
    }

    .hero-ctas {
        margin-bottom: 48px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        margin-bottom: -80px;
    }

    .services {
        padding-top: calc(var(--section-py) + 100px);
    }

    .stat-card {
        min-height: 180px;
    }

    .stat-card--accent {
        grid-column: span 1;
        flex-direction: column;
    }

    .stat-card--accent .stat-card-img {
        max-width: 100%;
        width: 100%;
    }

    .services-grid {
        --visible-cards: 1;
    }

    .process-steps,
    .team-grid,
    .projects-grid,
    .blog-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .commitment-cards {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px;
    }

    .marquee-item {
        font-size: clamp(2.5rem, 10vw, 4rem);
        gap: 24px;
    }

    .marquee-badge {
        width: 60px;
        height: 60px;
        font-size: 0.65rem;
    }

    .marquee-track {
        gap: 24px;
    }
}

/* =========================================================
   SUBPAGE — FAHRZEUGVOLLFOLIERUNG / AUTOFOLIERUNG
   ========================================================= */

/* -------- Page hero (top section after fixed header) -------- */
.page-hero {
    padding-top: calc(140px + clamp(20px, 3vw, 40px));
    padding-bottom: var(--section-py);
}

.page-hero-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 56px;
}

.page-hero-head .eyebrow {
    margin-bottom: 28px;
}

.page-hero-head h1 {
    margin: 0 0 28px;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
}

.page-hero-lead {
    font-size: 1.125rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    max-width: 720px;
    margin: 0;
}

/* -------- Section variants -------- */
.section--alt {
    background: var(--c-bg-alt);
}

.section-head--center {
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-head--center .eyebrow {
    align-self: center;
}

/* -------- Recolor tool — image stage -------- */
.recolor-stage {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: var(--r-lg);
    background: #0e0e0e;
    aspect-ratio: 16 / 9;
    margin: 0 auto 32px;
    box-shadow: var(--c-shadow);
    max-width: 1280px;
}

.recolor-base {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
    -webkit-user-drag: none;
}

.recolor-tint {
    position: absolute;
    inset: 0;
    background: var(--car-color, #ffffff);
    mix-blend-mode: multiply;
    -webkit-mask-image: url('../images/recolor/car-mask-cayman-v1.png');
            mask-image: url('../images/recolor/car-mask-cayman-v1.png');
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    pointer-events: none;
    transition: background 0.35s ease;
    z-index: 2;
}

/* When original is selected, hide the tint to show pure image */
.recolor-stage.is-original .recolor-tint {
    opacity: 0;
}

.recolor-watermark {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    pointer-events: none;
    z-index: 3;
    font-weight: 500;
}

/* -------- Recolor tool — controls -------- */
.recolor-controls {
    background: var(--c-surface);
    border-radius: var(--r-lg);
    padding: 28px 36px;
    margin: 0 auto 24px;
    box-shadow: var(--c-shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1280px;
}

.recolor-controls-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.recolor-controls-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--c-ink);
    letter-spacing: -0.01em;
}

.recolor-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: flex-start;
}

.recolor-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 4px 2px;
    transition: transform 0.2s ease;
    flex: 0 0 auto;
}

.recolor-swatch:hover {
    transform: translateY(-2px);
}

.recolor-swatch-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--swatch);
    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,0.08),
        inset 0 -3px 6px rgba(0,0,0,0.12),
        inset 0 3px 6px rgba(255,255,255,0.18);
    transition: box-shadow 0.2s ease;
    position: relative;
}

.recolor-swatch.is-active .recolor-swatch-dot {
    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,0.08),
        0 0 0 2px var(--c-surface),
        0 0 0 4px var(--c-ink);
}

/* "Original" swatch needs a subtle border to be visible against white card */
.recolor-swatch[data-color="reset"] .recolor-swatch-dot {
    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,0.15),
        inset 0 -3px 6px rgba(0,0,0,0.06);
}

.recolor-swatch[data-color="reset"].is-active .recolor-swatch-dot {
    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,0.15),
        0 0 0 2px var(--c-surface),
        0 0 0 4px var(--c-ink);
}

.recolor-swatch-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--c-ink);
    letter-spacing: 0.005em;
}

.recolor-custom {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.recolor-custom-label {
    font-size: 0.95rem;
    color: var(--c-ink);
    font-weight: 500;
}

.recolor-custom-swatch {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    cursor: pointer;
    background: conic-gradient(from 0deg, #ec4899, #f59e0b, #84cc16, #06b6d4, #6366f1, #ec4899);
    flex: 0 0 auto;
}

.recolor-custom-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
}

.recolor-custom-value {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-left: 4px;
}

.recolor-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.6;
}

/* -------- Intro split (2-column eyebrow + body) -------- */
.intro-split {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.intro-split-head .eyebrow {
    align-self: flex-start;
}

.intro-split-body h2 {
    margin: 0 0 28px;
}

.intro-split-body p {
    color: var(--c-text-muted);
    line-height: 1.7;
    margin: 0 0 16px;
    font-size: 1rem;
}

.intro-split-body p:last-child {
    margin-bottom: 0;
}

/* -------- Benefit grid (4 cards, why folieren) -------- */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--c-surface);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--c-shadow-soft);
}

.benefit-card-num {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--c-accent);
    letter-spacing: -0.04em;
    line-height: 1;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin: 0;
}

.benefit-card p {
    color: var(--c-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* -------- Finish grid (3 cards) -------- */
.finish-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.finish-head .eyebrow {
    align-self: center;
    margin-bottom: 24px;
}

.finish-head h2 {
    margin: 0 0 24px;
}

.finish-head p {
    color: var(--c-text-muted);
    line-height: 1.65;
    font-size: 1.0625rem;
    margin: 0;
}

.finish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.finish-card {
    background: var(--c-surface);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.finish-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--c-shadow-soft);
    border-color: var(--c-accent);
}

.finish-card h3 {
    font-size: 1.5rem;
    margin: 0 0 14px;
}

.finish-card p {
    color: var(--c-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* -------- Process grid (4 steps for autofolierung) -------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: var(--c-surface);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--c-shadow-soft);
}

.process-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--c-accent);
    color: var(--c-accent-ink);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.process-card h3 {
    font-size: 1.2rem;
    margin: 0;
}

.process-card p {
    color: var(--c-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* -------- Subpage responsive -------- */
@media (max-width: 1100px) {
    .benefit-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .finish-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .recolor-controls {
        padding: 24px 28px;
    }
}

@media (max-width: 780px) {
    .benefit-grid,
    .process-grid,
    .finish-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding-top: calc(110px + clamp(20px, 3vw, 30px));
    }

    .page-hero-head {
        margin-bottom: 36px;
    }

    .recolor-stage {
        border-radius: var(--r-md);
    }

    .recolor-controls {
        padding: 20px 18px;
        border-radius: var(--r-md);
    }

    .recolor-controls-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .recolor-swatches {
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .recolor-swatch {
        flex: 0 0 calc(25% - 10px);
    }

    .recolor-swatch-dot {
        width: 38px;
        height: 38px;
    }

    .recolor-swatch-label {
        font-size: 0.72rem;
    }

    .recolor-custom {
        justify-content: center;
        flex-wrap: wrap;
    }

    .recolor-watermark {
        bottom: 10px;
        right: 12px;
        font-size: 0.6rem;
    }

    .benefit-card,
    .finish-card,
    .process-card {
        padding: 28px 24px;
    }
}

/* =========================================================
   PAGE HERO — DARK VARIANT (Fahrzeugvollfolierung)
   - Hintergrund #141414
   - Eyebrow + Titel mittig, hell
   - Recolor-Controls als vertikales Overlay oben links
     auf dem Foto (Desktop). Mobile bleibt gestackt.
   ========================================================= */

.page-hero {
    background: #141414;
}

.page-hero-head h1 {
    color: #ffffff;
}

.page-hero-head .eyebrow {
    align-self: center;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.page-hero .recolor-note {
    color: rgba(255, 255, 255, 0.6);
}

.recolor-wrap {
    position: relative;
    max-width: 1280px;
    margin: 0 auto 32px;
}

.recolor-wrap .recolor-stage {
    margin: 0;
    max-width: none;
}

@media (min-width: 781px) {
    .recolor-wrap .recolor-controls {
        position: absolute;
        top: 24px;
        left: 24px;
        z-index: 4;
        width: 220px;
        max-width: calc(100% - 48px);
        margin: 0;
        padding: 22px;
        background: rgba(18, 18, 18, 0.72);
        backdrop-filter: blur(20px) saturate(1.3);
        -webkit-backdrop-filter: blur(20px) saturate(1.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.55);
        gap: 14px;
    }

    .recolor-wrap .recolor-controls-head {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
    }

    .recolor-wrap .recolor-controls-label {
        color: #ffffff;
        font-size: 0.95rem;
    }

    .recolor-wrap .recolor-swatches {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 10px;
        width: 100%;
    }

    .recolor-wrap .recolor-swatch {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 2px;
        width: 100%;
        flex: 0 0 auto;
    }

    .recolor-wrap .recolor-swatch:hover {
        transform: translateX(2px);
    }

    .recolor-wrap .recolor-swatch-dot {
        width: 26px;
        height: 26px;
        flex: 0 0 26px;
    }

    .recolor-wrap .recolor-swatch.is-active .recolor-swatch-dot {
        box-shadow:
            inset 0 0 0 1px rgba(0, 0, 0, 0.2),
            0 0 0 2px rgba(18, 18, 18, 0.85),
            0 0 0 4px #ffffff;
    }

    .recolor-wrap .recolor-swatch[data-color="reset"] .recolor-swatch-dot {
        background: #ffffff;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    }

    .recolor-wrap .recolor-swatch[data-color="reset"].is-active .recolor-swatch-dot {
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.4),
            0 0 0 2px rgba(18, 18, 18, 0.85),
            0 0 0 4px #ffffff;
    }

    .recolor-wrap .recolor-swatch-label {
        color: rgba(255, 255, 255, 0.92);
        font-size: 0.82rem;
        text-align: left;
    }

    .recolor-wrap .recolor-custom {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: 14px;
        margin-top: 4px;
    }

    .recolor-wrap .recolor-custom-label {
        color: rgba(255, 255, 255, 0.92);
        font-size: 0.85rem;
    }

    .recolor-wrap .recolor-custom-swatch {
        width: 32px;
        height: 32px;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    }
}

/* Mobile — Controls bleiben unter dem Foto, heller Card-Look auf dunklem Hero */
@media (max-width: 780px) {
    .recolor-wrap .recolor-stage {
        margin-bottom: 18px;
    }
    .recolor-wrap .recolor-controls {
        margin: 0;
    }
}

/* =========================================================
   HERO RESPONSIVE — new right-aligned layout
   ========================================================= */
@media (max-width: 1100px) {
    .hero-foot {
        grid-template-columns: minmax(240px, 320px) 1fr;
        gap: clamp(28px, 5vw, 48px);
    }

    .hero-title {
        font-size: clamp(2.4rem, 6.5vw, 4.5rem);
    }
}

@media (max-width: 780px) {
    .hero-inner {
        padding-top: 110px;
    }

    .hero-title {
        font-size: clamp(2rem, 8.5vw, 2.75rem);
        margin-bottom: 28px;
        letter-spacing: -0.025em;
    }

    .hero-divider {
        margin-bottom: 24px;
    }

    .hero-foot {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-text {
        order: 1;
    }

    .hero-feature {
        order: 2;
    }

    .hero-text > p:not(.hero-lead) {
        font-size: 0.92rem;
        margin-bottom: 18px;
    }

    .hero-cta-row {
        justify-content: flex-end;
        gap: 8px;
    }

    .hero-cta-row .btn {
        flex: 1 1 auto;
        justify-content: center;
    }
}

/* =========================================================
   Section heads — split layout responsive
   ========================================================= */
@media (max-width: 780px) {
    .services-head,
    .process-head,
    .projects-head {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .services-head-left,
    .process-head-left,
    .projects-head-left {
        padding-top: 0;
    }
}
