/* ===== EasyFix Berlin — B2B Subunternehmer Koordination ===== */
/* v3.0 — Full B2B Redesign */

:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7F7F5;
    --bg-tertiary: #F0F0EC;
    --bg-card: #FFFFFF;
    --bg-dark: #0f1114;
    --bg-dark-card: #181b20;

    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-tertiary: #999999;

    --accent: #C2B280;
    --accent-light: #d4c898;
    --accent-dark: #a89a6a;
    --accent-glow: rgba(194, 178, 128, 0.12);

    --border: #E5E5E5;
    --border-hover: rgba(194, 178, 128, 0.5);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.10);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar .logo-my,
.navbar .nav-links a {
    color: #FFFFFF;
    transition: var(--transition);
}

.navbar .hamburger span {
    background: #FFFFFF;
}

.navbar .logo-city {
    color: rgba(255,255,255,0.5);
}

.navbar .nav-cta {
    background: transparent;
    color: #FFFFFF !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.navbar.scrolled .logo-my {
    color: var(--text-primary);
}

.navbar.scrolled .nav-links a {
    color: var(--text-secondary);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--text-primary);
}

.navbar.scrolled .logo-city {
    color: var(--text-tertiary);
}

.navbar.scrolled .hamburger span {
    background: var(--text-primary);
}

.navbar.scrolled .nav-cta {
    background: #000000;
    color: #FFFFFF !important;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.logo-my {
    color: var(--text-primary);
    font-weight: 800;
}

.logo-bau {
    color: var(--accent);
    font-weight: 800;
}

.logo-city {
    font-size: 0.6em;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    letter-spacing: 0.01em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-cta {
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.02em;
    border: none !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== DROPDOWN NAV ===== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-icon {
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #FFFFFF;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1005;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a::after {
    display: none; /* remove the underline effect */
}

.dropdown-menu a:hover {
    color: var(--accent);
    background: rgba(194, 178, 128, 0.05);
}

/* On dark navbar (not scrolled), ensure dropdown text is dark */
.navbar:not(.scrolled) .dropdown-menu a {
    color: var(--text-secondary);
}
.navbar:not(.scrolled) .dropdown-menu a:hover {
    color: var(--accent);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background-color: #0a0a0a;
}

.hero-bg-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, transparent 0%, rgba(10, 10, 10, 0.6) 100%),
        radial-gradient(ellipse 50% 80% at 80% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 720px;
    padding: 160px 32px 120px;
    margin-left: max(32px, calc((100vw - 1300px) / 2 + 32px));
}

.hero-badge {
    display: inline-block;
    background: rgba(194, 178, 128, 0.15);
    border: 1px solid rgba(194, 178, 128, 0.3);
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0s both;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
    color: #FFFFFF;
}

.hero-highlight {
    color: var(--accent-light);
    -webkit-text-fill-color: var(--accent-light);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.8);
    max-width: 580px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    font-weight: 400;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* ===== STATS BAR ===== */
.stats-bar {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding: 0 24px;
}

.stats-inner {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 36px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.03em;
    display: inline;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    display: inline;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: #000000 !important;
    color: #FFFFFF !important;
    padding: 14px 32px;
}

.btn-primary:hover {
    background: #222222 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-outline-hero {
    background: transparent;
    color: #FFFFFF !important;
    border: 1.5px solid rgba(255,255,255,0.3) !important;
    padding: 14px 32px;
}

.btn-outline-hero:hover {
    border-color: var(--accent) !important;
    background: rgba(194, 178, 128, 0.15) !important;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

.contact-info .section-title::after {
    margin: 20px 0 0;
    background: rgba(255,255,255,0.4);
}

.about-title::after {
    margin: 20px 0 0;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

/* ===== SERVICES ===== */
.services {
    background: var(--bg-primary);
    padding: 100px 0;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.premium-service-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.premium-service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.premium-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.psc-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-bottom: 2px solid var(--accent);
}

.psc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.premium-service-card:hover .psc-bg {
    transform: scale(1.06);
}

.psc-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.psc-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
    letter-spacing: -0.01em;
}

.psc-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 32px;
    flex-grow: 1;
}

.psc-btn {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    transition: color 0.3s ease;
    display: inline-block;
}

.premium-service-card:hover .psc-btn {
    color: var(--accent);
}

/* ===== PROCESS (GRID LAYOUT) ===== */
.process {
    background: var(--bg-dark);
    color: #FFFFFF;
}

.process .section-tag {
    color: var(--accent-light);
}

.process .section-title {
    color: #FFFFFF;
}

.process .section-title::after {
    background: var(--accent);
}

.process .section-subtitle {
    color: rgba(255,255,255,0.6);
}

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

.process-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.process-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-card:hover {
    border-color: rgba(194, 178, 128, 0.3);
    transform: translateY(-4px);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(194, 178, 128, 0.2);
    line-height: 1;
    margin-bottom: 16px;
    transition: var(--transition);
}

.process-card:hover .process-number {
    color: rgba(194, 178, 128, 0.4);
}

.process-icon {
    width: 48px;
    height: 48px;
    background: rgba(194, 178, 128, 0.1);
    border: 1px solid rgba(194, 178, 128, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-light);
}

.process-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
    hyphens: auto;
}

.process-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

/* ===== ABOUT US ===== */
.about {
    background: var(--bg-secondary);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateX(-30px);
}

.about-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-content .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.about-title {
    text-align: left;
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
}

.about-visual {
    opacity: 0;
    transform: translateX(30px);
}

.about-visual.visible {
    opacity: 1;
    transform: translateX(0);
}

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

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

.about-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(194, 178, 128, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
}

.about-badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.about-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    color: rgba(255,255,255,0.7);
}

/* ===== WHY US ===== */
.why-us {
    background: var(--bg-primary);
}

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

.why-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-glow);
    border: 1px solid rgba(194, 178, 128, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-dark);
}

.why-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.why-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===== REFERENCES / REVIEWS ===== */
.references {
    background: var(--bg-secondary);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding: 24px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    opacity: 0;
    transform: translateY(20px);
}

.trust-badges.visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: #FBBC05;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-primary);
}

.author-meta {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* ===== CONTACT ===== */
.contact {
    position: relative;
    background: var(--bg-dark) !important;
    padding: 0 !important;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-construction.png') center center / cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.contact-info {
    padding-right: 60px;
}

.contact-info .section-title {
    text-align: left;
    font-size: 2rem;
    color: #FFFFFF;
}

.contact-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 24px 0 40px;
}

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

.contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255,255,255,0.6);
}

.contact-item-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 2px;
}

.contact-item-value {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.contact-item-value:hover {
    color: var(--accent);
}

.contact-trust {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-trust p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
}

/* ===== FORM ===== */
.contact-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-form h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    margin: 14px 0;
    border-radius: 2px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border);
    border-radius: 0;
    padding: 10px 0;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
}

.form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

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

.form-note {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    margin-top: 12px;
    text-align: center;
}

.btn-text,
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    animation: spin 1s linear infinite;
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success .success-icon {
    width: 64px;
    height: 64px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success .success-icon svg {
    stroke: #22c55e;
    width: 32px;
    height: 32px;
}

.form-success h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-success h3::after {
    display: none;
}

.form-success p {
    color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0a0a;
    border-top: none;
    padding: 64px 0 32px;
    color: #FFFFFF;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start;
}

.footer-tagline {
    color: rgba(255,255,255,0.5);
    margin-top: 12px;
    font-size: 0.88rem;
}

.footer-logo-link {
    text-decoration: none;
    display: inline-block;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}

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

.footer-links a,
.footer-links li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.social-link svg {
    fill: currentColor;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 46px;
    height: 46px;
    background: var(--bg-dark);
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-content {
        order: 1;
    }

    .about-visual {
        order: 2;
    }

    .about-title {
        text-align: center;
    }

    .about-title::after {
        margin: 20px auto 0;
    }

    .about-content .section-tag {
        text-align: center;
        display: block;
    }

    .about-text {
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info {
        padding-right: 0;
    }

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

    .hero-content {
        margin-left: 32px;
    }

    .stats-inner {
        flex-wrap: wrap;
        gap: 24px;
        padding: 32px 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--text-primary) !important;
    }

    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding: 120px 24px 80px;
        margin-left: 0;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        text-align: center;
        justify-content: center;
    }

    .stats-bar {
        margin-top: -40px;
        padding: 0 16px;
    }

    .stats-inner {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
    }

    .stat-item {
        flex: auto;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 8px;
        text-align: left;
    }

    .stat-label {
        margin-top: 0;
    }

    .section {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-checklist {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper img {
        height: 320px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

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

    .contact-form {
        padding: 28px;
    }

    .contact-info .section-title {
        font-size: 1.8rem;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-badge {
        font-size: 0.7rem;
    }

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

    .service-icon {
        height: 120px;
    }
}

.service-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 2px solid var(--accent);
    transition: transform 0.5s ease;
}

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

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,17,20,0) 0%, rgba(15,17,20,0.8) 100%);
}

.service-content {
    padding: 24px;
    position: relative;
    z-index: 2;
    background: var(--bg-card);
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(194,178,128,0.15);
    border-color: rgba(194,178,128,0.4);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

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

/* ENHANCED GLOWING PROCESS SECTION */
.process-grid {
    position: relative;
    z-index: 1;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), #00f0ff, transparent);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5), 0 0 30px rgba(194, 178, 128, 0.3);
    z-index: -1;
    opacity: 0.6;
    animation: pulseLine 4s infinite alternate;
}

@keyframes pulseLine {
    0% { opacity: 0.3; transform: scaleY(1); }
    100% { opacity: 0.8; transform: scaleY(1.5); }
}

.process-card {
    background: rgba(20, 22, 26, 0.85) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    transition: all 0.4s ease !important;
}

.process-card:hover {
    border-color: rgba(0, 240, 255, 0.3) !important;
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.15), inset 0 0 20px rgba(0,240,255,0.05) !important;
    transform: translateY(-8px) !important;
}

.process-number {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    position: absolute;
    top: 10px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent), #00f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15 !important;
    transition: opacity 0.4s ease;
}

.process-card:hover .process-number {
    opacity: 0.4 !important;
}

.process-icon {
    margin-bottom: 24px !important;
    position: relative;
    display: inline-block;
}

.process-icon svg {
    width: 48px !important;
    height: 48px !important;
    stroke: var(--accent) !important;
    filter: drop-shadow(0 0 8px rgba(194, 178, 128, 0.4));
    transition: all 0.4s ease;
}

.process-card:hover .process-icon svg {
    stroke: #00f0ff !important;
    filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.6));
    transform: scale(1.1);
}

.process-card h3 {
    font-size: 1.2rem !important;
    margin-bottom: 16px !important;
    color: #fff !important;
}

/* Partner Grid Specifics */
.partner-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 40px;
}
.partner-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    cursor: pointer;
}
.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.partner-link-text {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: var(--transition);
}
.partner-card:hover .partner-link-text {
    opacity: 1;
    transform: translateX(5px);
}

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

/* ===== RESPONSIVE FIXES FOR LEISTUNGEN & DROPDOWN ===== */
@media (max-width: 1024px) {
    .premium-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-services-grid {
        grid-template-columns: 1fr;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        min-width: 100%;
        padding: 0;
        margin-top: 10px;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        text-align: center;
        padding: 12px;
        font-size: 1.1rem !important;
        color: var(--text-secondary) !important;
    }
}
