        :root {
            --bg: #EAF2FB;
            --bg-soft: #F5F9FD;
            --bg-alt: #FFFFFF;
            --primary: #0F1720;
            --accent: #E63946;
            --accent-dark: #C72B38;
            --heart-gray: #B8BCC4;
            --border: #D4E2EF;
            --text: #1F2937;
            --text-muted: #4B5563;
            --radius: 14px;
            --shadow-sm: 0 1px 2px rgba(15, 23, 32, 0.04), 0 2px 8px rgba(15, 23, 32, 0.05);
            --shadow-md: 0 4px 12px rgba(15, 23, 32, 0.06), 0 8px 24px rgba(15, 23, 32, 0.08);
            --nav-h: 68px;
            --max: 1120px;
        }

        * { box-sizing: border-box; }

        html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

        body {
            margin: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            font-size: 18px;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

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

        /* ===== NAV ===== */
        header.nav {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(234, 242, 251, 0.85);
            backdrop-filter: saturate(180%) blur(12px);
            -webkit-backdrop-filter: saturate(180%) blur(12px);
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }
        header.nav.scrolled {
            border-bottom-color: var(--border);
            box-shadow: 0 1px 8px rgba(15, 23, 32, 0.06);
        }
        .nav-inner {
            height: var(--nav-h);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .brand {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--primary);
            font-family: 'Inter', sans-serif;
            font-weight: 900;
            font-size: 1.05rem;
            letter-spacing: -0.02em;
            text-transform: uppercase;
        }
        nav.main-nav ul {
            list-style: none;
            margin: 0; padding: 0;
            display: flex;
            gap: 8px;
        }
        nav.main-nav a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 14px;
            border-radius: 8px;
            transition: background 0.15s ease, color 0.15s ease;
        }
        nav.main-nav a:hover { background: var(--border); }
        nav.main-nav a.active { color: var(--accent); background: rgba(230, 57, 70, 0.08); }

        .nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 8px;
            width: 40px; height: 40px;
            cursor: pointer;
            padding: 0;
            align-items: center;
            justify-content: center;
        }
        .nav-toggle span {
            display: block;
            width: 18px; height: 2px;
            background: var(--primary);
            position: relative;
        }
        .nav-toggle span::before,
        .nav-toggle span::after {
            content: '';
            position: absolute;
            left: 0;
            width: 18px; height: 2px;
            background: var(--primary);
            transition: transform 0.2s ease;
        }
        .nav-toggle span::before { top: -6px; }
        .nav-toggle span::after { top: 6px; }
        .nav-toggle.open span { background: transparent; }
        .nav-toggle.open span::before { transform: translateY(6px) rotate(45deg); }
        .nav-toggle.open span::after { transform: translateY(-6px) rotate(-45deg); }

        /* ===== SECTIONS ===== */
        section {
            padding: 96px 0;
            position: relative;
        }
        section + section { border-top: 1px solid var(--border); }
        section.alt { background: var(--bg-alt); }
        section.dotted {
            background-image:
                radial-gradient(circle at 1px 1px, rgba(15, 23, 32, 0.06) 1px, transparent 0);
            background-size: 22px 22px;
            background-position: 0 0;
        }
        section.dotted.alt {
            background-color: var(--bg-alt);
            background-image:
                radial-gradient(circle at 1px 1px, rgba(15, 23, 32, 0.05) 1px, transparent 0);
            background-size: 22px 22px;
        }

        h1, h2, h3, h4 {
            color: var(--primary);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin: 0 0 0.5em 0;
            line-height: 1.2;
        }
        h1 {
            font-size: clamp(1.9rem, 6vw, 3.3rem);
            line-height: 1.15;
            text-wrap: balance;
        }
        h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 0.8em; line-height: 1.2; }
        h3 { font-size: 1.22rem; font-weight: 600; line-height: 1.35; }

        p { margin: 0 0 1.1em 0; color: var(--text); }
        p:last-child { margin-bottom: 0; }
        .muted { color: var(--text-muted); }

        /* ===== HERO ===== */
        #start { padding-top: 80px; padding-bottom: 80px; }
        .hero-grid {
            display: grid;
            grid-template-columns: 1.25fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .hero-art {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 0;
        }
        .hero-equation {
            display: inline-flex;
            align-items: center;
            gap: 0.15em;
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
            font-weight: 700;
            font-size: clamp(2rem, 7vw, 3.75rem);
            color: var(--primary);
            letter-spacing: -0.01em;
            white-space: nowrap;
        }
        .hero-equation .heart {
            display: inline-block;
            width: 0.95em;
            height: 0.85em;
            color: var(--accent);
            transform: translateY(0.08em);
            margin: 0 0.05em;
        }
        @keyframes heart-beat {
            0%, 100% { transform: translateY(0.08em) scale(1); }
            20% { transform: translateY(0.04em) scale(1.12); }
            40% { transform: translateY(0.08em) scale(0.96); }
            60% { transform: translateY(0.06em) scale(1.06); }
        }
        .hero-equation .heart {
            animation: heart-beat 2.4s ease-in-out infinite;
            transform-origin: center;
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-equation .heart { animation: none; }
        }
        .hero-sub {
            font-size: clamp(1.15rem, 2vw, 1.4rem);
            color: var(--text-muted);
            max-width: 640px;
            margin-top: 0.5em;
            margin-bottom: 1.75em;
            line-height: 1.55;
            font-weight: 400;
        }
        .hero-body { max-width: 58ch; font-size: 1.05rem; line-height: 1.8; }
        .hero-body p { margin-bottom: 1.25em; }
        .emph {
            font-weight: 600;
            color: var(--primary);
            text-decoration: underline;
            text-decoration-color: var(--accent);
            text-decoration-thickness: 2px;
            text-underline-offset: 4px;
        }

        .usp-heading { margin-top: 64px; margin-bottom: 24px; font-size: 1.3rem; }

        .usp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 8px;
        }
        .usp-card {
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.2s ease, border-color 0.2s ease;
        }
        .usp-card:hover { box-shadow: var(--shadow-md); border-color: rgba(230, 57, 70, 0.25); }
        .usp-icon {
            width: 40px; height: 40px;
            border-radius: 10px;
            background: rgba(230, 57, 70, 0.1);
            color: var(--accent);
            display: grid; place-items: center;
            margin-bottom: 14px;
        }
        .usp-card h3 { margin-bottom: 12px; font-size: 1.1rem; line-height: 1.35; }
        .usp-card p { font-size: 1rem; line-height: 1.7; margin: 0; color: var(--text-muted); }

        .cta-row { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 22px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 10px;
            text-decoration: none;
            cursor: pointer;
            border: 1px solid transparent;
            transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.2s ease;
        }
        .btn-primary {
            background: var(--accent);
            color: #FFFFFF;
            box-shadow: 0 4px 14px rgba(230, 57, 70, 0.3);
        }
        .btn-primary:hover { background: var(--accent-dark); color: #FFFFFF; }
        .btn-primary:active { transform: translateY(1px); }
        .btn-ghost {
            background: transparent;
            color: var(--primary);
            border-color: var(--border);
        }
        .btn-ghost:hover { background: var(--border); color: var(--primary); }

        /* ===== ERBJUDANDE ===== */
        .lede {
            font-size: 1.15rem;
            line-height: 1.75;
            max-width: 68ch;
            color: var(--text);
        }
        .block { margin-top: 56px; }
        .block h3 { font-size: 1.3rem; margin-bottom: 18px; }

        .competence-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        .comp-card {
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px 24px 26px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.2s ease, border-color 0.2s ease;
        }
        .comp-card:hover { box-shadow: var(--shadow-md); border-color: rgba(230, 57, 70, 0.25); }
        .comp-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(230, 57, 70, 0.1);
            color: var(--accent);
            display: grid;
            place-items: center;
            margin-bottom: 18px;
        }
        .comp-card strong {
            display: block;
            color: var(--primary);
            font-size: 1.12rem;
            margin-bottom: 10px;
        }
        .comp-card p { margin: 0; color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

        .chips {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }
        .chip-label {
            display: block;
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
            margin-top: 24px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .chip-label:first-child { margin-top: 0; }
        .chip {
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 0.92rem;
            font-weight: 600;
            letter-spacing: 0.01em;
            font-family: 'IBM Plex Mono', 'Courier New', monospace;
            border: 1px solid transparent;
            transition: transform 0.15s ease;
        }
        .chip-primary {
            background: var(--accent);
            color: #FFFFFF;
            border-color: var(--accent);
            box-shadow: 0 2px 8px rgba(230, 57, 70, 0.25);
        }
        .chip-secondary {
            background: var(--bg-alt);
            color: var(--accent);
            border-color: rgba(230, 57, 70, 0.35);
            box-shadow: var(--shadow-sm);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 28px;
            counter-reset: step;
        }
        .step {
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px 28px 30px 84px;
            position: relative;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.2s ease, border-color 0.2s ease;
        }
        .step:hover { box-shadow: var(--shadow-md); border-color: rgba(230, 57, 70, 0.25); }
        .step::before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            left: 24px;
            top: 26px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent);
            color: #FFFFFF;
            display: grid;
            place-items: center;
            font-size: 1.05rem;
            font-weight: 700;
            font-variant-numeric: tabular-nums;
            box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
        }
        .step strong {
            display: block;
            color: var(--primary);
            font-size: 1.12rem;
            margin-bottom: 10px;
        }
        .step p { margin: 0; color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

        /* ===== REFERENSER ===== */
        .cases {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-top: 48px;
        }
        .case {
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 40px 48px 44px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.2s ease, border-color 0.2s ease;
            display: grid;
            grid-template-columns: 72px 1fr;
            gap: 28px;
            align-items: start;
        }
        .case:hover { box-shadow: var(--shadow-md); border-color: rgba(230, 57, 70, 0.25); }
        .case-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: rgba(230, 57, 70, 0.1);
            color: var(--accent);
            display: grid;
            place-items: center;
            margin-bottom: 0;
        }
        .case-body { max-width: 68ch; }
        .case h3 {
            font-size: 1.35rem;
            margin-bottom: 18px;
            line-height: 1.3;
        }
        .case p {
            color: var(--text);
            font-size: 1.05rem;
            line-height: 1.85;
            margin: 0;
        }


        /* ===== OM ===== */
        .om-wrap {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 56px;
            align-items: start;
        }
        .om-body { font-size: 1.08rem; line-height: 1.8; }
        .om-body p { margin-bottom: 1.5em; }
        .om-body p:last-child { margin-bottom: 0; }
        .om-photo {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 5;
            border-radius: var(--radius);
            overflow: hidden;
            background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border);
        }
        .om-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .om-photo-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: var(--text-muted);
            padding: 24px;
            text-align: center;
        }
        .om-photo-placeholder svg {
            width: 64px;
            height: 64px;
            opacity: 0.5;
        }
        .om-photo-placeholder span {
            font-size: 0.9rem;
            font-weight: 500;
        }
        .om-caption {
            margin-top: 14px;
            font-size: 0.9rem;
            color: var(--text-muted);
            font-style: italic;
            text-align: center;
        }

        /* ===== KONTAKT ===== */
        .contact-wrap {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 40px;
            margin-top: 40px;
            align-items: start;
        }
        .contact-form {
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 36px;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .contact-form h3 {
            margin: 0 0 4px 0;
            font-size: 1.3rem;
        }
        .form-intro {
            margin: 0 0 8px 0;
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.6;
        }
        .contact-form label {
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-muted);
        }
        .contact-form input,
        .contact-form textarea {
            font-family: inherit;
            font-size: 1rem;
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: 10px;
            background: var(--bg);
            color: var(--text);
            transition: border-color 0.15s ease, box-shadow 0.15s ease;
            resize: vertical;
        }
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.12);
        }
        .contact-form textarea {
            min-height: 120px;
            font-family: inherit;
            line-height: 1.5;
        }
        .contact-form button {
            align-self: flex-start;
            margin-top: 8px;
        }
        .contact-alt {
            padding: 28px;
            background: var(--bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }
        .contact-alt h4 {
            margin: 0 0 14px 0;
            font-size: 1.05rem;
        }
        .contact-alt-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        .contact-alt-item:last-child { margin-bottom: 0; }
        .contact-alt-icon {
            width: 36px; height: 36px;
            border-radius: 9px;
            background: rgba(230, 57, 70, 0.1);
            color: var(--accent);
            display: grid; place-items: center;
            flex-shrink: 0;
        }
        .contact-alt a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            word-break: break-word;
        }
        .contact-alt a:hover { color: var(--accent); }
        .contact-alt .location {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.95rem;
        }
        .business-info {
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
        .business-info h5 {
            margin: 0 0 12px 0;
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .business-info dl {
            margin: 0;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 6px 16px;
            font-size: 0.92rem;
        }
        .business-info dt {
            color: var(--text-muted);
            font-weight: 500;
        }
        .business-info dd {
            margin: 0;
            color: var(--primary);
            font-weight: 500;
        }
        .form-status {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 4px;
            min-height: 1.2em;
        }
        .form-status.success { color: var(--accent); font-weight: 500; }

        /* ===== FOOTER ===== */
        footer.site-footer {
            padding: 32px 0;
            border-top: 1px solid var(--border);
            background: var(--bg-alt);
        }
        .foot-inner {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            color: var(--text-muted);
            font-size: 0.88rem;
            text-align: center;
        }
        .foot-sep { opacity: 0.5; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1050px) {
            .hero-grid { grid-template-columns: 1fr; gap: 20px; }
            .hero-art {
                margin: 0 auto;
                padding: 4px 0 16px;
                justify-content: center;
                width: 100%;
            }
            .hero-sub, .hero-body { max-width: none; }
            #om h2 { text-align: center; }
            .om-wrap { grid-template-columns: 1fr; gap: 32px; max-width: 640px; margin: 0 auto; }
            .om-photo { max-width: 320px; margin: 0 auto; }
            .om-caption { text-align: center; }
            .usp-grid, .competence-grid, .steps, .contact-wrap {
                grid-template-columns: 1fr;
            }
            .case {
                grid-template-columns: 1fr;
                padding: 28px 24px 32px;
                gap: 20px;
            }
            .case-icon { margin-bottom: 0; }
        }

        @media (max-width: 1050px) {
            .nav-toggle { display: inline-flex; }
            nav.main-nav {
                position: absolute;
                top: var(--nav-h);
                left: 0; right: 0;
                background: var(--bg-alt);
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow-md);
                transform: translateY(-10px);
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.2s ease, transform 0.2s ease;
            }
            nav.main-nav.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            nav.main-nav ul {
                flex-direction: column;
                padding: 12px;
                gap: 2px;
            }
            nav.main-nav a { display: block; padding: 12px 14px; }
        }

        @media (max-width: 720px) {
            section { padding: 64px 0; }
            #start { padding-top: 56px; padding-bottom: 56px; }
        }

        /* ===== Misc ===== */
        a { color: var(--accent); text-decoration: none; }
        a:hover { color: var(--accent-dark); }
        ::selection { background: rgba(230, 57, 70, 0.2); }

/* ===== CLICKABLE NAV CARDS (landing page) ===== */
a.usp-card,
a.usp-card:link,
a.usp-card:visited,
a.usp-card:hover,
a.usp-card:active,
a.usp-card h3,
a.usp-card p {
    text-decoration: none !important;
}
a.usp-card {
    color: inherit;
    display: block;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
a.usp-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}
a.usp-card h3 {
    color: var(--primary);
}
a.usp-card:hover h3 {
    color: var(--accent);
}

/* ===== HERO (landing center block) ===== */
.hero-center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.hero-center .hero-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ===== LANDING — trust row chips under hero sub ===== */
.trust-row {
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.trust-chip {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    background: var(--bg-alt);
    border: 1px solid rgba(230, 57, 70, 0.35);
    color: var(--accent);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

/* ===== LANDING — skills grid (competence areas, 4x3 cards) ===== */
.skills-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 44px;
}
.skills-intro .section-heading {
    margin-bottom: 16px;
}
.skills-intro p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.skill-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 14px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: 120px;
}
.skill-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 57, 70, 0.25);
}
.skill-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent);
    display: grid;
    place-items: center;
}
.skill-card span {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.92rem;
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
}

/* ===== LANDING — hero CTA (centered) ===== */
.hero-cta {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* ===== LANDING — centered section heading ===== */
.section-heading {
    text-align: center;
    margin-bottom: 44px;
}

/* ===== LANDING — case teaser grid (before → after) ===== */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.case-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.case-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 57, 70, 0.25);
    transform: translateY(-2px);
}
.case-headline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.case-headline .arrow {
    color: var(--accent);
    margin: 0 4px;
    font-weight: 800;
}
.case-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.65;
}

.section-more {
    text-align: center;
    margin-top: 36px;
}
.section-more a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}
.section-more a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* ===== LANDING — services preview (4 cards + button) ===== */
.services-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.services-more {
    text-align: center;
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

/* ===== LANDING — about teaser (quote + byline + link) ===== */
.about-teaser {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.about-teaser blockquote {
    margin: 0 0 14px 0;
    font-size: 1.35rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: -0.01em;
    quotes: none;
}
.about-byline {
    margin: 0 0 18px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.about-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.about-link:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* ===== LANDING — final CTA section ===== */
.final-cta {
    text-align: center;
}
.final-cta h2 {
    margin-bottom: 12px;
}
.final-cta-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

/* ===== LANDING — responsive ===== */
@media (max-width: 1050px) {
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 820px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
    .services-preview {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .services-preview {
        grid-template-columns: 1fr;
    }
}

/* ===== REFERENSER hero ===== */
.ref-hero {
    text-align: center;
    margin-bottom: 32px;
}
.ref-hero .hero-equation {
    margin-bottom: 16px;
    font-size: clamp(1.6rem, 5vw, 2.4rem);
}
.ref-hero h1 {
    margin-top: 0;
}

/* ===== STICKY FOOTER — footer always at viewport bottom when content is short ===== */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main { flex: 1 0 auto; }
footer.site-footer { flex-shrink: 0; }
