:root {
    --kuph-dark: #111820;
    --kuph-text: #17212b;
    --kuph-muted: #5b6874;
    --kuph-border: #dfe5ea;
    --kuph-surface: #f5f7f9;
    --kuph-surface-strong: #eef2f5;
    --kuph-primary: #00A0C8;
    --kuph-primary-ink: #007C9B;
    --kuph-primary-hover: #006C86;
    --kuph-primary-soft: #E8F8FC;
    --kuph-white: #ffffff;
    --kuph-max: 1180px;
    --kuph-radius: 14px;
}

/* --------------------------------------------------------------
   Global
-------------------------------------------------------------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--kuph-text);
    background: var(--kuph-white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-underline-offset: .18em;
}

a:hover {
    text-decoration: none;
}

.wp-site-blocks {
    min-height: 100vh;
}

main {
    overflow: hidden;
}


/* --------------------------------------------------------------
   Header
-------------------------------------------------------------- */

.kuph-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid rgba(17, 24, 32, .08);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
}

.kuph-header-inner {
    width: min(calc(100% - 3rem), var(--kuph-max));
    max-width: var(--kuph-max) !important;
    margin-inline: auto !important;
    padding: .9rem 0;
}

.kuph-brand {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 750;
    letter-spacing: -.035em;
}

.kuph-brand a {
    color: var(--kuph-dark);
}

.kuph-header .wp-block-navigation {
    font-size: .95rem;
    font-weight: 500;
}

.kuph-header .wp-block-navigation-item__content {
    color: var(--kuph-text);
}

.kuph-header-cta .wp-block-button__link {
    padding: .7rem 1.1rem;
    border-radius: 8px;
    background: var(--kuph-dark);
    color: var(--kuph-white);
    transition:
        background .2s ease,
        transform .2s ease;
}

.kuph-header-cta .wp-block-button__link:hover {
    background: #26313b;
    transform: translateY(-1px);
}


/* --------------------------------------------------------------
   Hero
-------------------------------------------------------------- */

.kuph-hero {
    width: min(calc(100% - 3rem), var(--kuph-max));
    max-width: var(--kuph-max) !important;
    margin-inline: auto !important;
    padding: clamp(6rem, 10vw, 9.5rem) 0 clamp(5rem, 8vw, 8rem);
}

.kuph-hero > * {
    max-width: 900px !important;
    margin-left: 0 !important;
}

.kuph-hero h1 {
    max-width: 1050px !important;
    margin-top: 0;
    margin-bottom: 1.75rem;
    font-size: clamp(3.4rem, 7vw, 6.5rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.kuph-hero .kuph-lead {
    max-width: 790px !important;
    margin-bottom: 2rem;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.55;
    color: var(--kuph-muted);
}

.kuph-hero .wp-block-buttons {
    margin-top: 2rem;
    gap: .8rem;
}

.kuph-hero .wp-block-button__link {
    padding: .85rem 1.25rem;
    border-radius: 8px;
    font-weight: 650;
}

.kuph-hero .wp-block-button:not(.is-style-outline) .wp-block-button__link {
    background: var(--kuph-dark);
    color: #fff;
}

.kuph-hero .is-style-outline .wp-block-button__link {
    border-color: var(--kuph-dark);
    color: var(--kuph-dark);
}

.kuph-trustline {
    margin-top: 2rem !important;
    font-size: .92rem;
    color: var(--kuph-muted);
}


/* --------------------------------------------------------------
   Homepage sections
-------------------------------------------------------------- */

.kuph-section {
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
    padding:
        clamp(5rem, 8vw, 8rem)
        max(1.5rem, calc((100vw - var(--kuph-max)) / 2));
}

.kuph-section > * {
    width: 100%;
    max-width: var(--kuph-max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.kuph-section > h2 {
    margin-top: 0 !important;
    margin-bottom: 1.5rem;
    font-size: clamp(2.35rem, 4vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.kuph-section > p {
    max-width: 820px !important;
    margin-left: max(0px, calc((100% - var(--kuph-max)) / 2)) !important;
    color: var(--kuph-muted);
}

.kuph-section .wp-block-columns {
    gap: 1.5rem;
    margin-top: 3rem;
}

.kuph-section .wp-block-column h3 {
    margin-top: 0;
    margin-bottom: .8rem;
    font-size: 1.25rem;
    line-height: 1.2;
}

.kuph-section .wp-block-column p {
    color: var(--kuph-muted);
}


/* --------------------------------------------------------------
   Intro advantages
-------------------------------------------------------------- */

.kuph-section:not(.kuph-services) > .wp-block-columns .wp-block-column {
    padding-top: 1.25rem;
    border-top: 2px solid var(--kuph-dark);
}


/* --------------------------------------------------------------
   Services
-------------------------------------------------------------- */

.kuph-services {
    background: var(--kuph-surface);
}

.kuph-services .wp-block-columns {
    align-items: stretch !important;
}

.kuph-services .wp-block-column {
    display: flex;
    flex-direction: column;
    min-height: 235px;
    padding: 1.75rem;
    border: 1px solid var(--kuph-border);
    border-radius: var(--kuph-radius);
    background: var(--kuph-white);
    box-shadow: 0 1px 2px rgba(17,24,32,.03);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.kuph-services .wp-block-column:hover {
    transform: translateY(-3px);
    border-color: #ccd5dd;
    box-shadow: 0 12px 30px rgba(17,24,32,.07);
}

.kuph-services .wp-block-column h3 {
    font-size: 1.35rem;
}

.kuph-services .wp-block-column p:last-child {
    margin-top: auto;
    margin-bottom: 0;
}

.kuph-services .wp-block-column a {
    color: var(--kuph-primary);
    font-weight: 650;
}


/* --------------------------------------------------------------
   Personal section
-------------------------------------------------------------- */

.kuph-personal {
    background: var(--kuph-dark);
    color: var(--kuph-white);
}

.kuph-personal h2 {
    color: var(--kuph-white);
}

.kuph-personal > p {
    color: rgba(255,255,255,.72);
}


/* --------------------------------------------------------------
   CTA
-------------------------------------------------------------- */

.kuph-cta {
    text-align: center;
    background: var(--kuph-surface);
}

.kuph-cta > h2,
.kuph-cta > p,
.kuph-cta > .wp-block-buttons {
    margin-left: auto !important;
    margin-right: auto !important;
}

.kuph-cta > p {
    max-width: 700px !important;
}

.kuph-cta .wp-block-buttons {
    justify-content: center;
    margin-top: 2rem;
}

.kuph-cta .wp-block-button__link {
    padding: .9rem 1.35rem;
    border-radius: 8px;
    background: var(--kuph-dark);
}


/* --------------------------------------------------------------
   Standard pages
-------------------------------------------------------------- */

.kuph-page {
    width: min(calc(100% - 3rem), var(--kuph-max));
    max-width: var(--kuph-max) !important;
    margin: 0 auto !important;
    padding: clamp(5rem, 8vw, 8rem) 0;
}

.kuph-page > .wp-block-post-content {
    max-width: 820px;
}

.kuph-page h1 {
    margin-top: 0;
    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.kuph-page h2 {
    margin-top: 3.5rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -.025em;
}

.kuph-page .kuph-lead {
    margin-bottom: 3rem;
    font-size: 1.3rem;
    color: var(--kuph-muted);
}


/* --------------------------------------------------------------
   Buttons
-------------------------------------------------------------- */

.wp-block-button__link {
    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.wp-block-button__link:hover {
    transform: translateY(-1px);
}


/* --------------------------------------------------------------
   Footer
-------------------------------------------------------------- */

.kuph-footer {
    width: 100%;
    margin-top: 0;
    background: var(--kuph-dark);
    color: var(--kuph-white);
}

.kuph-footer-inner {
    width: min(calc(100% - 3rem), var(--kuph-max));
    max-width: var(--kuph-max) !important;
    margin-inline: auto !important;
    padding: 5rem 0 2rem;
}

.kuph-footer h3,
.kuph-footer h4 {
    color: #fff;
}

.kuph-footer a {
    color: rgba(255,255,255,.78);
}

.kuph-footer ul {
    padding-left: 0;
    list-style: none;
}

.kuph-footer li {
    margin-bottom: .4rem;
}

.kuph-footer p {
    color: rgba(255,255,255,.68);
}

.kuph-footer-meta {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.15);
    font-size: .875rem;
}


/* --------------------------------------------------------------
   Mobile
-------------------------------------------------------------- */

@media (max-width: 900px) {
    .kuph-header-cta {
        display: none;
    }

    .kuph-hero {
        width: min(calc(100% - 2rem), var(--kuph-max));
    }

    .kuph-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .kuph-page {
        width: calc(100% - 2rem);
    }

    .kuph-footer-inner {
        width: calc(100% - 2rem);
    }
}

@media (max-width: 600px) {
    .kuph-header-inner {
        width: calc(100% - 2rem);
    }

    .kuph-brand {
        font-size: 1.4rem;
    }

    .kuph-hero {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .kuph-hero h1 {
        font-size: clamp(3rem, 15vw, 4.6rem);
    }

    .kuph-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .kuph-services .wp-block-column {
        min-height: 0;
    }
}


/* ==============================================================
   kuph-IT Design v0.3
   Homepage section refinement
============================================================== */


/* --------------------------------------------------------------
   Section labels
-------------------------------------------------------------- */

.kuph-intro::before,
.kuph-services::before,
.kuph-managed::before,
.kuph-audience::before,
.kuph-why::before,
.kuph-personal::before,
.kuph-cta::before {
    display: block;
    width: 100%;
    max-width: var(--kuph-max);
    margin: 0 auto 1.2rem;
    font-size: .76rem;
    font-weight: 750;
    line-height: 1;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--kuph-primary);
}

.kuph-intro::before {
    content: "Betreuung";
}

.kuph-services::before {
    content: "Leistungen";
}

.kuph-managed::before {
    content: "Managed IT";
}

.kuph-audience::before {
    content: "Für wen";
}

.kuph-why::before {
    content: "Warum kuph-IT";
}

.kuph-personal::before {
    content: "Zusammenarbeit";
    color: rgba(255,255,255,.55);
}

.kuph-cta::before {
    content: "Kontakt";
}


/* --------------------------------------------------------------
   Intro / three advantages
-------------------------------------------------------------- */

.kuph-intro {
    border-top: 1px solid var(--kuph-border);
}

.kuph-intro > h2 {
    max-width: 950px !important;
}

.kuph-intro > p {
    max-width: 850px !important;
    font-size: 1.08rem;
}

.kuph-intro > .wp-block-columns {
    gap: 1.25rem;
}

.kuph-intro > .wp-block-columns > .wp-block-column {
    position: relative;
    min-height: 245px;
    padding: 2rem;
    border: 1px solid var(--kuph-border);
    border-radius: var(--kuph-radius);
    background: var(--kuph-white);
}

.kuph-intro > .wp-block-columns > .wp-block-column::before {
    display: block;
    margin-bottom: 2.2rem;
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .08em;
    color: var(--kuph-muted);
}

.kuph-intro > .wp-block-columns > .wp-block-column:nth-child(1)::before {
    content: "01";
}

.kuph-intro > .wp-block-columns > .wp-block-column:nth-child(2)::before {
    content: "02";
}

.kuph-intro > .wp-block-columns > .wp-block-column:nth-child(3)::before {
    content: "03";
}

.kuph-intro .wp-block-column h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    letter-spacing: -.015em;
}

.kuph-intro .wp-block-column p {
    margin-bottom: 0;
    line-height: 1.65;
}


/* --------------------------------------------------------------
   Services refinement
-------------------------------------------------------------- */

.kuph-services > h2 {
    max-width: 900px !important;
}

.kuph-services > p {
    max-width: 760px !important;
}

.kuph-services .wp-block-column {
    min-height: 270px;
    padding: 2rem;
}

.kuph-services .wp-block-column h3 {
    max-width: 260px;
    font-size: 1.45rem;
    letter-spacing: -.02em;
}

.kuph-services .wp-block-column p {
    line-height: 1.6;
}

.kuph-services .wp-block-column p:last-child a {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.kuph-services .wp-block-columns:last-of-type .wp-block-column {
    min-height: 180px;
}


/* --------------------------------------------------------------
   Managed IT process
-------------------------------------------------------------- */

.kuph-managed {
    background: #edf3f7;
}

.kuph-managed > h2 {
    max-width: 900px !important;
}

.kuph-managed > p {
    max-width: 800px !important;
    font-size: 1.08rem;
}

.kuph-managed > .wp-block-columns {
    gap: 1rem;
    margin-top: 3.5rem;
}

.kuph-managed > .wp-block-columns > .wp-block-column {
    position: relative;
    min-height: 220px;
    padding: 1.8rem;
    border: 0;
    border-radius: var(--kuph-radius);
    background: rgba(255,255,255,.78);
}

.kuph-managed > .wp-block-columns > .wp-block-column::before {
    display: flex;
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 2.3rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--kuph-dark);
    color: #fff;
    font-size: .73rem;
    font-weight: 750;
}

.kuph-managed > .wp-block-columns > .wp-block-column:nth-child(1)::before {
    content: "01";
}

.kuph-managed > .wp-block-columns > .wp-block-column:nth-child(2)::before {
    content: "02";
}

.kuph-managed > .wp-block-columns > .wp-block-column:nth-child(3)::before {
    content: "03";
}

.kuph-managed > .wp-block-columns > .wp-block-column:nth-child(4)::before {
    content: "04";
}

.kuph-managed .wp-block-column h3 {
    font-size: 1.25rem;
}

.kuph-managed .wp-block-column p {
    margin-bottom: 0;
}

.kuph-managed > p:last-child {
    margin-top: 3rem !important;
    padding-left: 1.25rem;
    border-left: 3px solid var(--kuph-dark);
    color: var(--kuph-text);
    font-weight: 550;
}


/* --------------------------------------------------------------
   Audience
-------------------------------------------------------------- */

.kuph-audience {
    background: #fff;
}

.kuph-audience > h2 {
    max-width: 970px !important;
}

.kuph-audience > p {
    max-width: 790px !important;
}

.kuph-audience > ul {
    display: grid;
    max-width: var(--kuph-max) !important;
    margin-top: 3rem !important;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
    list-style: none;
}

.kuph-audience > ul > li {
    position: relative;
    padding: 1.2rem 1.3rem 1.2rem 3.2rem;
    border: 1px solid var(--kuph-border);
    border-radius: 10px;
    background: var(--kuph-surface);
    font-weight: 550;
}

.kuph-audience > ul > li::before {
    content: "✓";
    position: absolute;
    top: 1.15rem;
    left: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--kuph-primary);
    font-weight: 800;
}


/* --------------------------------------------------------------
   Why kuph-IT
-------------------------------------------------------------- */

.kuph-why {
    border-top: 1px solid var(--kuph-border);
}

.kuph-why > h2 {
    max-width: 920px !important;
}

.kuph-why > .wp-block-columns {
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.kuph-why > .wp-block-columns > .wp-block-column {
    padding: 1.6rem 0 0;
    border: 0;
    border-top: 2px solid var(--kuph-dark);
    border-radius: 0;
}

.kuph-why .wp-block-column h3 {
    font-size: 1.3rem;
}

.kuph-why .wp-block-column p {
    max-width: 320px;
}


/* --------------------------------------------------------------
   Personal statement
-------------------------------------------------------------- */

.kuph-personal {
    padding-top: clamp(6rem, 10vw, 9rem);
    padding-bottom: clamp(6rem, 10vw, 9rem);
    background: var(--kuph-dark);
}

.kuph-personal > h2 {
    max-width: 1000px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    text-align: center;
    letter-spacing: -.045em;
}

.kuph-personal > p {
    max-width: 760px !important;
    margin: 2rem auto 0 !important;
    color: rgba(255,255,255,.7);
    font-size: 1.18rem;
    line-height: 1.7;
    text-align: center;
}

.kuph-personal::before {
    text-align: center;
}


/* --------------------------------------------------------------
   Final CTA
-------------------------------------------------------------- */

.kuph-cta {
    padding-top: clamp(6rem, 9vw, 8rem);
    padding-bottom: clamp(6rem, 9vw, 8rem);
    background: #f6f8fa;
}

.kuph-cta::before {
    text-align: center;
}

.kuph-cta > h2 {
    max-width: 850px !important;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.kuph-cta > p {
    max-width: 650px !important;
    margin-top: 1.5rem !important;
    font-size: 1.08rem;
    line-height: 1.7;
}

.kuph-cta .wp-block-button__link {
    padding: 1rem 1.5rem;
}


/* --------------------------------------------------------------
   Responsive v0.3
-------------------------------------------------------------- */

@media (max-width: 900px) {
    .kuph-audience > ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kuph-intro > .wp-block-columns > .wp-block-column,
    .kuph-managed > .wp-block-columns > .wp-block-column {
        min-height: 0;
    }
}

@media (max-width: 600px) {
    .kuph-intro > .wp-block-columns > .wp-block-column,
    .kuph-services .wp-block-column,
    .kuph-managed > .wp-block-columns > .wp-block-column {
        padding: 1.5rem;
    }

    .kuph-audience > ul {
        grid-template-columns: 1fr;
    }

    .kuph-personal > h2 {
        font-size: 2.8rem;
    }
}


/* ==============================================================
   kuph-IT Design v0.3.1
   Align section headings with section grid
============================================================== */

.kuph-intro > h2,
.kuph-services > h2,
.kuph-managed > h2,
.kuph-audience > h2,
.kuph-why > h2 {
    width: 100%;
    max-width: var(--kuph-max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-right: clamp(0rem, 18vw, 16rem);
}

/* Keep the intentionally centered statement sections centered. */

.kuph-personal > h2,
.kuph-cta > h2 {
    padding-right: 0;
}


/* ==============================================================
   kuph-IT Design v0.3.2
   Responsive navigation
============================================================== */


/* --------------------------------------------------------------
   Desktop navigation CTA
-------------------------------------------------------------- */

.kuph-main-nav .kuph-nav-cta {
    margin-left: .45rem;
}

.kuph-main-nav .kuph-nav-cta > .wp-block-navigation-item__content {
    padding: .7rem 1.1rem;
    border-radius: 8px;
    background: var(--kuph-dark);
    color: var(--kuph-white) !important;
    font-weight: 650;
    transition:
        background .2s ease,
        transform .2s ease;
}

.kuph-main-nav .kuph-nav-cta > .wp-block-navigation-item__content:hover {
    background: #26313b;
    text-decoration: none;
    transform: translateY(-1px);
}


/* --------------------------------------------------------------
   Mobile navigation
-------------------------------------------------------------- */

@media (max-width: 700px) {

    /*
     * backdrop-filter may establish a containing block for fixed
     * descendants. The WordPress navigation overlay itself is fixed,
     * therefore we deliberately disable it on mobile.
     */
    .kuph-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #fff;
    }

    .kuph-header-inner {
        min-height: 74px;
        padding-top: .8rem;
        padding-bottom: .8rem;
    }

    .kuph-main-nav {
        margin-left: auto;
    }

    /*
     * Burger button
     */
    .kuph-main-nav
    .wp-block-navigation__responsive-container-open {
        display: flex;
        width: 44px;
        height: 44px;
        padding: 0;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        color: var(--kuph-dark);
    }

    .kuph-main-nav
    .wp-block-navigation__responsive-container-open:hover {
        background: var(--kuph-surface);
    }

    /*
     * Full-screen WP navigation overlay
     */
    .kuph-main-nav
    .wp-block-navigation__responsive-container.is-menu-open {
        position: fixed;
        inset: 0;
        z-index: 999999;
        display: flex;
        width: 100vw;
        height: 100dvh;
        max-width: none;
        padding: 0;
        overflow-y: auto;
        background: #fff;
        color: var(--kuph-dark);
    }

    .kuph-main-nav
    .wp-block-navigation__responsive-container-content {
        display: flex;
        width: 100%;
        min-height: 100%;
        padding: 6.5rem 1.25rem 2rem;
        flex-direction: column;
        align-items: stretch;
    }

    /*
     * Close button
     */
    .kuph-main-nav
    .wp-block-navigation__responsive-container-close {
        top: 1rem;
        right: 1rem;
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        color: var(--kuph-dark);
    }

    /*
     * Menu list
     */
    .kuph-main-nav
    .wp-block-navigation__responsive-container.is-menu-open
    .wp-block-navigation__container {
        display: flex;
        width: 100%;
        gap: 0;
        flex-direction: column;
        align-items: stretch;
    }

    .kuph-main-nav
    .wp-block-navigation__responsive-container.is-menu-open
    .wp-block-navigation-item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid var(--kuph-border);
    }

    .kuph-main-nav
    .wp-block-navigation__responsive-container.is-menu-open
    .wp-block-navigation-item__content {
        display: block;
        width: 100%;
        padding: 1.15rem 0;
        color: var(--kuph-dark) !important;
        font-size: 1.45rem;
        font-weight: 650;
        line-height: 1.2;
    }

    /*
     * CTA becomes a large button at the bottom of the menu.
     */
    .kuph-main-nav
    .wp-block-navigation__responsive-container.is-menu-open
    .kuph-nav-cta {
        margin: 2rem 0 0;
        border-bottom: 0;
    }

    .kuph-main-nav
    .wp-block-navigation__responsive-container.is-menu-open
    .kuph-nav-cta > .wp-block-navigation-item__content {
        padding: 1rem 1.2rem;
        border-radius: 8px;
        background: var(--kuph-dark);
        color: #fff !important;
        font-size: 1rem;
        text-align: center;
    }
}


/* --------------------------------------------------------------
   Small phone refinement
-------------------------------------------------------------- */

@media (max-width: 420px) {

    .kuph-brand {
        font-size: 1.35rem;
    }

    .kuph-hero {
        padding-top: 4.2rem;
    }

    .kuph-hero h1 {
        font-size: clamp(3rem, 14vw, 4.2rem);
        line-height: 1.01;
    }

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

    .kuph-hero .wp-block-button {
        width: 100%;
    }

    .kuph-hero .wp-block-button__link {
        width: 100%;
        text-align: center;
    }
}


/* ==============================================================
   kuph-IT Design v0.3.3
   Contact page refinement
============================================================== */

.page-id-936 .kuph-page > .wp-block-post-content {
    max-width: 900px;
}

.page-id-936 .kuph-page > .wp-block-post-content .wp-block-columns {
    gap: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.page-id-936 .kuph-page > .wp-block-post-content .wp-block-columns > .wp-block-column {
    display: flex;
    min-height: 285px;
    padding: 2rem;
    flex-direction: column;
    border: 1px solid var(--kuph-border);
    border-radius: var(--kuph-radius);
    background: var(--kuph-surface);
}

.page-id-936 .kuph-page > .wp-block-post-content .wp-block-columns h3 {
    margin-top: 0;
    font-size: 1.35rem;
}

.page-id-936 .kuph-page > .wp-block-post-content .wp-block-columns p {
    color: var(--kuph-muted);
}

.page-id-936 .kuph-page > .wp-block-post-content .wp-block-columns .wp-block-buttons {
    margin-top: auto;
    padding-top: 1.5rem;
}

.page-id-936 .kuph-page > .wp-block-post-content .wp-block-columns .wp-block-button__link {
    padding: .85rem 1.2rem;
    border-radius: 8px;
}

.page-id-936 .kuph-page > .wp-block-post-content .wp-block-columns .wp-block-column > p:last-child {
    margin-top: 1rem;
    margin-bottom: 0;
}

.page-id-936 .kuph-page > .wp-block-post-content .wp-block-columns .wp-block-column > p:last-child a {
    font-weight: 600;
}

.page-id-936 .wp-block-separator {
    margin-top: 4rem;
    margin-bottom: 4rem;
    border-color: var(--kuph-border);
    opacity: 1;
}

.page-id-936 .wp-block-separator + h2 {
    margin-top: 0;
}

.page-id-936 .wp-block-separator + h2 + ul {
    display: grid;
    margin-top: 2rem;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
    list-style: none;
}

.page-id-936 .wp-block-separator + h2 + ul li {
    position: relative;
    padding: 1rem 1rem 1rem 2.8rem;
    border: 1px solid var(--kuph-border);
    border-radius: 9px;
    background: #fff;
}

.page-id-936 .wp-block-separator + h2 + ul li::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    color: var(--kuph-primary);
    font-weight: 800;
}

@media (max-width: 600px) {
    .page-id-936 .kuph-page > .wp-block-post-content .wp-block-columns > .wp-block-column {
        min-height: 0;
        padding: 1.5rem;
    }

    .page-id-936 .wp-block-separator + h2 + ul {
        grid-template-columns: 1fr;
    }

    .page-id-936 .wp-block-separator {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}


/* ==============================================================
   kuph-IT Design v0.4
   Brand system
============================================================== */

/*
 * Original kuph-IT brand cyan:
 * #00A0C8
 *
 * For normal text and links we use the darker accessible
 * companion color #007C9B.
 */

a {
    color: var(--kuph-primary-ink);
}

.kuph-intro::before,
.kuph-services::before,
.kuph-managed::before,
.kuph-audience::before,
.kuph-why::before,
.kuph-cta::before {
    color: var(--kuph-primary-ink);
}

.kuph-services .wp-block-column a {
    color: var(--kuph-primary-ink);
}

.kuph-audience > ul > li::before,
.page-id-936 .wp-block-separator + h2 + ul li::before {
    color: var(--kuph-primary);
}

/* Small visual brand accent */
.kuph-intro::before,
.kuph-services::before,
.kuph-managed::before,
.kuph-audience::before,
.kuph-why::before,
.kuph-cta::before {
    padding-left: .85rem;
    border-left: 3px solid var(--kuph-primary);
}

/* Keep dark areas intentionally restrained */
.kuph-personal::before {
    padding-left: 0;
    border-left: 0;
    color: rgba(255,255,255,.55);
}

/* Contact information */
.page-id-936 .kuph-page > .wp-block-post-content .wp-block-columns .wp-block-column > p:last-child a {
    color: var(--kuph-primary-ink);
}

/* Keyboard focus */
a:focus-visible,
button:focus-visible,
.wp-block-button__link:focus-visible {
    outline: 3px solid var(--kuph-primary);
    outline-offset: 3px;
}


/* ==============================================================
   kuph-IT Design v0.5
   Service pages
============================================================== */

.kuph-service-page {
    max-width: none !important;
}

.kuph-service-page > .wp-block-group {
    padding-top: clamp(4rem, 8vw, 7rem);
    padding-bottom: clamp(4rem, 8vw, 7rem);
}

.kuph-service-page > .wp-block-group > * {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.kuph-service-page .kuph-eyebrow {
    margin-bottom: 1rem;
    color: var(--kuph-primary-ink, #007C9B);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.kuph-service-page h1 {
    max-width: 900px;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.kuph-service-page h2 {
    max-width: 800px;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.kuph-service-page h3 {
    margin-top: 0;
    margin-bottom: .75rem;
    font-size: 1.2rem;
    line-height: 1.25;
}

.kuph-service-page .kuph-lead,
.kuph-service-page .kuph-section-lead {
    max-width: 760px;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.6;
}

.kuph-service-hero {
    padding-top: clamp(5rem, 10vw, 9rem) !important;
    padding-bottom: clamp(5rem, 9vw, 8rem) !important;
}

.kuph-service-hero .kuph-lead {
    margin-left: 0;
    margin-right: 0;
}

.kuph-service-hero-actions {
    margin-top: 2.25rem;
}

.kuph-service-meta {
    margin-top: 2.25rem;
    color: #65717c;
    font-size: .92rem;
}

.kuph-service-intro {
    border-top: 1px solid #e5eaee;
}

.kuph-service-intro p:not(.kuph-eyebrow) {
    max-width: 800px;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.08rem;
    line-height: 1.75;
}

.kuph-service-section-soft {
    background: #f5f7f9;
}

.kuph-service-cards {
    gap: 1.25rem;
    margin-top: 2rem;
}

.kuph-service-cards + .kuph-service-cards {
    margin-top: 1.25rem;
}

.kuph-service-cards > .wp-block-column {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid #e1e6ea;
    border-radius: 14px;
    background: #fff;
}

.kuph-service-cards p {
    margin-bottom: 0;
    color: #52606c;
    line-height: 1.65;
}

.kuph-service-highlight {
    background: #111820;
    color: #fff;
}

.kuph-service-highlight .kuph-eyebrow {
    color: #6bd0e8;
}

.kuph-service-highlight h2 {
    color: #fff;
}

.kuph-service-highlight .kuph-section-lead {
    margin-left: 0;
    margin-right: 0;
    color: rgba(255,255,255,.76);
}

.kuph-check-list {
    max-width: 820px !important;
    margin-top: 2.5rem !important;
    padding-left: 0;
    list-style: none;
}

.kuph-check-list li {
    position: relative;
    margin: 0;
    padding: 1.1rem 0 1.1rem 2rem;
    border-top: 1px solid rgba(255,255,255,.13);
    color: rgba(255,255,255,.9);
}

.kuph-check-list li:last-child {
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.kuph-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--kuph-primary, #00A0C8);
    font-weight: 700;
}

.kuph-process {
    gap: 1.25rem;
    margin-top: 3rem;
}

.kuph-process > .wp-block-column {
    padding-top: 1.5rem;
    border-top: 2px solid #dce3e8;
}

.kuph-process-number {
    margin: 0 0 2rem;
    color: var(--kuph-primary-ink, #007C9B);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.kuph-process p:last-child {
    color: #52606c;
    line-height: 1.65;
}

.kuph-service-audience {
    background: var(--kuph-primary-soft, #E8F8FC);
}

.kuph-service-audience p {
    max-width: 800px;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.08rem;
    line-height: 1.75;
}

.kuph-related-cards {
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.kuph-related-cards > .wp-block-column {
    padding: 1.75rem;
    border: 1px solid #e1e6ea;
    border-radius: 14px;
}

.kuph-related-cards h3 a {
    color: #17212b;
    text-decoration: none;
}

.kuph-related-cards h3 a:hover {
    color: var(--kuph-primary-ink, #007C9B);
}

.kuph-related-cards p {
    margin-bottom: 0;
    color: #52606c;
    line-height: 1.65;
}

.kuph-service-cta {
    background: #111820;
    color: #fff;
}

.kuph-service-cta h2 {
    color: #fff;
}

.kuph-service-cta > p {
    max-width: 720px;
    margin-left: 0;
    margin-right: 0;
    color: rgba(255,255,255,.75);
    font-size: 1.1rem;
    line-height: 1.7;
}

.kuph-service-cta .wp-block-buttons {
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .kuph-service-cards,
    .kuph-process,
    .kuph-related-cards {
        flex-wrap: wrap !important;
    }

    .kuph-service-cards > .wp-block-column,
    .kuph-process > .wp-block-column,
    .kuph-related-cards > .wp-block-column {
        flex-basis: calc(50% - .75rem) !important;
    }
}

@media (max-width: 650px) {
    .kuph-service-page > .wp-block-group {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }

    .kuph-service-hero {
        padding-top: 4.5rem !important;
    }

    .kuph-service-cards > .wp-block-column,
    .kuph-process > .wp-block-column,
    .kuph-related-cards > .wp-block-column {
        flex-basis: 100% !important;
    }

    .kuph-service-meta {
        line-height: 1.7;
    }
}


/* ==============================================================
   kuph-IT Design v0.5
   Service pages
============================================================== */

.kuph-service-page {
    max-width: none !important;
}

.kuph-service-page > .wp-block-group {
    padding-top: clamp(4rem, 8vw, 7rem);
    padding-bottom: clamp(4rem, 8vw, 7rem);
}

.kuph-service-page > .wp-block-group > * {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.kuph-service-page .kuph-eyebrow {
    margin-bottom: 1rem;
    color: var(--kuph-primary-ink, #007C9B);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.kuph-service-page h1 {
    max-width: 900px;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.kuph-service-page h2 {
    max-width: 800px;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.kuph-service-page h3 {
    margin-top: 0;
    margin-bottom: .75rem;
    font-size: 1.2rem;
    line-height: 1.25;
}

.kuph-service-page .kuph-lead,
.kuph-service-page .kuph-section-lead {
    max-width: 760px;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.6;
}

.kuph-service-hero {
    padding-top: clamp(5rem, 10vw, 9rem) !important;
    padding-bottom: clamp(5rem, 9vw, 8rem) !important;
}

.kuph-service-hero .kuph-lead {
    margin-left: 0;
    margin-right: 0;
}

.kuph-service-hero-actions {
    margin-top: 2.25rem;
}

.kuph-service-meta {
    margin-top: 2.25rem;
    color: #65717c;
    font-size: .92rem;
}

.kuph-service-intro {
    border-top: 1px solid #e5eaee;
}

.kuph-service-intro p:not(.kuph-eyebrow) {
    max-width: 800px;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.08rem;
    line-height: 1.75;
}

.kuph-service-section-soft {
    background: #f5f7f9;
}

.kuph-service-cards {
    gap: 1.25rem;
    margin-top: 2rem;
}

.kuph-service-cards + .kuph-service-cards {
    margin-top: 1.25rem;
}

.kuph-service-cards > .wp-block-column {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid #e1e6ea;
    border-radius: 14px;
    background: #fff;
}

.kuph-service-cards p {
    margin-bottom: 0;
    color: #52606c;
    line-height: 1.65;
}

.kuph-service-highlight {
    background: #111820;
    color: #fff;
}

.kuph-service-highlight .kuph-eyebrow {
    color: #6bd0e8;
}

.kuph-service-highlight h2 {
    color: #fff;
}

.kuph-service-highlight .kuph-section-lead {
    margin-left: 0;
    margin-right: 0;
    color: rgba(255,255,255,.76);
}

.kuph-check-list {
    max-width: 820px !important;
    margin-top: 2.5rem !important;
    padding-left: 0;
    list-style: none;
}

.kuph-check-list li {
    position: relative;
    margin: 0;
    padding: 1.1rem 0 1.1rem 2rem;
    border-top: 1px solid rgba(255,255,255,.13);
    color: rgba(255,255,255,.9);
}

.kuph-check-list li:last-child {
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.kuph-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--kuph-primary, #00A0C8);
    font-weight: 700;
}

.kuph-process {
    gap: 1.25rem;
    margin-top: 3rem;
}

.kuph-process > .wp-block-column {
    padding-top: 1.5rem;
    border-top: 2px solid #dce3e8;
}

.kuph-process-number {
    margin: 0 0 2rem;
    color: var(--kuph-primary-ink, #007C9B);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.kuph-process p:last-child {
    color: #52606c;
    line-height: 1.65;
}

.kuph-service-audience {
    background: var(--kuph-primary-soft, #E8F8FC);
}

.kuph-service-audience p {
    max-width: 800px;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.08rem;
    line-height: 1.75;
}

.kuph-related-cards {
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.kuph-related-cards > .wp-block-column {
    padding: 1.75rem;
    border: 1px solid #e1e6ea;
    border-radius: 14px;
}

.kuph-related-cards h3 a {
    color: #17212b;
    text-decoration: none;
}

.kuph-related-cards h3 a:hover {
    color: var(--kuph-primary-ink, #007C9B);
}

.kuph-related-cards p {
    margin-bottom: 0;
    color: #52606c;
    line-height: 1.65;
}

.kuph-service-cta {
    background: #111820;
    color: #fff;
}

.kuph-service-cta h2 {
    color: #fff;
}

.kuph-service-cta > p {
    max-width: 720px;
    margin-left: 0;
    margin-right: 0;
    color: rgba(255,255,255,.75);
    font-size: 1.1rem;
    line-height: 1.7;
}

.kuph-service-cta .wp-block-buttons {
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .kuph-service-cards,
    .kuph-process,
    .kuph-related-cards {
        flex-wrap: wrap !important;
    }

    .kuph-service-cards > .wp-block-column,
    .kuph-process > .wp-block-column,
    .kuph-related-cards > .wp-block-column {
        flex-basis: calc(50% - .75rem) !important;
    }
}

@media (max-width: 650px) {
    .kuph-service-page > .wp-block-group {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }

    .kuph-service-hero {
        padding-top: 4.5rem !important;
    }

    .kuph-service-cards > .wp-block-column,
    .kuph-process > .wp-block-column,
    .kuph-related-cards > .wp-block-column {
        flex-basis: 100% !important;
    }

    .kuph-service-meta {
        line-height: 1.7;
    }
}


/* ==============================================================
   kuph-IT Design v0.5.1
   Service page layout corrections
============================================================== */

/*
 * WordPress constrains normal page content to the global content width.
 * Service pages intentionally break out of that constraint so that
 * section backgrounds can span the viewport while their content remains
 * centered and readable.
 */
.kuph-service-page {
    position: relative;
    left: 50%;
    width: min(1180px, calc(100vw - 2.5rem)) !important;
    max-width: 1180px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: translateX(-50%) !important;
}

/*
 * Every major service section spans the available width.
 */
.kuph-service-page > .wp-block-group {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;

    padding-left: clamp(1.5rem, 5vw, 4rem);
    padding-right: clamp(1.5rem, 5vw, 4rem);
}

/*
 * Content inside the sections gets a generous desktop width.
 */
.kuph-service-page > .wp-block-group > * {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

/*
 * Preserve deliberately narrower editorial elements.
 */
.kuph-service-page > .wp-block-group > h1 {
    max-width: 900px;
}

.kuph-service-page > .wp-block-group > h2 {
    max-width: 800px;
}

.kuph-service-page > .wp-block-group > .kuph-lead,
.kuph-service-page > .wp-block-group > .kuph-section-lead {
    max-width: 760px;
}

/*
 * Hero content should visually align to one column instead of appearing
 * centered inside a much narrower WordPress content container.
 */
.kuph-service-hero > * {
    margin-left: auto;
    margin-right: auto;
}

.kuph-service-hero .kuph-lead {
    margin-left: auto;
    margin-right: auto;
}

/*
 * Editorial intro stays comfortably readable.
 */
.kuph-service-intro > h2,
.kuph-service-intro > p {
    max-width: 800px;
}

/*
 * Cards benefit most from the wider layout.
 */
.kuph-service-cards,
.kuph-process,
.kuph-related-cards {
    width: 100%;
    max-width: 1180px !important;
}

/*
 * Dark sections now use their full width and get real inner spacing.
 */
.kuph-service-highlight,
.kuph-service-cta {
    padding-left: clamp(1.5rem, 5vw, 4rem);
    padding-right: clamp(1.5rem, 5vw, 4rem);
}

.kuph-service-highlight > *,
.kuph-service-cta > * {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

/*
 * Keep text measures inside dark sections readable.
 */
.kuph-service-highlight > h2,
.kuph-service-cta > h2 {
    max-width: 800px;
}

.kuph-service-highlight > .kuph-section-lead,
.kuph-service-cta > p {
    max-width: 760px;
}

/*
 * Buttons/lists must not inherit an overly narrow text measure.
 */
.kuph-service-highlight > .kuph-check-list {
    max-width: 850px;
}

.kuph-service-cta > .wp-block-buttons {
    max-width: 1180px;
}

/*
 * Mobile refinements.
 */
@media (max-width: 650px) {

    .kuph-service-page > .wp-block-group {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .kuph-service-hero {
        padding-top: 4rem !important;
        padding-bottom: 4.5rem !important;
    }

    .kuph-service-page h1 {
        font-size: clamp(2.8rem, 13vw, 3.6rem);
        line-height: 1;
    }

    .kuph-service-page h2 {
        font-size: 2rem;
        line-height: 1.08;
    }

    .kuph-service-cards > .wp-block-column,
    .kuph-related-cards > .wp-block-column {
        padding: 1.5rem;
    }

    .kuph-service-highlight,
    .kuph-service-cta {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}


/* ==============================================================
   kuph-IT Design v0.5.2
   Service page grid alignment
============================================================== */

.kuph-service-page {
    --kuph-service-wide: 1180px;
}

/*
 * Narrow editorial elements keep their readable text width,
 * but are aligned to the left edge of the common 1180px grid
 * instead of being individually centered.
 */
.kuph-service-page > .wp-block-group > h1,
.kuph-service-page > .wp-block-group > h2,
.kuph-service-page > .wp-block-group > .kuph-lead,
.kuph-service-page > .wp-block-group > .kuph-section-lead,
.kuph-service-page > .wp-block-group > .kuph-check-list,
.kuph-service-page > .wp-block-group > p:not(.kuph-eyebrow):not(.kuph-service-meta) {
    margin-left: max(
        0px,
        calc((100% - var(--kuph-service-wide)) / 2)
    ) !important;

    margin-right: auto !important;
}

/*
 * Keep labels and wide components on exactly the same grid.
 */
.kuph-service-page > .wp-block-group > .kuph-eyebrow,
.kuph-service-page > .wp-block-group > .kuph-service-meta,
.kuph-service-page > .wp-block-group > .wp-block-buttons,
.kuph-service-page > .wp-block-group > .kuph-service-cards,
.kuph-service-page > .wp-block-group > .kuph-process,
.kuph-service-page > .wp-block-group > .kuph-related-cards {
    width: 100%;
    max-width: var(--kuph-service-wide) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/*
 * Slightly tighter desktop hero.
 * Still generous, but more of the actual service appears above the fold.
 */
@media (min-width: 901px) {
    .kuph-service-hero {
        padding-top: clamp(4.5rem, 6vw, 6.5rem) !important;
        padding-bottom: clamp(4.5rem, 6vw, 6.5rem) !important;
    }
}

/*
 * On smaller screens there is no separate wide-grid offset.
 */
@media (max-width: 1180px) {
    .kuph-service-page > .wp-block-group > h1,
    .kuph-service-page > .wp-block-group > h2,
    .kuph-service-page > .wp-block-group > .kuph-lead,
    .kuph-service-page > .wp-block-group > .kuph-section-lead,
    .kuph-service-page > .wp-block-group > .kuph-check-list,
    .kuph-service-page > .wp-block-group > p:not(.kuph-eyebrow):not(.kuph-service-meta) {
        margin-left: 0 !important;
    }
}


/* ==============================================================
   kuph-IT Design v0.5.3
   Service section inner spacing
============================================================== */

/*
 * Boxed service sections need a clear inner gutter.
 * Their outer width stays unchanged.
 */
.kuph-service-section-soft,
.kuph-service-highlight,
.kuph-service-audience,
.kuph-service-cta {
    padding-left: clamp(2rem, 4vw, 4rem) !important;
    padding-right: clamp(2rem, 4vw, 4rem) !important;
}

/*
 * Keep all text and components aligned to one inner edge.
 */
.kuph-service-section-soft > *,
.kuph-service-highlight > *,
.kuph-service-audience > *,
.kuph-service-cta > * {
    margin-left: 0 !important;
    margin-right: auto !important;
}

/*
 * Wide components may still use the full usable section width.
 */
.kuph-service-section-soft > .kuph-service-cards,
.kuph-service-highlight > .kuph-check-list,
.kuph-service-cta > .wp-block-buttons {
    max-width: 100% !important;
}

/*
 * Preserve readable text measures.
 */
.kuph-service-section-soft > h2,
.kuph-service-highlight > h2,
.kuph-service-audience > h2,
.kuph-service-cta > h2 {
    max-width: 800px !important;
}

.kuph-service-section-soft > .kuph-section-lead,
.kuph-service-highlight > .kuph-section-lead,
.kuph-service-audience > p,
.kuph-service-cta > p {
    max-width: 760px !important;
}

@media (max-width: 650px) {
    .kuph-service-section-soft,
    .kuph-service-highlight,
    .kuph-service-audience,
    .kuph-service-cta {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}


/* ==============================================================
   kuph-IT Design v0.5.4
   Managed service highlight inner gutter
============================================================== */

/*
 * Keep the existing service-page grid untouched.
 * Only direct content inside the dark highlight panel is aligned
 * to the panel's own inner padding.
 */
.kuph-service-page > .wp-block-group.kuph-service-highlight > .kuph-eyebrow,
.kuph-service-page > .wp-block-group.kuph-service-highlight > h2,
.kuph-service-page > .wp-block-group.kuph-service-highlight > .kuph-section-lead,
.kuph-service-page > .wp-block-group.kuph-service-highlight > .kuph-check-list {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.kuph-service-page > .wp-block-group.kuph-service-highlight {
    padding-left: clamp(3rem, 5vw, 4.5rem) !important;
    padding-right: clamp(3rem, 5vw, 4.5rem) !important;
}

.kuph-service-page > .wp-block-group.kuph-service-highlight > h2 {
    max-width: 800px !important;
}

.kuph-service-page > .wp-block-group.kuph-service-highlight > .kuph-section-lead {
    max-width: 760px !important;
}

.kuph-service-page > .wp-block-group.kuph-service-highlight > .kuph-check-list {
    width: 100% !important;
    max-width: 850px !important;
}

@media (max-width: 650px) {
    .kuph-service-page > .wp-block-group.kuph-service-highlight {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}


/* ==============================================================
   kuph-IT Design v0.5.6
   Legal pages
============================================================== */

.kuph-legal-page .kuph-service-intro > h2:not(:first-child) {
    margin-top: 2.5rem;
}

.kuph-legal-page .kuph-service-intro > h2 {
    margin-bottom: 1rem;
}

.kuph-legal-page .kuph-service-intro > p {
    line-height: 1.7;
}

/* ==============================================================
   kuph-IT Design v0.5.8
   Header logo
============================================================== */

.kuph-brand-logo {
    margin: 0;
    line-height: 0;
}

.kuph-brand-logo a {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.kuph-brand-logo img {
    display: block;
    width: auto;
    height: 32px;
    max-width: none;
}

@media (max-width: 782px) {
    .kuph-brand-logo img {
        height: 28px;
    }
}


/* ==============================================================
   kuph-IT Design v0.6.0
   About / Partner network
============================================================== */

.kuph-about-personal-columns {
    gap: clamp(2.5rem, 6vw, 5.5rem);
}

.kuph-about-photo {
    margin: 0;
}

.kuph-about-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
}

.kuph-about-name {
    margin-top: 2rem;
    line-height: 1.55;
}

.kuph-partner-category {
    margin-bottom: 0.65rem;
    color: #007C9B;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kuph-partner-cards h3 {
    margin-top: 0;
}

@media (max-width: 782px) {
    .kuph-about-personal-columns {
        gap: 2rem;
    }

    .kuph-about-photo {
        max-width: 32rem;
    }
}


/* ==============================================================
   kuph-IT Design v0.6.1
   Partner & technology network
============================================================== */

.kuph-partner-cards a {
    color: inherit;
    text-decoration: none;
}

.kuph-partner-cards a:hover {
    color: #007C9B;
}

.kuph-partner-status-grid {
    margin-top: 2.5rem;
    gap: 1rem;
}

.kuph-partner-status {
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(15, 27, 36, 0.12);
    border-radius: 0.75rem;
}

.kuph-partner-status h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
}

.kuph-partner-status p {
    margin: 0;
    color: #007C9B;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.kuph-technologies-used {
    margin-top: 2.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(15, 27, 36, 0.12);
}

.kuph-technologies-used h3 {
    margin-bottom: 0.65rem;
    font-size: 1rem;
}

.kuph-technologies-used p {
    margin: 0;
    color: rgba(15, 27, 36, 0.68);
    font-size: 0.95rem;
}

.kuph-technologies-used span {
    margin: 0 0.5rem;
    color: #00A0C8;
}


/* ==============================================================
   kuph-IT Design v0.6.2
   Partner brands / technology stack
============================================================== */

.kuph-partner-status-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.75rem;
}

.kuph-partner-status {
    min-width: 0;
    padding: 1.5rem;
    border: 1px solid rgba(15, 27, 36, 0.11);
    border-radius: 0.8rem;
    background: #fff;
}

.kuph-partner-brand {
    display: flex;
    align-items: center;
    min-height: 3rem;
    margin-bottom: 1.25rem;
    color: #0f1b24;
    font-size: 1.35rem;
    font-weight: 750;
    letter-spacing: -0.025em;
}

/*
 * Später wird innerhalb .kuph-partner-brand einfach
 * das jeweilige offizielle Logo eingesetzt.
 */
.kuph-partner-brand img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 2.6rem;
    object-fit: contain;
    object-position: left center;
}

.kuph-partner-status h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
}

.kuph-partner-status p {
    margin: 0;
    color: #007C9B;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.035em;
}


.kuph-technology-stack {
    border-top: 1px solid rgba(15, 27, 36, 0.1);
}

.kuph-technology-groups {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2.75rem;
}

.kuph-tech-group {
    min-width: 0;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 0.8rem;
    background: #f4f7f8;
}

.kuph-tech-group h3 {
    margin: 0 0 1.1rem;
    font-size: 1.08rem;
}

.kuph-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0;
}

.kuph-tech-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(15, 27, 36, 0.11);
    border-radius: 999px;
    background: #fff;
    color: rgba(15, 27, 36, 0.8);
    font-size: 0.82rem;
    line-height: 1.25;
    white-space: nowrap;
}

.kuph-technology-note {
    max-width: 52rem;
    margin-top: 2rem;
    color: rgba(15, 27, 36, 0.68);
    font-size: 0.92rem;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .kuph-partner-status-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .kuph-partner-status-grid,
    .kuph-technology-groups {
        grid-template-columns: 1fr;
    }
}


/* ==============================================================
   kuph-IT Design v0.6.3
   Compact technology stack
============================================================== */

.kuph-technology-stack-compact .kuph-tech-cloud {
    margin-top: 2.5rem;
    padding: clamp(1.6rem, 4vw, 2.5rem);
    border-radius: 0.9rem;
    background: #f4f7f8;
}

.kuph-tech-tags-large {
    gap: 0.65rem;
}

.kuph-tech-tags-large span {
    padding: 0.55rem 0.8rem;
    background: #fff;
    font-size: 0.86rem;
}

.kuph-tech-more {
    margin: 1.3rem 0 0;
    color: #007C9B;
    font-size: 0.9rem;
    font-weight: 700;
}

.kuph-technology-stack-compact .kuph-technology-note {
    margin-top: 1.5rem;
}


/* ==============================================================
   kuph-IT Design v0.6.4
   Cooperation partner logos
============================================================== */

.kuph-partner-cards > .wp-block-column {
    display: flex;
    flex-direction: column;
}

.kuph-network-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 5.5rem;
    margin: 0 0 1.35rem;
}

.kuph-network-logo a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 5.5rem;
}

.kuph-network-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 88%;
    max-height: 4.25rem;
    object-fit: contain;
    object-position: left center;
}

/* Julia Graf: Logo ist bewusst höher/kompakter aufgebaut. */
.kuph-network-logo-julia img {
    max-width: 78%;
    max-height: 5rem;
}

/* IATechnik ist sehr breit. */
.kuph-network-logo-iatechnik img {
    max-width: 92%;
    max-height: 3.6rem;
}

/* Qorton funktioniert mit etwas mehr horizontaler Präsenz. */
.kuph-network-logo-qorton img {
    max-width: 90%;
    max-height: 3.8rem;
}

.kuph-network-logo + .kuph-partner-category {
    margin-top: 0;
}

@media (max-width: 782px) {
    .kuph-network-logo,
    .kuph-network-logo a {
        min-height: 4.75rem;
    }

    .kuph-network-logo img {
        max-width: 75%;
    }
}


/* ==============================================================
   kuph-IT Design v0.6.5
   Technology partner logos
============================================================== */

.kuph-partner-status .kuph-partner-brand {
    min-height: 4.75rem;
    margin-bottom: 1rem;
}

.kuph-partner-status .kuph-partner-brand img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
}

.kuph-partner-brand-3cx img {
    max-height: 4.4rem;
}

.kuph-partner-brand-easybell img {
    max-height: 2.15rem;
}

.kuph-partner-brand-adn img {
    max-height: 2.6rem;
}

/* Microsoft bleibt bis zur Klärung bewusst typografisch. */
.kuph-partner-brand:not(:has(img)) {
    align-items: center;
}


/* ==============================================================
   kuph-IT Design v0.6.7
   Partner card alignment
============================================================== */

.kuph-partner-status-grid {
    align-items: stretch;
}

.kuph-partner-status-grid > .kuph-partner-status {
    width: 100% !important;
    height: 100%;
    margin: 0 !important;
    box-sizing: border-box;
}

.kuph-partner-status {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.kuph-partner-status > p:last-child {
    margin-top: auto;
}
