/* CARBVERDE DESIGN SYSTEM v2.0
   Precision meets sustainability
   Fonts: Sora (headings) + DM Sans (body)
*/

/* ==========================================
   1. VARIABLES
   ========================================== */
:root {
    --bg-main: #FFFFFF;
    --bg-section: #F7F8FA;
    --bg-card: #FFFFFF;
    --bg-accent-dim: #F0FDF4;

    --brand-green: #16A34A;
    --brand-green-hover: #15803D;

    --text-primary: #111827;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;

    --border-subtle: #E5E7EB;
    --border-accent: #DCFCE7;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
    --space-section: 120px;
    --gutter: 24px;

    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.18s ease;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

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

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    line-height: 1.15;
    color: var(--text-primary);
}

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

/* ==========================================
   3. LAYOUT
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section {
    padding: var(--space-section) 0;
}

/* ==========================================
   4. NAVIGATION
   ========================================== */
.header {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

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

.nav {
    display: flex;
    gap: 36px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--brand-green);
    transition: width var(--transition-smooth);
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
    transform-origin: center;
}

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

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

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

.btn-nav {
    background: var(--brand-green);
    color: #FFFFFF;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-family: 'DM Sans', sans-serif;
    flex-shrink: 0;
}

.btn-nav:hover {
    background: var(--brand-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

/* ==========================================
   5. HERO
   ========================================== */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
    align-items: center;
    padding: 80px 0 100px;
}

.badge {
    color: var(--brand-green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
}

h1 {
    font-size: clamp(36px, 4.8vw, 54px);
    line-height: 1.08;
    margin-bottom: var(--space-md);
    font-weight: 800;
    letter-spacing: -1.5px;
}

h1 span {
    color: var(--brand-green);
}

h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 520px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    flex-wrap: wrap;
}

.hero-dashboard {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* ==========================================
   6. BUTTONS
   ========================================== */
.btn-main {
    background: var(--brand-green);
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-family: 'DM Sans', sans-serif;
    display: inline-block;
}

.btn-main:hover {
    background: var(--brand-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.2);
}

.btn-ghost {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color var(--transition-fast);
}

.btn-ghost:hover {
    color: var(--brand-green);
}

.btn-outline {
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
    font-family: 'DM Sans', sans-serif;
}

.btn-outline:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    background: var(--bg-accent-dim);
}

/* ==========================================
   7. PROBLEM GRID
   ========================================== */
.problem-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.check-list {
    list-style: none;
    margin-top: var(--space-lg);
}

.check-list li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 28px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.65;
}

.check-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
}

.kernproblem-box {
    background: var(--bg-accent-dim);
    border: 1px solid var(--border-accent);
    padding: 36px;
    border-radius: var(--radius-lg);
}

.kernproblem-box h3 {
    color: var(--brand-green);
    margin-bottom: var(--space-sm);
    font-size: 20px;
}

.kernproblem-box p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ==========================================
   8. CASE STUDY
   ========================================== */
.case-card {
    background: var(--bg-section);
    border: 1px solid var(--border-subtle);
    padding: 56px;
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-green), #34d399);
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.case-stats .stat {
    background: var(--bg-card);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-green);
    font-family: 'Sora', sans-serif;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
    display: block;
}

/* ==========================================
   9. PROCESS GRID
   ========================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.step {
    background: var(--bg-card);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.step:hover {
    border-color: var(--brand-green);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.step-num {
    width: 36px;
    height: 36px;
    background: var(--brand-green);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: var(--space-md);
    font-family: 'Sora', sans-serif;
}

.step h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

/* ==========================================
   10. EXPERIENCE & LOGOS
   ========================================== */
.section-experience {
    padding: var(--space-section) 0;
    border-top: 1px solid var(--border-subtle);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

.exp-title-side h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.15;
    font-weight: 800;
}

.exp-text-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exp-text-side p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.experience-lead {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.logo-row-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.logo-wrapper {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1) brightness(0);
    opacity: 0.45;
    transition: var(--transition-smooth);
}

.logo-wrapper:hover {
    opacity: 0.8;
}

.logo-wrapper img {
    max-height: 100%;
    max-width: 160px;
    object-fit: contain;
}

/* ==========================================
   11. TEAM
   ========================================== */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 40px;
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
}

.team-card:hover {
    border-color: var(--border-accent);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.team-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--brand-green);
    margin-bottom: var(--space-md);
    object-fit: cover;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.expertise-tags {
    display: flex;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.tag {
    background: var(--bg-section);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    border: 1px solid var(--border-subtle);
}

/* ==========================================
   12. DASHBOARD WIDGET
   ========================================== */
.dashboard-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 6px 16px rgba(0, 0, 0, 0.04),
        0 20px 48px rgba(0, 0, 0, 0.06);
    max-width: 100%;
}

.db-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.db-title {
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--brand-green);
}

.db-badge {
    background: var(--brand-green);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.db-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.summary-card {
    background: var(--bg-section);
    border: 1px solid var(--border-subtle);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
}

.summary-label {
    display: block;
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.summary-value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 12px;
}

.db-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 0;
}

.db-table th {
    text-align: left;
    color: var(--text-muted);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
    font-weight: 600;
}

.db-table td {
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.status-pill {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.status-pill.green { background: rgba(22, 163, 74, 0.1); color: var(--brand-green); }
.status-pill.orange { background: rgba(217, 119, 6, 0.1); color: #d97706; }
.status-pill.gray { background: rgba(156, 163, 175, 0.12); color: var(--text-muted); }

/* ==========================================
   13. FOOTER
   ========================================== */
.site-footer {
    margin-top: var(--space-section);
}

.footer-cta-section {
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--border-subtle);
}

.container.footer-cta-section {
    padding-bottom: 30px;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--space-xl);
    align-items: start;
}

.cta-text h2 {
    font-size: clamp(30px, 3.8vw, 44px);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    letter-spacing: -1px;
}

.cta-text p {
    color: var(--text-secondary);
    max-width: 480px;
    font-size: 16px;
    line-height: 1.7;
}

.cta-button-wrap {
    display: flex;
    align-items: flex-start;
    padding-top: 8px;
}

.cta-form-wrap {
    width: 100%;
}

.footer-bottom {
    padding: var(--space-lg) 0;
}

.footer-legal-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--text-muted);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: var(--space-md);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition-fast);
}

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

/* ==========================================
   14. CONTACT FORM
   ========================================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    background: var(--bg-card);
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.08);
}

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

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

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: inherit;
}

/* ==========================================
   15. BRANCHEN SECTION
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-intro {
    color: var(--text-secondary);
    max-width: 560px;
    margin: 16px auto 0;
    font-size: 16px;
    line-height: 1.7;
}

.section-branchen {
    background: var(--bg-section);
    padding: 100px 0;
}

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

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: var(--transition-smooth);
}

.industry-card:hover {
    border-color: var(--brand-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.industry-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.relevance-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 4px 10px;
    border-radius: 4px;
}

.relevance-tag.high {
    background: rgba(22, 163, 74, 0.1);
    color: var(--brand-green);
}

.relevance-tag.medium {
    background: rgba(217, 119, 6, 0.1);
    color: #d97706;
}

/* ==========================================
   16. EXPLAINER SECTION
   ========================================== */
.section-explainer {
    background: var(--bg-section);
    padding: 100px 0;
}

.explainer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.explainer-intro {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.examples-title {
    margin-bottom: 16px;
    font-size: 18px;
}

/* Scope Visual */
.scope-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scope-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    padding: 16px 20px;
    border-radius: 10px;
    background: white;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.scope-item.highlight {
    background: var(--bg-accent-dim);
    border: 2px solid var(--brand-green);
}

.scope-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-secondary);
    font-family: 'Sora', sans-serif;
}

.scope-item.highlight .scope-name {
    color: var(--brand-green);
}

.scope-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

.scope-item.highlight .scope-desc {
    color: var(--text-primary);
}

.scope-percent {
    font-weight: 700;
    color: var(--text-muted);
    font-family: 'Sora', sans-serif;
}

.scope-item.highlight .scope-percent {
    font-weight: 800;
    font-size: 18px;
    color: var(--brand-green);
}

.scope-caption {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

/* ==========================================
   17. CASE STUDY SUBTITLE (inline override)
   ========================================== */
.case-subtitle {
    font-size: 15px;
}

/* ==========================================
   18. REGULATORY CONTEXT (inline override)
   ========================================== */
.regulatory-context h4 {
    font-family: 'Sora', sans-serif;
}

/* ==========================================
   19. SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ==========================================
   20. RESPONSIVE — TABLET (max-width: 1024px)
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --space-section: 80px;
        --gutter: 22px;
    }

    .hero,
    .problem-grid,
    .experience-grid {
        gap: 40px;
    }

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

    .explainer-grid {
        gap: 40px;
    }

    .section-branchen,
    .section-explainer {
        padding: 72px 0;
    }

    .cta-inner {
        grid-template-columns: 1fr 380px;
        gap: var(--space-lg);
    }
}

/* ==========================================
   21. RESPONSIVE — MOBILE (max-width: 768px)
   ========================================== */
@media (max-width: 768px) {
    :root {
        --space-section: 64px;
        --gutter: 28px;
        --gutter-tight: 22px;
    }

    body {
        font-size: 15px;
    }

    h1 {
        font-size: clamp(30px, 7.2vw, 40px);
        letter-spacing: -1px;
    }

    h2 {
        font-size: clamp(22px, 5.6vw, 30px);
    }

    .badge {
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    /* NAVIGATION */
    .header {
        padding: 0 var(--gutter-tight);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 0 24px;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.25s ease,
                    padding 0.35s ease;
    }

    .nav.nav-open {
        max-height: 340px;
        opacity: 1;
        padding: 8px 24px 16px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border-subtle);
        font-size: 15px;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .nav a::after {
        display: none;
    }

    .btn-nav {
        display: none;
    }

    /* HERO */
    .hero {
        grid-template-columns: 1fr;
        padding: 48px 0 64px;
        text-align: left;
    }

    .hero.container {
        padding-left: var(--gutter-tight);
        padding-right: var(--gutter-tight);
    }

    .hero p {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: flex-start;
    }

    .hero-dashboard {
        order: 2;
    }

    /* DASHBOARD WIDGET */
    .dashboard-widget {
        padding: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .db-summary {
        grid-template-columns: 1fr;
    }

    .db-table {
        min-width: 360px;
    }

    /* PROBLEM GRID */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .kernproblem-box {
        padding: 28px 22px;
    }

    .problem-grid .check-list {
        text-align: left;
    }

    /* CASE STUDY */
    .case-card {
        padding: 32px 24px;
    }

    .case-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* PROCESS GRID */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* INDUSTRY GRID */
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* EXPLAINER */
    .explainer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .explainer-intro {
        font-size: 16px;
    }

    .section-branchen,
    .section-explainer {
        padding: 56px 0;
    }

    /* EXPERIENCE */
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .experience-lead {
        font-size: 17px;
    }

    .logo-row-centered {
        gap: 32px;
    }

    .logo-wrapper {
        height: 32px;
    }

    /* TEAM */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-card {
        padding: 32px 24px;
    }

    /* FOOTER */
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .cta-text p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .footer-legal-row {
        flex-direction: column;
        gap: 20px;
        text-align: left;
    }

    .container.footer-cta-section {
        padding-bottom: 30px;
    }

    .footer-bottom {
        padding-top: var(--space-xl);
    }

    .footer-bottom.container {
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }

    .footer-copyright {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
    }

.footer-copyright img {
    height: 42px;
}

    .footer-links {
        justify-content: flex-start;
    }

    /* SECTION HEADERS */
    .section-header {
        margin-bottom: 32px;
    }

    /* SCOPE VISUAL */
    .scope-item {
        grid-template-columns: 80px 1fr auto;
        padding: 14px 16px;
    }

    .scope-name {
        font-size: 13px;
    }

    .scope-desc {
        font-size: 13px;
    }
}

/* ==========================================
   22. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ========================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--gutter);
    }
    
    :root {
        --gutter: 32px;
        --gutter-tight: 24px;
    }

    .hero.container {
        padding-left: var(--gutter-tight);
        padding-right: var(--gutter-tight);
    }

    h1 {
        font-size: 28px;
        letter-spacing: -0.6px;
    }

    h2 {
        font-size: 22px;
        letter-spacing: -0.3px;
    }

    .hero {
        padding: 36px 0 48px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .hero-btns .btn-main {
        width: 100%;
        text-align: center;
    }

    .case-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .case-stats .stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        text-align: left;
    }

    .case-card {
        padding: 24px 18px;
    }

    .team-card {
        padding: 24px 18px;
    }

    .kernproblem-box {
        padding: 22px 18px;
    }

    .stat-number {
        font-size: 28px;
        order: 2;
    }

    .stat-label {
        order: 1;
        font-size: 13px;
    }

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

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

    .scope-item {
        grid-template-columns: 1fr auto;
        gap: 4px;
    }

    .scope-desc {
        display: none;
    }

    .scope-name {
        font-size: 14px;
    }

    .db-summary {
        grid-template-columns: 1fr;
    }

    .db-table {
        min-width: 320px;
    }
}

/* ==========================================
   23. PRINT STYLES
   ========================================== */
@media print {
    .header,
    .mobile-menu-toggle,
    .btn-nav,
    .hero-dashboard,
    .site-footer {
        display: none;
    }

    .section {
        padding: 24px 0;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}
