:root {
    --black: #0a0a0a;
    --dark: #141414;
    --grey-dark: #1f1f1f;
    --grey: #2a2a2a;
    --grey-mid: #666;
    --grey-light: #999;
    --white: #f0f0f0;
    --cream: #e8e4df;
    --orange: #ff6b35;
    --orange-dark: #e55a2b;
    --orange-glow: rgba(255, 107, 53, 0.4);
    --display: "Outfit", sans-serif;
    --mono: "Space Mono", monospace;
    --container-max: 1600px;
    --container-pad: clamp(1rem, 4vw, 3rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--display);
    background: var(--cream);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--orange);
    color: var(--black);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 9999;
}

.knackpunkt-theme .container,
.knackpunkt-theme .kp-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.knackpunkt-theme .site {
    min-height: 100vh;
}

.knackpunkt-theme .site-main {
    display: block;
}

.knackpunkt-theme .kp-page,
.knackpunkt-theme .kp-article {
    display: block;
}

.knackpunkt-theme .kp-section {
    padding: 8rem 0;
    position: relative;
}

.knackpunkt-theme .kp-section-dark {
    background: var(--black);
    color: var(--white);
}

.knackpunkt-theme .kp-section-light {
    background: var(--cream);
    color: var(--black);
}

.knackpunkt-theme .kp-section-accent {
    background: var(--orange);
    color: var(--black);
}

.knackpunkt-theme .kp-overline,
.knackpunkt-theme .problem-label,
.knackpunkt-theme .experience-label,
.knackpunkt-theme .when-label,
.knackpunkt-theme .calendly-label {
    font-family: var(--mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.knackpunkt-theme .kp-outline,
.knackpunkt-theme .hero-title .outline {
    -webkit-text-stroke: 2px currentColor;
    -webkit-text-fill-color: transparent;
}

.knackpunkt-theme .kp-muted {
    color: var(--grey-mid);
}

.knackpunkt-theme .kp-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2rem;
    position: relative;
}

.knackpunkt-theme .kp-card-dark {
    background: var(--grey-dark);
    color: var(--white);
    border-color: var(--grey);
}

.knackpunkt-theme .kp-card-accent {
    background: var(--orange);
    color: var(--black);
    border-color: var(--orange);
}

.knackpunkt-theme .kp-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.knackpunkt-theme .kp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.knackpunkt-theme .kp-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
}

.knackpunkt-theme .kp-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.knackpunkt-theme .kp-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    font-family: var(--mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid currentColor;
}

.knackpunkt-theme a {
    color: inherit;
}

.knackpunkt-theme img {
    display: block;
    max-width: 100%;
    height: auto;
}

.knackpunkt-theme .kp-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(10, 10, 10, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.knackpunkt-theme .kp-site-header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1.1rem var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.knackpunkt-theme .kp-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0.15rem;
    text-decoration: none;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.knackpunkt-theme .kp-brand em {
    color: var(--orange);
    font-style: normal;
}

.knackpunkt-theme .kp-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.knackpunkt-theme .kp-nav a {
    font-family: var(--mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--grey-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.knackpunkt-theme .kp-nav a:hover,
.knackpunkt-theme .kp-nav a:focus-visible {
    color: #fff;
}

body.knackpunkt-theme .kp-header-cta .elementor-button,
body.knackpunkt-theme .btn .elementor-button,
body.knackpunkt-theme .elementor-widget-button .elementor-button,
body.knackpunkt-theme .elementor-button,
body.knackpunkt-theme .elementor-button-link {
    font-family: var(--mono);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1.1rem 1.8rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0;
    border: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    appearance: none;
}

body.knackpunkt-theme .btn-primary .elementor-button,
body.knackpunkt-theme .kp-button-primary .elementor-button,
body.knackpunkt-theme .elementor-button.btn-primary,
body.knackpunkt-theme .elementor-button-link.btn-primary {
    background: var(--orange) !important;
    color: var(--black) !important;
    font-weight: 700;
}

body.knackpunkt-theme .btn-primary .elementor-button:hover,
body.knackpunkt-theme .btn-primary .elementor-button:focus-visible,
body.knackpunkt-theme .kp-button-primary .elementor-button:hover,
body.knackpunkt-theme .kp-button-primary .elementor-button:focus-visible,
body.knackpunkt-theme .elementor-button.btn-primary:hover,
body.knackpunkt-theme .elementor-button.btn-primary:focus-visible,
body.knackpunkt-theme .elementor-button-link.btn-primary:hover,
body.knackpunkt-theme .elementor-button-link.btn-primary:focus-visible {
    background: var(--white) !important;
    color: var(--black) !important;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px var(--orange-glow);
}

body.knackpunkt-theme .btn-ghost .elementor-button,
body.knackpunkt-theme .kp-button-ghost .elementor-button,
body.knackpunkt-theme .elementor-button.btn-ghost,
body.knackpunkt-theme .elementor-button-link.btn-ghost {
    background: transparent !important;
    color: var(--white) !important;
    border: 1px solid var(--grey) !important;
}

body.knackpunkt-theme .btn-ghost .elementor-button:hover,
body.knackpunkt-theme .btn-ghost .elementor-button:focus-visible,
body.knackpunkt-theme .kp-button-ghost .elementor-button:hover,
body.knackpunkt-theme .kp-button-ghost .elementor-button:focus-visible,
body.knackpunkt-theme .elementor-button.btn-ghost:hover,
body.knackpunkt-theme .elementor-button.btn-ghost:focus-visible,
body.knackpunkt-theme .elementor-button-link.btn-ghost:hover,
body.knackpunkt-theme .elementor-button-link.btn-ghost:focus-visible {
    border-color: var(--white) !important;
    background: var(--white) !important;
    color: var(--black) !important;
    transform: translateY(-2px);
}

.knackpunkt-theme .hero,
.knackpunkt-theme .problem,
.knackpunkt-theme .solution,
.knackpunkt-theme .experience,
.knackpunkt-theme .expertise,
.knackpunkt-theme .when,
.knackpunkt-theme .team,
.knackpunkt-theme .pricing,
.knackpunkt-theme .cta {
    position: relative;
}

.knackpunkt-theme .hero,
.knackpunkt-theme .solution,
.knackpunkt-theme .pricing,
.knackpunkt-theme .when {
    color: var(--white);
}

.knackpunkt-theme .hero {
    min-height: 100vh;
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.knackpunkt-theme .hero-content {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.knackpunkt-theme .hero-tag {
    font-family: var(--mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--orange);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.knackpunkt-theme .hero-tag::before,
.knackpunkt-theme .problem-label::before,
.knackpunkt-theme .when-label::before {
    content: "";
    width: 60px;
    height: 1px;
    background: currentColor;
    display: inline-block;
    flex-shrink: 0;
}

.knackpunkt-theme .hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: #fff;
}

.knackpunkt-theme .hero-title .outline,
body.knackpunkt-theme .elementor-widget-heading .elementor-heading-title,
body.knackpunkt-theme .elementor-heading-title {
    font-family: var(--display);
    color: inherit;
}

body.knackpunkt-theme .hero-title .elementor-heading-title {
    -webkit-text-stroke: 2px #fff;
    -webkit-text-fill-color: transparent;
}

body.knackpunkt-theme .problem-title .elementor-heading-title,
body.knackpunkt-theme .experience-title .elementor-heading-title,
body.knackpunkt-theme .team-title .elementor-heading-title,
body.knackpunkt-theme .pricing-title .elementor-heading-title,
body.knackpunkt-theme .when-title .elementor-heading-title,
body.knackpunkt-theme .service-title .elementor-heading-title,
body.knackpunkt-theme .formula-title .elementor-heading-title,
body.knackpunkt-theme .pricing-name .elementor-heading-title,
body.knackpunkt-theme .pricing-amount .elementor-heading-title,
body.knackpunkt-theme .team-name .elementor-heading-title,
body.knackpunkt-theme .stat-number .elementor-heading-title,
body.knackpunkt-theme .card-title .elementor-heading-title,
body.knackpunkt-theme .when-card-title .elementor-heading-title {
    font: inherit;
    color: inherit;
    line-height: inherit;
    margin: 0;
}

.knackpunkt-theme .hero-title .accent,
.knackpunkt-theme .accent {
    color: var(--orange);
}

.knackpunkt-theme .hero-desc {
    font-size: 1.1rem;
    color: var(--grey-light);
    max-width: 440px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.knackpunkt-theme .hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.knackpunkt-theme .hero-visual {
    position: relative;
    overflow: hidden;
}

.knackpunkt-theme .hero-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--grey-dark) 0%, var(--black) 100%);
}

.knackpunkt-theme .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    filter: grayscale(30%) contrast(1.1);
}

.knackpunkt-theme .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 50%);
}

.knackpunkt-theme .hero-badge {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    background: var(--orange);
    color: var(--black);
    padding: 1.5rem 2rem;
    font-family: var(--mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    max-width: 260px;
}

.knackpunkt-theme .hero-badge strong {
    display: block;
    font-family: var(--display);
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.knackpunkt-theme .marquee {
    background: var(--orange);
    color: var(--black);
    padding: 1rem 0;
    overflow: hidden;
}

.knackpunkt-theme .marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.knackpunkt-theme .marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
    flex-shrink: 0;
}

.knackpunkt-theme .marquee-item {
    font-family: var(--mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.knackpunkt-theme .marquee-item::after {
    content: "✦";
}

.knackpunkt-theme .problem,
.knackpunkt-theme .experience,
.knackpunkt-theme .team {
    padding: 8rem 0;
    background: var(--cream);
}

.knackpunkt-theme .problem-grid,
.knackpunkt-theme .experience-grid,
.knackpunkt-theme .expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.knackpunkt-theme .problem-intro,
.knackpunkt-theme .experience-text,
.knackpunkt-theme .solution-subtitle,
.knackpunkt-theme .pricing-subtitle,
.knackpunkt-theme .pricing-goal,
.knackpunkt-theme .cta-text,
.knackpunkt-theme .expertise-text,
.knackpunkt-theme .service-text,
.knackpunkt-theme .card-text,
.knackpunkt-theme .team-bio {
    font-size: 1.1rem;
    line-height: 1.8;
}

.knackpunkt-theme .problem-intro {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.knackpunkt-theme .problem-label,
.knackpunkt-theme .experience-label,
.knackpunkt-theme .when-label,
.knackpunkt-theme .team-count,
.knackpunkt-theme .pricing-note,
.knackpunkt-theme .footer-sub,
.knackpunkt-theme .calendly-label,
.knackpunkt-theme .pricing-focus,
.knackpunkt-theme .card-number,
.knackpunkt-theme .when-number,
.knackpunkt-theme .stat-label,
.knackpunkt-theme .team-role,
.knackpunkt-theme .pricing-period {
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.knackpunkt-theme .problem-label,
.knackpunkt-theme .experience-label,
.knackpunkt-theme .team-count {
    font-size: 0.8rem;
    color: var(--grey-mid);
    margin-bottom: 1.5rem;
}

.knackpunkt-theme .problem-title,
.knackpunkt-theme .experience-title,
.knackpunkt-theme .team-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.knackpunkt-theme .problem-list,
.knackpunkt-theme .experience-list,
.knackpunkt-theme .team-skills,
.knackpunkt-theme .pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.knackpunkt-theme .problem-list li,
.knackpunkt-theme .experience-list li,
.knackpunkt-theme .team-skills li,
.knackpunkt-theme .pricing-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.knackpunkt-theme .problem-list li::before,
.knackpunkt-theme .experience-list li::before,
.knackpunkt-theme .team-skills li::before,
.knackpunkt-theme .pricing-features li::before {
    content: "→";
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
}

.knackpunkt-theme .problem-highlight {
    display: inline-block;
    background: var(--black);
    color: var(--orange);
    padding: 1rem 2rem;
    font-family: var(--mono);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
    transform: rotate(-1deg);
}

.knackpunkt-theme .problem-visual {
    position: relative;
}

.knackpunkt-theme .problem-card,
.knackpunkt-theme .formula-block,
.knackpunkt-theme .service-card,
.knackpunkt-theme .when-card,
.knackpunkt-theme .stat-block,
.knackpunkt-theme .pricing-card,
.knackpunkt-theme .team-card {
    position: relative;
    transition: all 0.4s ease;
}

.knackpunkt-theme .problem-card {
    background: var(--black);
    color: var(--white);
    padding: 3rem;
    margin-bottom: 2rem;
}

.knackpunkt-theme .problem-card::before {
    content: "";
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: -1rem;
    bottom: -1rem;
    border: 2px solid var(--orange);
    z-index: -1;
}

.knackpunkt-theme .card-number {
    font-size: 0.8rem;
    color: var(--orange);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.knackpunkt-theme .card-title,
.knackpunkt-theme .formula-title,
.knackpunkt-theme .service-title,
.knackpunkt-theme .when-card-title,
.knackpunkt-theme .pricing-name,
.knackpunkt-theme .team-name,
.knackpunkt-theme .cta-title,
.knackpunkt-theme .pricing-title,
.knackpunkt-theme .solution-title {
    color: #fff;
}

.knackpunkt-theme .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.knackpunkt-theme .card-text {
    color: #c0c0c0;
}

.knackpunkt-theme .solution {
    padding: 8rem 0;
    background: var(--black);
    overflow: hidden;
}

.knackpunkt-theme .solution::before {
    content: "REGIE";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(15rem, 30vw, 40rem);
    font-weight: 900;
    color: var(--grey-dark);
    opacity: 0.3;
    white-space: nowrap;
    pointer-events: none;
}

.knackpunkt-theme .solution-header,
.knackpunkt-theme .pricing-header,
.knackpunkt-theme .when-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.knackpunkt-theme .solution-title,
.knackpunkt-theme .pricing-title,
.knackpunkt-theme .when-title,
.knackpunkt-theme .cta-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.knackpunkt-theme .solution-subtitle,
.knackpunkt-theme .pricing-subtitle,
.knackpunkt-theme .cta-text,
.knackpunkt-theme .pricing-goal {
    color: var(--grey-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.knackpunkt-theme .formula-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.knackpunkt-theme .formula-block {
    text-align: center;
    padding: 2.5rem 3rem;
    background: var(--grey-dark);
    border: 1px solid var(--grey);
}

.knackpunkt-theme .formula-block::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.knackpunkt-theme .formula-block:hover::after {
    transform: scaleX(1);
}

.knackpunkt-theme .formula-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.knackpunkt-theme .formula-label {
    font-size: 0.8rem;
    color: var(--grey-light);
    margin-bottom: 0.5rem;
}

.knackpunkt-theme .formula-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.knackpunkt-theme .formula-operator {
    font-size: 3rem;
    font-weight: 300;
    color: var(--orange);
}

.knackpunkt-theme .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--grey);
    position: relative;
    z-index: 2;
}

.knackpunkt-theme .service-card {
    background: var(--dark);
    padding: 2.5rem;
}

.knackpunkt-theme .service-card:hover {
    background: var(--grey-dark);
}

.knackpunkt-theme .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--orange);
    transition: height 0.4s ease;
}

.knackpunkt-theme .service-card:hover::before {
    height: 100%;
}

.knackpunkt-theme .service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.knackpunkt-theme .service-icon svg {
    width: 32px;
    height: 32px;
}

.knackpunkt-theme .service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.knackpunkt-theme .service-text {
    color: #b0b0b0;
}

.knackpunkt-theme .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--black);
    position: sticky;
    top: 4rem;
}

.knackpunkt-theme .stat-block {
    background: var(--black);
    padding: 3rem 2rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.knackpunkt-theme .stat-block:hover {
    background: var(--grey-dark);
}

.knackpunkt-theme .stat-block::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.knackpunkt-theme .stat-block:hover::after {
    transform: scaleX(1);
}

.knackpunkt-theme .stat-number {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: var(--display);
}

.knackpunkt-theme .stat-label {
    font-size: 0.7rem;
    color: var(--grey-light);
    line-height: 1.4;
}

.knackpunkt-theme .when {
    padding: 8rem 0;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}

.knackpunkt-theme .when::before {
    content: "WANNEER";
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    font-size: clamp(8rem, 15vw, 20rem);
    font-weight: 900;
    color: var(--grey-dark);
    opacity: 0.4;
    white-space: nowrap;
    pointer-events: none;
}

.knackpunkt-theme .when-title {
    max-width: 700px;
    margin: 0 auto;
}

.knackpunkt-theme .when-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--grey);
    position: relative;
    z-index: 2;
}

.knackpunkt-theme .when-card {
    background: #2c2c2c;
    padding: 2.5rem;
    border-top: 1px solid #3a3a3a;
}

.knackpunkt-theme .when-card:hover {
    background: #363636;
}

.knackpunkt-theme .when-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
}

.knackpunkt-theme .team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--black);
}

.knackpunkt-theme .team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.knackpunkt-theme .team-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    background: var(--white);
    padding: 2rem;
}

.knackpunkt-theme .team-card:hover {
    transform: translateX(10px);
}

.knackpunkt-theme .team-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--orange);
}

.knackpunkt-theme .team-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.knackpunkt-theme .team-card:hover .team-image {
    filter: grayscale(0%);
}

.knackpunkt-theme .team-info {
    padding: 1rem 0;
}

.knackpunkt-theme .team-role {
    font-size: 0.8rem;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.knackpunkt-theme .team-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.knackpunkt-theme .team-bio {
    color: var(--grey-mid);
    margin-bottom: 0.75rem;
}

.knackpunkt-theme .team-bio strong {
    color: var(--black);
}

.knackpunkt-theme .pricing {
    padding: 8rem 0;
    background: var(--dark);
}

.knackpunkt-theme .pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.knackpunkt-theme .pricing-card {
    background: var(--grey-dark);
    padding: 3rem;
    border: 1px solid var(--grey);
}

.knackpunkt-theme .pricing-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
}

.knackpunkt-theme .pricing-card.featured {
    background: var(--orange);
    color: var(--black);
    border-color: var(--orange);
}

.knackpunkt-theme .pricing-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--black);
    color: var(--orange);
    font-family: var(--mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 1rem;
}

.knackpunkt-theme .pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.knackpunkt-theme .pricing-desc {
    color: var(--grey-light);
    margin-bottom: 2rem;
}

.knackpunkt-theme .pricing-amount {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.knackpunkt-theme .pricing-period {
    font-size: 0.875rem;
    color: var(--grey-light);
    margin-bottom: 2rem;
}

.knackpunkt-theme .pricing-features li {
    font-size: 1rem;
    color: var(--grey-light);
    border-bottom: 1px solid var(--grey);
}

.knackpunkt-theme .pricing-card.featured .pricing-features li {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
}

.knackpunkt-theme .pricing-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.knackpunkt-theme .pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--grey-light);
    letter-spacing: 0.1em;
}

.knackpunkt-theme .cta {
    padding: 8rem 0 0;
    background: var(--orange);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.knackpunkt-theme .cta::before {
    content: "→";
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-size: 20rem;
    opacity: 0.1;
    font-weight: 900;
    pointer-events: none;
}

.knackpunkt-theme .cta-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 4rem;
}

.knackpunkt-theme .cta-title,
.knackpunkt-theme .cta-text {
    color: #fff;
}

.knackpunkt-theme .calendly-wrap {
    background: var(--black);
    margin: 0 -9999px;
    padding: 4rem 9999px;
}

.knackpunkt-theme .calendly-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.knackpunkt-theme .calendly-label {
    font-size: 0.95rem;
    color: var(--orange);
    margin-bottom: 2rem;
    text-align: center;
}

.knackpunkt-theme .calendly-inline-widget {
    min-width: 320px;
    height: 700px;
}

.knackpunkt-theme .calendly-inline-widget:empty,
.knackpunkt-theme .kp-calendly-inline-widget:empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--grey-light);
    font-family: var(--mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.knackpunkt-theme .calendly-inline-widget:empty::before,
.knackpunkt-theme .kp-calendly-inline-widget:empty::before {
    content: "Calendly wordt geladen";
}

.knackpunkt-theme .footer {
    background: var(--black);
    padding: 3.5rem 0;
    border-top: 1px solid #1f1f1f;
}

.knackpunkt-theme .footer-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.knackpunkt-theme .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex-shrink: 0;
}

.knackpunkt-theme .footer-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}

.knackpunkt-theme .footer-name em {
    color: var(--orange);
    font-style: normal;
}

.knackpunkt-theme .footer-sub {
    font-size: 0.7rem;
    color: var(--grey-mid);
}

.knackpunkt-theme .footer-divider {
    width: 1px;
    height: 3rem;
    background: #2a2a2a;
    flex-shrink: 0;
}

.knackpunkt-theme .footer-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.knackpunkt-theme .footer-legal,
.knackpunkt-theme .footer-address {
    font-size: 0.85rem;
    color: var(--grey-mid);
}

.knackpunkt-theme .footer-email {
    font-size: 0.85rem;
    color: var(--orange);
    text-decoration: none;
    transition: color 0.2s ease;
}

.knackpunkt-theme .footer-email:hover,
.knackpunkt-theme .footer-email:focus-visible {
    color: #fff;
}

.knackpunkt-theme .expertise {
    padding: 8rem 0;
    background: var(--black);
    color: #fff;
}

.knackpunkt-theme .expertise-title,
.knackpunkt-theme .expertise-text {
    color: #fff;
}

.knackpunkt-theme .expertise-text {
    color: #b0b0b0;
}

.knackpunkt-theme .expertise .experience-list li {
    color: #b0b0b0;
    border-color: rgba(255, 255, 255, 0.08);
}

.knackpunkt-theme .expertise-reasons {
    padding-top: 0.5rem;
}

.knackpunkt-theme .reason-list {
    margin-top: 1.5rem;
}

.knackpunkt-theme .reason-item {
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.knackpunkt-theme .reason-stat {
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    flex-shrink: 0;
    min-width: 4rem;
}

.knackpunkt-theme .reason-icon {
    font-size: 1.1rem;
    color: var(--orange);
    flex-shrink: 0;
    min-width: 4rem;
}

.knackpunkt-theme .reason-text {
    font-size: 1rem;
    color: #c0c0c0;
    line-height: 1.5;
}

.knackpunkt-theme .when-footer-text,
.knackpunkt-theme .team-footer-text {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
}

.knackpunkt-theme .when-footer-text {
    color: #c0c0c0;
    font-style: italic;
}

.knackpunkt-theme .team-footer-text {
    color: var(--grey-mid);
    font-weight: 600;
}

.knackpunkt-theme .animate,
.knackpunkt-theme .kp-reveal {
    opacity: 1;
    transform: none;
}

.knackpunkt-theme .kp-js .kp-reveal,
.knackpunkt-theme .kp-js .animate {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.knackpunkt-theme .kp-js .kp-reveal.is-visible,
.knackpunkt-theme .kp-js .animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.knackpunkt-theme .delay-1 { animation-delay: 0.1s; }
.knackpunkt-theme .delay-2 { animation-delay: 0.2s; }
.knackpunkt-theme .delay-3 { animation-delay: 0.3s; }
.knackpunkt-theme .delay-4 { animation-delay: 0.4s; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

@media (max-width: 1200px) {
    .knackpunkt-theme .team-card {
        grid-template-columns: 1fr;
    }

    .knackpunkt-theme .team-image {
        height: 250px;
    }
}

@media (max-width: 1024px) {
    .knackpunkt-theme .hero {
        grid-template-columns: 1fr;
    }

    .knackpunkt-theme .hero-visual {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .knackpunkt-theme .hero-content {
        background: linear-gradient(to right, var(--black) 60%, transparent);
    }

    .knackpunkt-theme .problem-grid,
    .knackpunkt-theme .experience-grid,
    .knackpunkt-theme .expertise-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .knackpunkt-theme .services-grid,
    .knackpunkt-theme .when-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .knackpunkt-theme .kp-site-header-inner,
    .knackpunkt-theme .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .knackpunkt-theme .kp-nav {
        justify-content: flex-start;
    }

    .knackpunkt-theme .team-grid,
    .knackpunkt-theme .pricing-grid,
    .knackpunkt-theme .stats-grid {
        grid-template-columns: 1fr;
    }

    .knackpunkt-theme .services-grid,
    .knackpunkt-theme .when-grid {
        grid-template-columns: 1fr;
    }

    .knackpunkt-theme .formula-section {
        flex-direction: column;
        gap: 1.5rem;
    }

    .knackpunkt-theme .formula-operator {
        transform: rotate(90deg);
    }

    .knackpunkt-theme .hero-ctas {
        flex-direction: column;
    }

    .knackpunkt-theme .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .knackpunkt-theme .team-card {
        grid-template-columns: 1fr;
    }

    .knackpunkt-theme .footer-divider {
        display: none;
    }

    .knackpunkt-theme .calendly-wrap {
        margin: 0;
        padding: 4rem 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .knackpunkt-theme .marquee-track,
    .knackpunkt-theme .kp-js .animate,
    .knackpunkt-theme .kp-js .kp-reveal {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
