/* ==========================================
   UNTERNETZZ GMBH – Webseiten-Vorlage v2
   Modern, professionell, DSGVO-konform
   ========================================== */

/* CSS Variables – Markenfarben aus Logo */
:root {
    --color-primary: #7BC142;        /* Logo-Grün */
    --color-primary-dark: #5fa330;
    --color-primary-light: #a1d970;
    --color-primary-soft: #eef7e3;
    --color-secondary: #9c9c9c;       /* Logo-Grau */
    --color-secondary-dark: #6b6b6b;
    --color-secondary-light: #c4c4c4;
    --color-logo-grey: #8a8a8a;       /* kräftiges Grau wie im Logo */
    --color-dark: #1a1a1a;
    --color-darker: #0d0d0d;
    --color-text: #2c2c2c;
    --color-text-light: #6b6b6b;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f9f5;
    --color-bg-dark: #1a1a1a;
    --color-border: #e5e7eb;
    --color-success: #22c55e;
    --color-error: #ef4444;

    --gradient-brand: var(--color-primary);
    --gradient-brand-vivid: var(--color-primary);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13, 13, 13, 0.94) 0%, rgba(26, 26, 26, 0.88) 50%, rgba(95, 163, 48, 0.7) 100%);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-brand: 0 8px 24px -4px rgba(123, 193, 66, 0.4);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    --container-max: 1280px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Selection */
::selection {
    background-color: var(--color-primary);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-alt);
}
::-webkit-scrollbar-thumb {
    background: var(--color-secondary-light);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--gradient-brand-vivid);
    color: white;
    box-shadow: var(--shadow-brand);
    background-size: 200% 200%;
    background-position: 0% 50%;
}

.btn-primary:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(123, 193, 66, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-job {
    background-color: transparent;
    color: var(--color-primary-dark);
    border: 2px solid var(--color-primary);
    padding: 12px 24px;
    font-size: 14px;
    align-self: flex-start;
}

.btn-job:hover {
    background: var(--gradient-brand-vivid);
    color: white;
    border-color: transparent;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.header-container {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo {
    height: 52px;
    width: auto;
    transition: var(--transition);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 1.5px;
    font-weight: 800;
    display: inline-block;
    color: var(--color-primary);
}

/* Logo-Schrift: UNTER in Grün, NETZZ in Grau (passend zum Logo) */
.logo-text-u,
.logo-text-n1,
.logo-text-t,
.logo-text-e,
.logo-text-r,
.logo-text-n2,
.logo-text-e2,
.logo-text-t2,
.logo-text-z1,
.logo-text-z2 {
    color: transparent;
    -webkit-text-fill-color: transparent;
}

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

.nav-list {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 10px 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 2.5px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
}

.lang-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-light);
    border-radius: var(--radius-full);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.lang-link.active {
    background: var(--gradient-brand-vivid);
    color: white;
    box-shadow: var(--shadow-sm);
}

.lang-link:not(.active):hover {
    color: var(--color-primary);
}

.lang-flag {
    font-size: 14px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    color: white;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        var(--gradient-hero),
        url('../assets/images/service-tiefbau.jpg') center/cover;
    z-index: -2;
    animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(123, 193, 66, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(156, 156, 156, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(123, 193, 66, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite alternate;
}

@keyframes particleFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, -10px); }
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 24px;
}

.hero-text {
    max-width: 720px;
}

.hero-tagline {
    display: inline-block;
    padding: 8px 18px;
    background-color: rgba(123, 193, 66, 0.2);
    color: var(--color-primary-light);
    border: 1px solid rgba(123, 193, 66, 0.4);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.hero-title-line {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.6em;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    display: inline-block;
    color: var(--color-primary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 36px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-2xl);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
}

.stat-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-indicator:hover {
    border-color: var(--color-primary);
}

.scroll-indicator span {
    width: 4px;
    height: 8px;
    background-color: white;
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(16px); opacity: 0; }
}

/* ==========================================
   SECTIONS – GENERAL
   ========================================== */
section {
    padding: 110px 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    background-color: var(--color-primary-soft);
    color: var(--color-primary-dark);
    border-radius: var(--radius-full);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(123, 193, 66, 0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.section-header-light .section-title,
.section-header-light .section-subtitle {
    color: white;
}

.section-header-light .section-tag {
    background-color: rgba(123, 193, 66, 0.2);
    color: var(--color-primary-light);
    border-color: rgba(123, 193, 66, 0.3);
}

.section-header-light .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
    background-color: var(--color-bg-alt);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 193, 66, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    position: relative;
}

.service-card {
    background-color: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand-vivid);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(123, 193, 66, 0.15);
}

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

.service-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-number {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-brand-vivid);
    color: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.service-content {
    padding: 32px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.service-description {
    color: var(--color-text-light);
    margin-bottom: 22px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 28px;
    flex: 1;
}

.service-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.92rem;
    color: var(--color-text);
    line-height: 1.5;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-color: var(--color-primary-soft);
    border-radius: 50%;
}

.service-features li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 11px;
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

/* Dezentes Empfehlungs-Badge in Service-Karte */
.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    margin-bottom: 16px;
    background-color: var(--color-primary-soft);
    border: 1px solid rgba(123, 193, 66, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    align-self: flex-start;
}

.service-badge-icon {
    font-size: 0.85rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    align-self: flex-start;
}

.service-link:hover {
    gap: 6px;
    color: var(--color-primary);
}

/* ==========================================
   PROZESS / TIMELINE
   ========================================== */
.process {
    background:
        linear-gradient(180deg, white 0%, var(--color-bg-alt) 100%);
    position: relative;
    overflow: hidden;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 33px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 2px;
}

.timeline-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    background: var(--gradient-brand-vivid);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: var(--shadow-brand);
    position: relative;
    z-index: 2;
    transition: var(--transition-bounce);
}

.timeline-step:hover .timeline-icon {
    transform: scale(1.1) rotate(-5deg);
}

.timeline-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px dashed rgba(123, 193, 66, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.timeline-step:hover .timeline-content {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
    border-color: rgba(123, 193, 66, 0.2);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ==========================================
   ÜBER UNS
   ========================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 36px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Dezenter Akzent für Werkzeug-Hinweis */
.about-accent {
    margin-top: 28px;
    padding: 12px 18px;
    background-color: var(--color-primary-soft);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.about-accent strong {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.about-accent-icon {
    font-size: 1.05rem;
    flex-shrink: 0;
}

.value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 4px;
    transition: var(--transition);
}

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

.value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--gradient-brand-vivid);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: var(--shadow-brand);
    font-size: 18px;
}

.value h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.value p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123, 193, 66, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gradient-brand-vivid);
    color: white;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    text-align: center;
    z-index: 2;
}

.badge-year {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 4px;
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

/* ==========================================
   TOOL-SECTION (kompakte Smartbaupro-Empfehlung)
   ========================================== */
.tool-section {
    padding: 80px 0;
    background-color: white;
}

.tool-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--color-bg-alt);
    padding: 44px 48px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-brand-vivid);
}

.tool-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background-color: var(--color-primary-soft);
    color: var(--color-primary-dark);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    border: 1px solid rgba(123, 193, 66, 0.2);
}

.tool-card-text h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.tool-card-text p {
    color: var(--color-text-light);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.tool-features-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary-dark);
    margin-top: 24px;
    margin-bottom: 14px;
}

.tool-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.tool-features li {
    position: relative;
    padding-left: 26px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.4;
}

.tool-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--gradient-brand-vivid);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.tool-card-image {
    position: relative;
}

.browser-mini {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.browser-mini:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.browser-mini-bar {
    background: linear-gradient(180deg, #e5e7eb 0%, #d1d5db 100%);
    padding: 9px 14px;
    display: flex;
    gap: 7px;
}

.browser-mini-bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #bbb;
}

.browser-mini-bar span:nth-child(1) { background-color: #ff5f56; }
.browser-mini-bar span:nth-child(2) { background-color: #ffbd2e; }
.browser-mini-bar span:nth-child(3) { background-color: #27c93f; }

.browser-mini img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

@media (max-width: 900px) {
    .tool-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 28px;
    }

    .tool-card-text h3 {
        font-size: 1.45rem;
    }

    .tool-features {
        grid-template-columns: 1fr;
    }

    .browser-mini img {
        height: 220px;
    }
}

/* ==========================================
   JOBS
   ========================================== */
.jobs {
    background-color: var(--color-bg-alt);
    position: relative;
}

.jobs::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(156, 156, 156, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    position: relative;
}

.job-card {
    background-color: white;
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(123, 193, 66, 0.04) 100%);
    opacity: 0;
    transition: var(--transition);
}

.job-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.job-card:hover::before {
    opacity: 1;
}

.job-header {
    margin-bottom: 20px;
    position: relative;
}

.job-tag {
    display: inline-block;
    padding: 7px 16px;
    background-color: var(--color-primary-soft);
    color: var(--color-primary-dark);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 1px solid rgba(123, 193, 66, 0.2);
}

.job-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    position: relative;
}

.job-description {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 28px;
    flex: 1;
    position: relative;
}

/* ==========================================
   KONTAKT
   ========================================== */
.contact {
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 193, 66, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(156, 156, 156, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info h3,
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: white;
}

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

.contact-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: rgba(123, 193, 66, 0.15);
    border: 1px solid rgba(123, 193, 66, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-list strong {
    display: block;
    color: var(--color-primary-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-list p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.contact-list a:hover {
    color: var(--color-primary-light);
}

.contact-form {
    background-color: white;
    padding: 44px;
    border-radius: var(--radius-xl);
    color: var(--color-text);
    box-shadow: var(--shadow-2xl);
}

.contact-form h3 {
    color: var(--color-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition);
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(123, 193, 66, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 4px;
    accent-color: var(--color-primary);
}

.form-checkbox label {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.form-checkbox label a {
    color: var(--color-primary-dark);
    font-weight: 600;
    text-decoration: underline;
}

.form-checkbox label a:hover {
    color: var(--color-primary);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--color-darker);
    color: rgba(255, 255, 255, 0.7);
    padding: 90px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

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

.footer-logo img {
    height: 48px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.brand-green {
    color: var(--color-primary);
}

.brand-gray {
    color: var(--color-primary);
}

.footer-tagline {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: white;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}

.footer-col a:hover {
    color: var(--color-primary);
    padding-left: 6px;
}

.footer-col address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col address strong {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.9rem;
}

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

.footer-legal a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

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

/* ==========================================
   COOKIE BANNER
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: white;
    border-top: 4px solid var(--color-primary);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    padding: 28px 24px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 32px;
    align-items: center;
}

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-cookie-accept {
    background: var(--gradient-brand-vivid);
    color: white;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.btn-cookie-save {
    background-color: var(--color-bg-alt);
    color: var(--color-text);
    border: 2px solid var(--color-border);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-cookie-save:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.btn-cookie-reject {
    background: none;
    color: var(--color-text-light);
    padding: 8px 20px;
    font-size: 0.85rem;
    text-decoration: underline;
}

.btn-cookie-reject:hover {
    color: var(--color-text);
}

/* ==========================================
   MODAL
   ========================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: white;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-content-small {
    max-width: 600px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.modal-close:hover {
    background: var(--color-primary);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 48px 44px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-body h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--color-primary);
    display: inline-block;
}

.modal-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-top: 28px;
    margin-bottom: 12px;
}

.modal-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 20px;
    margin-bottom: 8px;
}

.modal-body p,
.modal-body ul {
    margin-bottom: 14px;
    color: var(--color-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

.modal-body ul {
    padding-left: 24px;
}

.modal-body ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.modal-body a {
    color: var(--color-primary-dark);
    font-weight: 600;
    text-decoration: underline;
}

.modal-body a:hover {
    color: var(--color-primary);
}

.modal-note {
    margin-top: 28px;
    padding: 18px 22px;
    background-color: rgba(123, 193, 66, 0.08);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.modal-note strong {
    color: var(--color-primary-dark);
    display: block;
    margin-bottom: 4px;
}

.modal-date {
    margin-top: 32px;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* Cookie Switch */
.cookie-detail {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    align-items: flex-start;
}

.cookie-detail:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.cookie-detail h4 {
    font-size: 1.05rem;
    margin-top: 0;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.cookie-detail p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 4px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: var(--color-secondary-light);
    transition: var(--transition);
    border-radius: 28px;
}

.switch-slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.cookie-switch input:checked + .switch-slider {
    background: var(--gradient-brand-vivid);
}

.cookie-switch input:checked + .switch-slider::before {
    transform: translateX(22px);
}

.cookie-switch input:disabled + .switch-slider {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background: var(--gradient-brand-vivid);
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 32px -4px rgba(123, 193, 66, 0.5);
}

/* ==========================================
   TOOL-HINT (kompakte Smartbaupro-Notiz)
   ========================================== */
.tool-hint {
    padding: 50px 0;
    background-color: var(--color-bg-alt);
}

.tool-hint-card {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 36px 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.tool-hint-content {
    max-width: 540px;
}

.tool-hint-tag {
    display: inline-block;
    padding: 5px 14px;
    background-color: var(--color-primary-soft);
    color: var(--color-primary-dark);
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(123, 193, 66, 0.2);
}

.tool-hint-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.tool-hint-content p {
    color: var(--color-text-light);
    font-size: 0.96rem;
    line-height: 1.6;
}

.tool-hint-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.tool-hint-image:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.tool-hint-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

@media (max-width: 768px) {
    .tool-hint-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 24px;
    }

    .tool-hint-image img {
        height: 160px;
    }
}

/* ==========================================
   SMARTBAUPRO SECTION (legacy – wird nicht mehr genutzt)
   ========================================== */
.smartbaupro {
    position: relative;
    background:
        linear-gradient(180deg, var(--color-bg-alt) 0%, white 100%);
    overflow: hidden;
}

.smartbaupro-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 25%, rgba(123, 193, 66, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(156, 156, 156, 0.06) 0%, transparent 50%);
}

.smartbaupro .container {
    position: relative;
    z-index: 1;
}

.section-tag-smart {
    background: var(--gradient-brand-vivid);
    color: white;
    border-color: transparent;
}

/* Hero-Bereich der Sektion */
.smartbaupro-hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.smartbaupro-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.smartbaupro-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 18px;
    font-weight: 500;
}

.smartbaupro-text p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.smartbaupro-subheading {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-dark);
    text-align: center;
    margin: 80px 0 40px;
    letter-spacing: -0.5px;
    position: relative;
}

.smartbaupro-subheading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient-brand-vivid);
    border-radius: 3px;
    margin: 14px auto 0;
}

/* Browser-Frame für Screenshots */
.browser-frame {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.browser-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.browser-bar {
    background: linear-gradient(180deg, #e5e7eb 0%, #d1d5db 100%);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.browser-url {
    margin-left: 14px;
    padding: 4px 14px;
    background: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    flex: 1;
    max-width: 280px;
}

.browser-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Vorteile-Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.advantage-card {
    background: white;
    padding: 32px 28px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-brand-vivid);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(123, 193, 66, 0.15);
}

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

.advantage-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(123, 193, 66, 0.15) 0%, rgba(123, 193, 66, 0.05) 100%);
    color: var(--color-primary-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-bounce);
}

.advantage-card:hover .advantage-icon {
    background: var(--gradient-brand-vivid);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.advantage-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.advantage-card p {
    color: var(--color-text-light);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* Gewerke-Übersicht */
.trades-section {
    background: var(--gradient-dark);
    color: white;
    padding: 60px 50px;
    border-radius: var(--radius-xl);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.trades-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(123, 193, 66, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.trades-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.trades-header h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.trades-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

.trades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}

.trade-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.trade-item:hover {
    background: rgba(123, 193, 66, 0.15);
    border-color: rgba(123, 193, 66, 0.4);
    transform: translateX(4px);
}

.trade-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

/* Screenshot-Galerie */
.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.screenshot-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
    border: 1px solid var(--color-border);
    margin: 0;
}

.screenshot-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(123, 193, 66, 0.2);
}

.screenshot-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: top center;
    border-bottom: 1px solid var(--color-border);
}

.screenshot-item figcaption {
    padding: 18px 22px;
}

.screenshot-item figcaption strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.screenshot-item figcaption span {
    color: var(--color-text-light);
    font-size: 0.88rem;
}

/* CTA-Bereich */
.smartbaupro-cta {
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-primary-soft);
    position: relative;
    overflow: hidden;
}

.smartbaupro-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123, 193, 66, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.smartbaupro-cta::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(156, 156, 156, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.smartbaupro-cta h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    position: relative;
}

.smartbaupro-cta p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.smartbaupro-cta .btn {
    position: relative;
}

/* Text-Stat (für nicht-numerische Stats wie "Digital", "Familien-geführt") */
.stat-text {
    font-size: 1.6rem !important;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 1 !important;
}

.fade-in-delay-1 { animation-delay: 0.15s; }
.fade-in-delay-2 { animation-delay: 0.3s; }
.fade-in-delay-3 { animation-delay: 0.45s; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .cookie-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .smartbaupro-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .browser-frame {
        transform: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 88%;
        max-width: 380px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 24px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 4px;
    }

    .nav-link {
        display: block;
        padding: 14px 16px;
        font-size: 1.05rem;
        width: 100%;
        text-align: left;
    }

    .nav-link.active::after {
        display: none;
    }

    .lang-switcher {
        width: auto;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 60px;
    }

    .hero-content {
        padding: 20px 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .section-header {
        margin-bottom: 48px;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .about-badge {
        bottom: -16px;
        right: 16px;
        padding: 18px 24px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .timeline-step {
        gap: 20px;
        margin-bottom: 36px;
    }

    .timeline-icon {
        width: 56px;
        height: 56px;
        font-size: 1.1rem;
    }

    .process-timeline::before {
        left: 27px;
    }

    .timeline-content {
        padding: 22px 24px;
    }

    .modal-body {
        padding: 60px 24px 32px;
    }

    .modal-body h2 {
        font-size: 1.5rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
    }

    .cookie-banner {
        padding: 20px 16px;
    }

    .smartbaupro-text h3 {
        font-size: 1.5rem;
    }

    .trades-section {
        padding: 40px 24px;
    }

    .smartbaupro-cta {
        padding: 36px 24px;
    }

    .smartbaupro-subheading {
        font-size: 1.4rem;
        margin: 60px 0 32px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }

    .logo {
        height: 44px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .service-content {
        padding: 24px 20px;
    }

    .job-card {
        padding: 28px 22px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-bg,
    .timeline-icon::before {
        animation: none;
    }
}

*:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.btn:focus-visible {
    outline-offset: 4px;
}
