/* ==================== Local Google Fonts: Inter ==================== */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/inter-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/inter-800.woff2') format('woff2');
}

/* ==================== Technik-Spezl Waveflow-Style Design System ==================== */
:root {
    /* Colors */
    --cb-navy: #0A2540;
    --cb-navy-light: #0f3258;
    --cb-cyan: #00B4D8;
    --cb-cyan-hover: #009dbd;
    --cb-light-blue: #90E0EF;
    --cb-white: #ffffff;
    --cb-beige: #f0f4f8;
    --cb-beige-alt: #e8edf3;
    --cb-text: #1e293b;
    --cb-text-light: #64748b;
    --cb-text-muted: #7a7d85;
    --cb-border: #d6cfc5;
    --cb-card-bg: #ffffff;

    /* Radius */
    --cb-radius: 18px;
    --cb-radius-sm: 10px;
    --cb-radius-lg: 24px;

    /* Shadows (Navy-based) */
    --cb-shadow-sm: 0 2px 8px rgba(10,37,64,0.06);
    --cb-shadow-md: 0 4px 16px rgba(10,37,64,0.08);
    --cb-shadow-lg: 0 8px 32px rgba(10,37,64,0.12);

    /* Transitions */
    --cb-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    /* Container */
    --cb-container: 1240px;
    --cb-container-padding: 28px;
}

/* ==================== Reset & Base ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--cb-text);
    line-height: 1.65;
    background: var(--cb-beige);
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { transition: color var(--cb-transition); }

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ==================== Utility ==================== */
.cb-kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cb-cyan);
    margin-bottom: 12px;
}
.cb-container {
    max-width: var(--cb-container);
    margin: 0 auto;
    padding: 0 var(--cb-container-padding);
}

/* ==================== NAVIGATION — Glassmorphism ==================== */
.cb-nav {
    background: rgba(240,244,248,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(214,207,197,0.6);
}
.cb-nav-inner {
    max-width: var(--cb-container);
    margin: 0 auto;
    padding: 0 var(--cb-container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.cb-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.cb-logo img {
    height: 60px;
    width: auto;
}
.cb-logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cb-navy);
    letter-spacing: -0.01em;
}
.cb-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.cb-nav-links a {
    color: var(--cb-text-muted);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: var(--cb-radius-sm);
    font-size: 1.05rem;
    font-weight: 500;
    transition: all var(--cb-transition);
}
.cb-nav-links a:hover {
    color: var(--cb-text);
    background: rgba(10,37,64,0.05);
}
.cb-nav-links a.active {
    color: var(--cb-text);
    background: rgba(10,37,64,0.07);
}
.cb-nav-cta {
    background: var(--cb-cyan) !important;
    color: var(--cb-white) !important;
    font-weight: 600 !important;
}
.cb-nav-cta:hover {
    background: var(--cb-cyan-hover) !important;
    color: var(--cb-white) !important;
}
.cb-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cb-navy);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

/* ==================== HERO (Startseite) — Animated Gradient ==================== */
.cb-hero {
    position: relative;
    background: linear-gradient(135deg, var(--cb-navy) 0%, var(--cb-navy-light) 40%, var(--cb-cyan) 100%);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
    color: #fff;
    text-align: center;
    padding: 130px 28px 110px;
    overflow: hidden;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.cb-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(144,224,239,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.cb-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(0,180,216,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cb-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}
.cb-hero .cb-kicker {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    letter-spacing: 0.15em;
}
.cb-hero h1 {
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}
.cb-hero .cb-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.cb-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.cb-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cb-cyan);
    color: #fff;
    padding: 15px 34px;
    border-radius: var(--cb-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0,180,216,0.3);
    transition: all var(--cb-transition);
}
.cb-btn-primary:hover {
    background: var(--cb-cyan-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,180,216,0.4);
}
.cb-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: var(--cb-radius-sm);
    transition: all var(--cb-transition);
}
.cb-btn-ghost:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
}

/* ==================== SECTIONS ==================== */
.cb-section {
    padding: 100px var(--cb-container-padding);
    max-width: var(--cb-container);
    margin: 0 auto;
}
.cb-section-alt {
    background: var(--cb-beige-alt);
}
.cb-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}
.cb-section-title {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--cb-text);
    margin-bottom: 14px;
}
.cb-section-desc {
    text-align: center;
    color: var(--cb-text-light);
    max-width: 580px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==================== SERVICE CARDS ==================== */
.cb-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cb-service-card {
    background: var(--cb-card-bg);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius);
    padding: 34px 28px;
    transition: all var(--cb-transition);
    position: relative;
}
.cb-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--cb-cyan);
    border-radius: 0 0 2px 2px;
    opacity: 0;
    transition: opacity var(--cb-transition);
}
.cb-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cb-shadow-lg);
    border-color: transparent;
}
.cb-service-card:hover::before {
    opacity: 1;
}
.cb-service-card h3 {
    font-size: 1.08rem;
    font-weight: 650;
    margin-bottom: 8px;
    color: var(--cb-navy);
}
.cb-service-card p {
    color: var(--cb-text-light);
    line-height: 1.6;
    margin-bottom: 14px;
    font-size: 0.93rem;
}
.cb-service-price {
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--cb-cyan);
}

.cb-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cb-cyan);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap var(--cb-transition);
}
.cb-link-arrow:hover {
    gap: 10px;
}

/* ==================== PROCESS SECTION ==================== */
.cb-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    counter-reset: process;
}
.cb-process-step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}
.cb-process-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    background: var(--cb-navy);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
}
.cb-process-step h3 {
    font-size: 1.05rem;
    font-weight: 650;
    margin-bottom: 8px;
    color: var(--cb-text);
}
.cb-process-step p {
    color: var(--cb-text-light);
    font-size: 0.93rem;
    line-height: 1.6;
}
/* Connector line between steps */
.cb-process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 58px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: var(--cb-border);
}

/* ==================== PRICING HIGHLIGHTS ==================== */
.cb-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.cb-pricing-card {
    background: var(--cb-card-bg);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--cb-transition);
}
.cb-pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--cb-shadow-md);
}
.cb-pricing-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--cb-navy);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.cb-pricing-label {
    font-size: 0.92rem;
    color: var(--cb-text-light);
    margin-bottom: 12px;
}
.cb-pricing-desc {
    font-size: 0.9rem;
    color: var(--cb-text-muted);
    line-height: 1.5;
}

/* ==================== USPs / Warum Technik-Spezl ==================== */
.cb-usps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.cb-usp {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--cb-radius);
    background: var(--cb-card-bg);
    border: 1px solid var(--cb-border);
    transition: all var(--cb-transition);
}
.cb-usp:hover {
    transform: translateY(-3px);
    box-shadow: var(--cb-shadow-md);
    border-color: transparent;
}
.cb-usp-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,180,216,0.08);
    border-radius: 16px;
    color: var(--cb-cyan);
}
.cb-usp-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--cb-cyan);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.cb-usp h3 {
    font-size: 1.05rem;
    font-weight: 650;
    margin-bottom: 8px;
    color: var(--cb-text);
}
.cb-usp p {
    color: var(--cb-text-light);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* ==================== CTA BANNER — Gradient ==================== */
.cb-cta-banner {
    background: linear-gradient(135deg, var(--cb-navy) 0%, var(--cb-navy-light) 50%, var(--cb-cyan) 100%);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
    color: #fff;
    text-align: center;
    padding: 88px 28px;
    position: relative;
    overflow: hidden;
}
.cb-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(144,224,239,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cb-cta-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
}
.cb-cta-banner p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    position: relative;
}
.cb-cta-banner .cb-btn-primary {
    position: relative;
}

/* ==================== PAGE HERO (Unterseiten) — Gradient ==================== */
.cb-page-hero {
    background: linear-gradient(135deg, var(--cb-navy) 0%, var(--cb-navy-light) 50%, var(--cb-cyan) 100%);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
    color: #fff;
    text-align: center;
    padding: 96px 28px 72px;
    position: relative;
    overflow: hidden;
}
.cb-page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(144,224,239,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cb-page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    position: relative;
}
.cb-page-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    position: relative;
}
.cb-page-hero .cb-kicker {
    color: rgba(255,255,255,0.6);
    position: relative;
}

/* ==================== LEISTUNGEN ==================== */
.cb-content {
    max-width: 1040px;
    margin: 0 auto;
    padding: 80px var(--cb-container-padding);
}

.cb-category-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cb-text);
    margin: 56px 0 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cb-cyan);
    display: inline-block;
}
.cb-category-title:first-of-type { margin-top: 0; }
.cb-category-desc {
    color: var(--cb-text-light);
    margin-bottom: 28px;
    font-size: 1rem;
}

.cb-service-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 40px;
    background: var(--cb-card-bg);
    border-radius: var(--cb-radius);
    overflow: hidden;
    border: 1px solid var(--cb-border);
    box-shadow: var(--cb-shadow-sm);
}
.cb-service-table th {
    background: var(--cb-beige-alt);
    padding: 16px 22px;
    text-align: left;
    font-weight: 600;
    color: var(--cb-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.cb-service-table td {
    padding: 16px 22px;
    border-bottom: 1px solid rgba(214,207,197,0.5);
    color: var(--cb-text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}
.cb-service-table tr:last-child td {
    border-bottom: none;
}
.cb-service-table tr:hover td {
    background: rgba(0,180,216,0.02);
}
.cb-service-table td:first-child {
    font-weight: 600;
    color: var(--cb-text);
    white-space: nowrap;
}
.cb-service-table td:last-child {
    font-weight: 600;
    color: var(--cb-cyan);
    white-space: nowrap;
    text-align: right;
}

.cb-info-box {
    background: var(--cb-card-bg);
    border-left: 3px solid var(--cb-cyan);
    padding: 22px 26px;
    border-radius: 0 var(--cb-radius) var(--cb-radius) 0;
    margin: 32px 0;
    font-size: 0.95rem;
    line-height: 1.65;
    box-shadow: var(--cb-shadow-sm);
}
.cb-info-box strong { color: var(--cb-navy); }

.cb-cta-section {
    background: linear-gradient(135deg, var(--cb-navy) 0%, var(--cb-navy-light) 60%, var(--cb-cyan) 100%);
    color: #fff;
    text-align: center;
    padding: 52px 36px;
    border-radius: var(--cb-radius);
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}
.cb-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(144,224,239,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cb-cta-section h2 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    position: relative;
}
.cb-cta-section p {
    opacity: 0.85;
    margin-bottom: 24px;
    position: relative;
}
.cb-cta-section a {
    display: inline-block;
    background: var(--cb-cyan);
    color: #fff;
    padding: 13px 32px;
    border-radius: var(--cb-radius-sm);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all var(--cb-transition);
}
.cb-cta-section a:hover {
    background: var(--cb-cyan-hover);
    transform: translateY(-2px);
}

/* ==================== UBER UNS ==================== */
.cb-about-content {
    max-width: 840px;
    margin: 0 auto;
    padding: 80px var(--cb-container-padding);
}
.cb-about-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cb-text);
    margin: 48px 0 14px;
}
.cb-about-content h2:first-of-type { margin-top: 0; }
.cb-about-content p {
    color: var(--cb-text-light);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 1.02rem;
}

.cb-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 28px 0;
}
.cb-value {
    background: var(--cb-card-bg);
    border-radius: var(--cb-radius);
    padding: 30px;
    border: 1px solid var(--cb-border);
    transition: all var(--cb-transition);
}
.cb-value:hover {
    border-color: rgba(0,180,216,0.2);
    box-shadow: var(--cb-shadow-md);
    transform: translateY(-2px);
}
.cb-value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,180,216,0.08);
    border-radius: 14px;
    color: var(--cb-cyan);
}
.cb-value-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--cb-cyan);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.cb-value h3 {
    font-size: 1.02rem;
    font-weight: 650;
    color: var(--cb-text);
    margin-bottom: 6px;
}
.cb-value p {
    color: var(--cb-text-light);
    line-height: 1.6;
    font-size: 0.92rem;
    margin: 0;
}

.cb-cta-inline {
    background: var(--cb-card-bg);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius);
    padding: 44px;
    text-align: center;
    margin-top: 48px;
}
.cb-cta-inline h2 {
    color: var(--cb-navy);
    margin-bottom: 10px;
    font-size: 1.4rem;
}
.cb-cta-inline p {
    color: var(--cb-text-light);
    margin-bottom: 22px;
}
.cb-cta-inline a {
    display: inline-block;
    background: var(--cb-cyan);
    color: #fff;
    padding: 13px 32px;
    border-radius: var(--cb-radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--cb-transition);
}
.cb-cta-inline a:hover {
    background: var(--cb-cyan-hover);
    transform: translateY(-2px);
}

/* ==================== KONTAKT ==================== */
.cb-contact-wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px var(--cb-container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}
.cb-contact-info h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cb-text);
    margin-bottom: 28px;
}
.cb-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}
.cb-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,180,216,0.08);
    border-radius: 14px;
}
.cb-contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--cb-cyan);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.cb-contact-item h3 {
    font-size: 0.95rem;
    font-weight: 650;
    color: var(--cb-text);
    margin-bottom: 2px;
}
.cb-contact-item p,
.cb-contact-item a {
    color: var(--cb-text-light);
    text-decoration: none;
    line-height: 1.5;
    font-size: 0.95rem;
}
.cb-contact-item a:hover { color: var(--cb-cyan); }

.cb-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 6px;
}
.cb-hours-table td {
    padding: 5px 0;
    color: var(--cb-text-light);
    border-bottom: 1px solid rgba(214,207,197,0.4);
    font-size: 0.93rem;
}
.cb-hours-table td:first-child {
    font-weight: 500;
    color: var(--cb-text);
    padding-right: 24px;
}

/* Glassmorphism contact form wrapper */
.cb-contact-form-glass {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: var(--cb-radius);
    padding: 40px;
    box-shadow: var(--cb-shadow-md);
}
.cb-contact-form h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cb-text);
    margin-bottom: 28px;
}
.cb-form-group {
    margin-bottom: 20px;
}
.cb-form-group label {
    display: block;
    font-weight: 550;
    color: var(--cb-text);
    margin-bottom: 6px;
    font-size: 0.92rem;
}
.cb-form-group input,
.cb-form-group textarea,
.cb-form-group select {
    width: 100%;
    padding: 13px 18px;
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    background: rgba(255,255,255,0.8);
    transition: all var(--cb-transition);
    color: var(--cb-text);
}
.cb-form-group input:focus,
.cb-form-group textarea:focus,
.cb-form-group select:focus {
    outline: none;
    border-color: var(--cb-cyan);
    background: var(--cb-white);
    box-shadow: 0 0 0 3px rgba(0,180,216,0.1);
}
.cb-form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.cb-form-submit {
    background: var(--cb-cyan);
    color: #fff;
    padding: 14px 34px;
    border: none;
    border-radius: var(--cb-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--cb-transition);
}
.cb-form-submit:hover {
    background: var(--cb-cyan-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,180,216,0.25);
}
.cb-form-note {
    font-size: 0.83rem;
    color: var(--cb-text-light);
    margin-top: 14px;
    line-height: 1.5;
}
.cb-form-note a { color: var(--cb-text-light); }
.cb-form-note a:hover { color: var(--cb-cyan); }

/* File Upload */
.cb-form-hint {
    font-size: 0.83rem;
    color: var(--cb-text-light);
    margin-bottom: 8px;
    line-height: 1.4;
}
.cb-file-upload {
    position: relative;
    border: 2px dashed var(--cb-border);
    border-radius: var(--cb-radius-sm);
    padding: 28px 18px;
    text-align: center;
    cursor: pointer;
    transition: all var(--cb-transition);
    background: var(--cb-beige);
}
.cb-file-upload:hover,
.cb-file-upload.cb-dragover {
    border-color: var(--cb-cyan);
    background: rgba(0,180,216,0.04);
}
.cb-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.cb-file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--cb-text-light);
    pointer-events: none;
}
.cb-file-upload-content svg {
    color: var(--cb-cyan);
}
.cb-file-label {
    font-size: 0.9rem;
    font-weight: 500;
}
.cb-file-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px 14px;
    background: var(--cb-beige);
    border-radius: var(--cb-radius-sm);
    font-size: 0.88rem;
    color: var(--cb-text);
}
.cb-file-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cb-file-remove {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--cb-text-light);
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color var(--cb-transition);
}
.cb-file-remove:hover {
    color: #e74c3c;
}

/* Form Alerts */
.cb-form-alert {
    padding: 16px 20px;
    border-radius: var(--cb-radius-sm);
    margin-bottom: 24px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}
.cb-form-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.cb-form-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ==================== FOOTER — Navy ==================== */
.cb-footer {
    background: var(--cb-navy);
    color: rgba(255,255,255,0.65);
    padding-top: 64px;
}
.cb-footer-inner {
    max-width: var(--cb-container);
    margin: 0 auto;
    padding: 0 var(--cb-container-padding);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}
.cb-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.cb-footer-logo {
    height: 56px;
    width: auto;
    border-radius: 50%;
    opacity: 0.85;
}
.cb-footer-brand-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}
.cb-footer-col h4 {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}
.cb-footer-col a {
    display: block;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.93rem;
    transition: color var(--cb-transition);
}
.cb-footer-col a:hover { color: #fff; }
.cb-footer-col p {
    font-size: 0.93rem;
    margin-bottom: 6px;
}
.cb-footer-bottom {
    text-align: center;
    padding: 24px var(--cb-container-padding);
    margin-top: 52px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
}
.cb-footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color var(--cb-transition);
}
.cb-footer-bottom a:hover { color: #fff; }

/* ==================== WHATSAPP STICKY BUTTON ==================== */
.cb-whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    border-radius: 40px;
    padding: 14px 22px 14px 18px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: #fff;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}
.cb-whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    color: #fff;
}
.cb-whatsapp-btn:active {
    transform: scale(0.97);
}
.cb-whatsapp-label {
    white-space: nowrap;
    line-height: 1;
}
/* Subtle pulse animation on WhatsApp button */
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 24px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}
.cb-whatsapp-btn {
    animation: whatsappPulse 3s ease-in-out infinite;
}
.cb-whatsapp-btn:hover {
    animation: none;
}
/* Mobile: nur Icon, kein Text */
@media (max-width: 480px) {
    .cb-whatsapp-btn {
        padding: 16px;
        border-radius: 50%;
    }
    .cb-whatsapp-label { display: none; }
}

/* ==================== HERO ENHANCED ANIMATIONS ==================== */
/* Tech Network Grid */
.cb-hero-network {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.cb-network-svg {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}
.cb-net-lines line {
    animation: linePulse 6s ease-in-out infinite;
}
.cb-net-lines line:nth-child(even) {
    animation-delay: -3s;
}
.cb-net-connections line {
    animation: linePulse 8s ease-in-out infinite;
}
.cb-net-connections line:nth-child(3n) { animation-delay: -2s; }
.cb-net-connections line:nth-child(3n+1) { animation-delay: -5s; }

@keyframes linePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Node glow animations — 3 staggered groups */
.cb-node {
    filter: drop-shadow(0 0 2px rgba(0,180,216,0.4));
}
.cb-node-pulse-1 { animation: nodeGlow 4s ease-in-out infinite; }
.cb-node-pulse-2 { animation: nodeGlow 4s ease-in-out infinite -1.3s; }
.cb-node-pulse-3 { animation: nodeGlow 4s ease-in-out infinite -2.6s; }

@keyframes nodeGlow {
    0%, 100% { opacity: 0.5; r: 3; }
    50% { opacity: 1; r: 5; filter: drop-shadow(0 0 6px rgba(0,180,216,0.6)); }
}

/* Scanline / Data-Flow Effect */
.cb-hero-scanline {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.cb-hero-scanline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0,180,216,0.04) 40%,
        rgba(0,180,216,0.06) 50%,
        rgba(0,180,216,0.04) 60%,
        transparent 100%
    );
    animation: scanline 9s linear infinite;
}
@keyframes scanline {
    0% { top: -60px; }
    100% { top: 100%; }
}

/* Hero text entrance animation */
.cb-hero-fade {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s ease forwards;
}
.cb-hero-fade:nth-child(1) { animation-delay: 0.2s; }
.cb-hero-fade:nth-child(2) { animation-delay: 0.45s; }
.cb-hero-fade:nth-child(3) { animation-delay: 0.65s; }
.cb-hero-fade:nth-child(4) { animation-delay: 0.85s; }

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle glow pulse on primary CTA in hero */
.cb-btn-pulse {
    animation: btnGlow 3s ease-in-out infinite 2s;
}
@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(0,180,216,0.3); }
    50% { box-shadow: 0 4px 25px rgba(0,180,216,0.5), 0 0 0 6px rgba(0,180,216,0.08); }
}

/* ==================== RATING BADGE (Nav) ==================== */
.cb-rating-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: auto;
    margin-left: 16px;
    padding: 5px 12px;
    background: rgba(245,158,11,0.08);
    border-radius: 20px;
    border: 1px solid rgba(245,158,11,0.15);
}
.cb-rating-stars {
    display: flex;
    gap: 1px;
}
.cb-rating-stars svg {
    width: 14px;
    height: 14px;
}
.cb-rating-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--cb-text);
    letter-spacing: -0.01em;
}

/* ==================== LIVE STATUS (Hero) ==================== */
.cb-hero-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
}
.cb-status-dot {
    width: 9px;
    height: 9px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(34,197,94,0.6);
    animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(34,197,94,0.6); }
    50% { box-shadow: 0 0 16px rgba(34,197,94,0.9), 0 0 0 4px rgba(34,197,94,0.15); }
}
.cb-status-dot.cb-status-closed {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245,158,11,0.6);
    animation: statusPulseClosed 2s ease-in-out infinite;
}
@keyframes statusPulseClosed {
    0%, 100% { box-shadow: 0 0 8px rgba(245,158,11,0.6); }
    50% { box-shadow: 0 0 16px rgba(245,158,11,0.9), 0 0 0 4px rgba(245,158,11,0.15); }
}
.cb-status-sep {
    color: rgba(255,255,255,0.3);
}
.cb-hero-status strong {
    color: #fff;
}

/* ==================== REVIEWS ==================== */
.cb-reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.cb-reviews-stars {
    display: flex;
    gap: 2px;
}
.cb-reviews-stars svg {
    width: 20px;
    height: 20px;
}
.cb-reviews-score {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--cb-text);
}
.cb-reviews-count {
    font-size: 0.9rem;
    color: var(--cb-text-light);
}
.cb-reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.cb-review-card {
    background: var(--cb-card-bg);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius);
    padding: 28px;
    transition: all var(--cb-transition);
}
.cb-review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--cb-shadow-md);
    border-color: transparent;
}
.cb-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.cb-review-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--cb-navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}
.cb-review-name {
    font-weight: 650;
    font-size: 0.95rem;
    color: var(--cb-text);
}
.cb-review-meta {
    font-size: 0.82rem;
    color: var(--cb-text-light);
}
.cb-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}
.cb-review-stars svg {
    width: 16px;
    height: 16px;
}
.cb-review-text {
    color: var(--cb-text-light);
    font-size: 0.93rem;
    line-height: 1.65;
    font-style: italic;
}

/* ==================== SCROLL ANIMATIONS ==================== */
.cb-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.cb-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered delays */
.cb-animate:nth-child(1) { transition-delay: 0s; }
.cb-animate:nth-child(2) { transition-delay: 0.08s; }
.cb-animate:nth-child(3) { transition-delay: 0.16s; }
.cb-animate:nth-child(4) { transition-delay: 0.24s; }
.cb-animate:nth-child(5) { transition-delay: 0.32s; }
.cb-animate:nth-child(6) { transition-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .cb-hero, .cb-cta-banner, .cb-page-hero {
        animation: none;
        background-size: 100% 100%;
    }
    .cb-hero-fade {
        opacity: 1;
        transform: none;
        animation: none;
    }
    .cb-hero-network, .cb-hero-scanline { display: none; }
    .cb-whatsapp-btn, .cb-btn-pulse { animation: none; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 960px) {
    .cb-usps { grid-template-columns: repeat(2, 1fr); }
    .cb-services { grid-template-columns: repeat(2, 1fr); }
    .cb-process { grid-template-columns: repeat(2, 1fr); }
    .cb-process-step::after { display: none; }
    .cb-pricing { grid-template-columns: repeat(2, 1fr); }
    .cb-reviews { grid-template-columns: repeat(2, 1fr); }
    .cb-pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --cb-container-padding: 20px;
    }

    .cb-menu-toggle { display: block; }
    .cb-nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(240,244,248,0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 12px 20px 20px;
        box-shadow: 0 8px 24px rgba(10,37,64,0.12);
        border-bottom: 1px solid var(--cb-border);
    }
    .cb-nav-links.open { display: flex; }
    .cb-nav-links a { padding: 12px 16px; }

    .cb-rating-badge { display: none; }

    .cb-hero { padding: 72px 20px 52px; }
    .cb-hero h1 { margin-bottom: 12px; }
    .cb-hero .cb-subtitle { font-size: 1.05rem; margin-bottom: 16px; }
    .cb-hero-status { font-size: 0.8rem; gap: 8px; padding: 8px 16px; }
    .cb-hero-status .cb-status-sep { display: none; }
    .cb-hero-actions { flex-direction: column; }
    .cb-btn-primary, .cb-btn-ghost { width: 100%; max-width: 280px; justify-content: center; }

    .cb-section { padding: 48px 20px; }
    .cb-section-header { margin-bottom: 32px; }
    .cb-section-desc { font-size: 0.92rem; }

    .cb-usps { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cb-usp { padding: 20px 14px; }
    .cb-usp h3 { font-size: 0.95rem; }
    .cb-usp p { font-size: 0.85rem; }
    .cb-usp-icon { width: 40px; height: 40px; margin-bottom: 10px; }
    .cb-usp-icon svg { width: 20px; height: 20px; }

    .cb-process { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cb-process-step { padding: 20px 12px; }
    .cb-process-step h3 { font-size: 0.95rem; }
    .cb-process-step p { font-size: 0.85rem; }
    .cb-process-num { width: 38px; height: 38px; font-size: 0.95rem; }

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

    .cb-pricing { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cb-pricing-card { padding: 24px 16px; }
    .cb-pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: none;
        background: var(--cb-navy);
        color: var(--cb-white);
        border-color: var(--cb-navy);
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 20px 24px;
        border-radius: var(--cb-radius);
    }
    .cb-pricing-card:last-child .cb-pricing-amount {
        color: var(--cb-cyan);
        font-size: 1.8rem;
        margin-bottom: 0;
        white-space: nowrap;
    }
    .cb-pricing-card:last-child .cb-pricing-label {
        color: rgba(255,255,255,0.7);
        margin-bottom: 2px;
    }
    .cb-pricing-card:last-child .cb-pricing-desc {
        color: rgba(255,255,255,0.85);
        font-size: 0.88rem;
    }

    .cb-reviews { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cb-review-card { padding: 20px 16px; }
    .cb-review-text { font-size: 0.85rem; }
    .cb-review-avatar { width: 32px; height: 32px; font-size: 0.8rem; }
    .cb-review-name { font-size: 0.88rem; }
    .cb-review-meta { font-size: 0.75rem; }
    .cb-review-stars svg { width: 14px; height: 14px; }

    .cb-cta-banner { padding: 48px 20px; }
    .cb-cta-banner h2 { font-size: 1.3rem; }

    .cb-values { grid-template-columns: 1fr; }
    .cb-contact-wrapper { grid-template-columns: 1fr; gap: 32px; }
    .cb-contact-form-glass { padding: 24px; }
    .cb-footer-inner { grid-template-columns: 1fr; gap: 24px; }

    .cb-page-hero { padding: 60px 20px 44px; }
    .cb-service-table td:first-child { white-space: normal; }
    .cb-service-table { font-size: 0.88rem; }
}
