/* ============================================================
   ZKB Widgets — Complete Stylesheet
   Dark theme matching React original (pixel-perfect)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Caveat:wght@400;500;600;700&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES (DARK THEME)
   ============================================================ */

:root {
    /* ── Color System (HSL matching React) ── */
    --zkb-background:          hsl(285, 50%, 15%);
    --zkb-foreground:          hsl(280, 10%, 95%);
    --zkb-card:                hsl(280, 40%, 16%);
    --zkb-card-foreground:     hsl(280, 10%, 95%);
    --zkb-primary:             hsl(295, 70%, 58%);
    --zkb-primary-foreground:  hsl(0, 0%, 100%);
    --zkb-secondary:           hsl(280, 35%, 22%);
    --zkb-muted:               hsl(280, 30%, 18%);
    --zkb-muted-foreground:    hsl(280, 15%, 60%);
    --zkb-accent:              hsl(310, 80%, 62%);
    --zkb-border:              hsl(280, 30%, 24%);
    --zkb-ring:                hsl(295, 70%, 58%);
    --zkb-destructive:         hsl(0, 84%, 60%);

    /* ── Extended Palette ── */
    --zkb-purple-deep:         #5c1f7a;
    --zkb-purple-light:        #c23cdd;
    --zkb-magenta:             #ea3ecd;
    --zkb-gold:                hsl(42, 80%, 55%);
    --zkb-gold-light:          hsl(42, 70%, 70%);
    --zkb-gold-pale:           hsl(42, 50%, 78%);
    --zkb-green:               hsl(145, 55%, 42%);
    --zkb-dark:                #030712;
    --zkb-white:               #ffffff;

    /* ── Fonts ── */
    --zkb-font-body:     "Plus Jakarta Sans", system-ui, sans-serif;
    --zkb-font-heading:  "Playfair Display", serif;
    --zkb-font-hand:     "Caveat", cursive;

    /* ── Gradients ── */
    --zkb-gradient-purple-magenta: linear-gradient(135deg, #5c1f7a, #c23cdd, #ea3ecd);
    --zkb-gradient-purple-soft:    linear-gradient(135deg, hsl(280,50%,28%), hsl(295,60%,45%));
    --zkb-gradient-gold:           linear-gradient(135deg, hsl(42,80%,60%), hsl(42,70%,70%), hsl(42,50%,78%));
    --zkb-text-gradient:           linear-gradient(135deg, #c23cdd, #ea3ecd);

    /* ── Shadows ── */
    --zkb-shadow-purple:    0 4px 30px -5px rgba(194, 60, 221, 0.35);
    --zkb-shadow-purple-lg: 0 8px 40px -8px rgba(194, 60, 221, 0.45);
    --zkb-shadow-card:      0 2px 20px -4px rgba(194, 60, 221, 0.15);
    --zkb-shadow-glow:      0 0 15px rgba(194, 60, 221, 0.4), 0 0 45px rgba(194, 60, 221, 0.15);

    /* ── Radius ── */
    --zkb-radius:     0.5rem;
    --zkb-radius-lg:  0.75rem;
    --zkb-radius-xl:  1rem;
    --zkb-radius-2xl: 1rem;
    --zkb-radius-full: 9999px;

    /* ── Transitions ── */
    --zkb-transition:      all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --zkb-transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ============================================================
   2. GLOBAL RESET & BASE
   ============================================================ */

.zkb-page,
.zkb-page *,
.zkb-page *::before,
.zkb-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.zkb-page {
    font-family: var(--zkb-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--zkb-foreground);
    background-color: var(--zkb-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.zkb-dark-theme,
body.page-template-elementor_canvas,
body.elementor-page {
    background-color: var(--zkb-background) !important;
    color: var(--zkb-foreground) !important;
    font-family: var(--zkb-font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Font utility classes */
.font-display {
    font-family: var(--zkb-font-heading) !important;
}

.font-handwritten {
    font-family: var(--zkb-font-hand) !important;
}


/* ============================================================
   3. CONTAINER & SECTION
   ============================================================ */

.zkb-container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 1024px) {
    .zkb-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.zkb-section {
    padding: 7rem 0;
    position: relative;
    background-color: var(--zkb-background);
}

.zkb-section--alt {
    background-color: var(--zkb-muted);
}

.zkb-section--blog {
    background-color: var(--zkb-background);
}

.zkb-section--contact {
    background-color: var(--zkb-muted);
}

.zkb-section--muted {
    background-color: hsl(280, 30%, 18%);
}


/* ── Section Header ── */

.zkb-section__header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.zkb-section__badge,
.zkb-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--zkb-primary);
    margin-bottom: 0.75rem;
}

.zkb-section__title,
.zkb-heading--lg {
    font-family: var(--zkb-font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--zkb-foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .zkb-section__title,
    .zkb-heading--lg {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .zkb-section__title,
    .zkb-heading--lg {
        font-size: 3rem;
    }
}

.zkb-section__subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--zkb-muted-foreground);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .zkb-section__subtitle {
        font-size: 1.125rem;
    }
}

.zkb-section__cta {
    margin-top: 2rem;
    text-align: center;
}


/* ============================================================
   4. BUTTONS
   ============================================================ */

.zkb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--zkb-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.02em;
    border-radius: var(--zkb-radius-lg);
    padding: 0.875rem 1.75rem;
    cursor: pointer;
    border: none;
    transition: var(--zkb-transition);
    position: relative;
    overflow: hidden;
}

.zkb-btn--primary {
    background: var(--zkb-gradient-purple-magenta);
    color: var(--zkb-white);
    box-shadow: var(--zkb-shadow-purple);
}

.zkb-btn--primary:hover {
    box-shadow: var(--zkb-shadow-purple-lg);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.zkb-btn--primary:active {
    transform: translateY(0);
}

.zkb-btn--outline {
    background: transparent;
    color: var(--zkb-primary);
    border: 2px solid var(--zkb-primary);
}

.zkb-btn--outline:hover {
    background: rgba(194, 60, 221, 0.1);
    border-color: var(--zkb-accent);
    color: var(--zkb-accent);
    transform: translateY(-2px);
}

.zkb-btn--lg {
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* ============================================================
   5. NAVBAR
   ============================================================ */

.zkb-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(36, 24, 51, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid hsla(280, 30%, 24%, 0.5);
    transition: var(--zkb-transition-slow);
}

.zkb-navbar.scrolled {
    background: rgba(36, 24, 51, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.zkb-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 64px;
}

@media (min-width: 1024px) {
    .zkb-navbar__inner {
        height: 80px;
        padding: 0 2rem;
    }
}

.zkb-navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.zkb-navbar__logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.zkb-navbar__brand-text {
    font-family: var(--zkb-font-hand);
    font-size: 1rem;
    color: var(--zkb-white);
    white-space: nowrap;
}

.zkb-navbar__nav {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .zkb-navbar__nav {
        display: flex;
    }
}

.zkb-navbar__link {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--zkb-muted-foreground);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--zkb-radius);
    transition: var(--zkb-transition);
    white-space: nowrap;
}

.zkb-navbar__link:hover,
.zkb-navbar__link:focus {
    color: var(--zkb-foreground);
    background: rgba(194, 60, 221, 0.08);
}

.zkb-navbar__link.active {
    color: var(--zkb-primary);
}

.zkb-navbar__cta {
    display: none;
    background: var(--zkb-gradient-purple-magenta);
    color: var(--zkb-white) !important;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.625rem 1.25rem;
    border-radius: var(--zkb-radius-lg);
    text-decoration: none;
    transition: var(--zkb-transition);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    box-shadow: var(--zkb-shadow-purple);
}

@media (min-width: 1024px) {
    .zkb-navbar__cta {
        display: inline-flex;
        align-items: center;
    }
}

.zkb-navbar__cta:hover {
    box-shadow: var(--zkb-shadow-purple-lg);
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.zkb-navbar__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--zkb-border);
    border-radius: var(--zkb-radius);
    color: var(--zkb-foreground);
    cursor: pointer;
    transition: var(--zkb-transition);
    font-size: 1.25rem;
}

@media (min-width: 1024px) {
    .zkb-navbar__toggle {
        display: none;
    }
}

.zkb-navbar__toggle:hover {
    background: rgba(194, 60, 221, 0.1);
    border-color: var(--zkb-primary);
}

.zkb-navbar__toggle svg {
    width: 20px;
    height: 20px;
}


/* ============================================================
   6. MOBILE MENU
   ============================================================ */

.zkb-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--zkb-card);
    z-index: 100;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
    border-left: 1px solid var(--zkb-border);
}

.zkb-mobile-menu--active {
    transform: translateX(0);
}

.zkb-mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--zkb-border);
    border-radius: var(--zkb-radius);
    color: var(--zkb-foreground);
    cursor: pointer;
    margin-left: auto;
    margin-bottom: 1.5rem;
    transition: var(--zkb-transition);
    font-size: 1.125rem;
}

.zkb-mobile-menu__close:hover {
    background: rgba(194, 60, 221, 0.1);
    border-color: var(--zkb-primary);
}

.zkb-mobile-menu__link {
    display: block;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--zkb-muted-foreground);
    text-decoration: none;
    border-radius: var(--zkb-radius);
    transition: var(--zkb-transition);
}

.zkb-mobile-menu__link:hover {
    color: var(--zkb-foreground);
    background: rgba(194, 60, 221, 0.08);
}

/* Mobile menu backdrop */
.zkb-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.zkb-mobile-menu-overlay--active {
    opacity: 1;
    visibility: visible;
}


/* ============================================================
   7. HERO
   ============================================================ */

.zkb-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 3rem 5rem;
    background-color: var(--zkb-background);
    overflow: hidden;
}

/* Glow effects */
.zkb-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(194, 60, 221, 0.15) 0%,
        rgba(234, 62, 205, 0.08) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.zkb-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(234, 62, 205, 0.12) 0%,
        rgba(92, 31, 122, 0.06) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.zkb-hero__container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.zkb-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .zkb-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.zkb-hero__content {
    text-align: center;
}

@media (min-width: 1024px) {
    .zkb-hero__content {
        text-align: left;
    }
}

/* ── Hero Badge ── */
.zkb-hero__badge {
    display: inline-block;
    background: var(--zkb-gradient-purple-magenta);
    color: var(--zkb-white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.375rem 1rem;
    border-radius: var(--zkb-radius-full);
    margin-bottom: 1.5rem;
}

/* ── Hero Title ── */
.zkb-hero__title {
    font-family: var(--zkb-font-heading);
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--zkb-foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .zkb-hero__title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .zkb-hero__title {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .zkb-hero__title {
        font-size: 3.75rem;
    }
}

.zkb-hero__title-highlight {
    background: var(--zkb-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero Description ── */
.zkb-hero__description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--zkb-muted-foreground);
    max-width: 520px;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .zkb-hero__description {
        font-size: 1.125rem;
    }
}

@media (max-width: 1023px) {
    .zkb-hero__description {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ── Hero Buttons ── */
.zkb-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 1023px) {
    .zkb-hero__buttons {
        justify-content: center;
    }
}

.zkb-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--zkb-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--zkb-radius-lg);
    padding: 0.875rem 1.75rem;
    cursor: pointer;
    transition: var(--zkb-transition);
    border: none;
    text-transform: none;
    letter-spacing: 0.02em;
}

.zkb-hero__btn--primary {
    background: var(--zkb-gradient-purple-magenta);
    color: var(--zkb-white);
    box-shadow: var(--zkb-shadow-purple-lg);
}

.zkb-hero__btn--primary:hover {
    box-shadow: var(--zkb-shadow-glow);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.zkb-hero__btn--secondary {
    background: transparent;
    border: 2px solid var(--zkb-primary);
    color: var(--zkb-primary);
}

.zkb-hero__btn--secondary:hover {
    background: rgba(194, 60, 221, 0.1);
    border-color: var(--zkb-accent);
    color: var(--zkb-accent);
    transform: translateY(-2px);
}

/* ── Hero Image (Logo Circle) ── */
.zkb-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.zkb-hero__logo-circle {
    position: relative;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(251, 207, 232, 0.4);
    background: linear-gradient(135deg, hsl(320, 60%, 85%), hsl(340, 70%, 88%), hsl(300, 50%, 90%));
    box-shadow: var(--zkb-shadow-purple-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zkb-breathe 6s ease-in-out infinite;
}

/* Decorative rings */
.zkb-hero__logo-circle::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(194, 60, 221, 0.1);
    pointer-events: none;
}

.zkb-hero__logo-circle::after {
    content: '';
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    border: 1px solid rgba(194, 60, 221, 0.05);
    pointer-events: none;
}

@media (min-width: 640px) {
    .zkb-hero__logo-circle {
        width: 20rem;
        height: 20rem;
    }
}

@media (min-width: 1024px) {
    .zkb-hero__logo-circle {
        width: 24rem;
        height: 24rem;
    }
}

.zkb-hero__photo {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

/* ── Scroll Indicator ── */
.zkb-hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--zkb-muted-foreground);
    animation: zkb-bounce 2s infinite;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.zkb-hero__scroll-indicator:hover {
    opacity: 1;
}

.zkb-hero__scroll-indicator svg {
    width: 24px;
    height: 24px;
}

/* ── Keyframes used by hero ── */
@keyframes zkb-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes zkb-bounce {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(-25%) translateX(-50%);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}


/* ============================================================
   8. PLAN SECTION (Puzzle SVG Grid)
   ============================================================ */

/* ── Puzzle Grid ── */
.zkb-puzzle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 48rem;
    margin: 0 auto 1rem;
    padding: 0 1rem;
    gap: 0;
}

.zkb-puzzle-piece {
    position: relative;
    margin: -6px;
}

.zkb-puzzle-piece__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.zkb-puzzle-piece__inner {
    position: relative;
    cursor: pointer;
    animation: zkb-breathe var(--breathe-duration, 3s) ease-in-out infinite;
    animation-delay: calc(var(--puzzle-delay, 0s) * 2);
    transition: transform 0.3s ease;
}

.zkb-puzzle-piece__link:hover .zkb-puzzle-piece__inner {
    transform: scale(1.05);
}

@keyframes zkb-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.zkb-puzzle-piece__link:hover .zkb-puzzle-piece__inner {
    animation-play-state: paused;
}

.zkb-puzzle-piece__svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
    transition: filter 0.3s ease;
}

.zkb-puzzle-piece__link:hover .zkb-puzzle-piece__svg {
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.35));
}

.zkb-puzzle-piece__stroke {
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.zkb-puzzle-piece__link:hover .zkb-puzzle-piece__stroke {
    opacity: 0.6;
}

.zkb-puzzle-piece__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
}

.zkb-puzzle-piece__icon-wrap {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: var(--zkb-gradient-purple-magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .zkb-puzzle-piece__icon-wrap {
        width: 3.25rem;
        height: 3.25rem;
    }
}

.zkb-puzzle-piece__link:hover .zkb-puzzle-piece__icon-wrap {
    transform: scale(1.2) rotate(8deg);
}

.zkb-puzzle-piece__icon-wrap svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--zkb-white);
}

@media (min-width: 768px) {
    .zkb-puzzle-piece__icon-wrap svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.zkb-puzzle-piece__title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--zkb-white);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    white-space: pre-line;
}

@media (min-width: 768px) {
    .zkb-puzzle-piece__title {
        font-size: 0.875rem;
    }
}

.zkb-puzzle-piece__more {
    font-size: 0.625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .zkb-puzzle-piece__more {
        font-size: 0.75rem;
    }
}

.zkb-puzzle-piece__link:hover .zkb-puzzle-piece__more {
    opacity: 1;
}

/* Handwritten "i inne" text under puzzle grid */
.zkb-puzzle-grid__handwritten {
    text-align: center;
    font-family: var(--zkb-font-hand);
    font-size: 1.25rem;
    color: var(--zkb-primary);
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* Puzzle CTA buttons */
.zkb-puzzle-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .zkb-puzzle-ctas {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* Puzzle pieces — always visible, subtle scale on load */
.zkb-puzzle-piece {
    opacity: 1;
    transform: scale(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.zkb-puzzle-piece:hover {
    transform: scale(1.05);
}

/* ── Family Plan Pillars (card grid) ── */
.zkb-plan__pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .zkb-plan__pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .zkb-plan__pillars {
        grid-template-columns: repeat(3, 1fr);
    }
}

.zkb-plan__pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.75rem 1.25rem;
    background: var(--zkb-card);
    border: 1px solid var(--zkb-border);
    border-radius: var(--zkb-radius-xl);
    text-decoration: none;
    color: var(--zkb-card-foreground);
    transition: var(--zkb-transition);
    position: relative;
    overflow: hidden;
}

.zkb-plan__pillar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--zkb-gradient-purple-magenta);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.zkb-plan__pillar:hover {
    transform: translateY(-6px);
    box-shadow: var(--zkb-shadow-purple-lg);
    border-color: rgba(194, 60, 221, 0.4);
}

.zkb-plan__pillar:hover::before {
    opacity: 0.06;
}

.zkb-plan__pillar > * {
    position: relative;
    z-index: 1;
}

.zkb-plan__pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--zkb-gradient-purple-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zkb-white);
    flex-shrink: 0;
    transition: var(--zkb-transition);
}

.zkb-plan__pillar:hover .zkb-plan__pillar-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--zkb-gradient-purple-magenta);
    box-shadow: var(--zkb-shadow-glow);
}

.zkb-plan__pillar-icon svg {
    width: 28px;
    height: 28px;
}

.zkb-plan__pillar-title {
    font-family: var(--zkb-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--zkb-foreground);
    line-height: 1.3;
    margin: 0;
}

.zkb-plan__pillar-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--zkb-muted-foreground);
    margin: 0;
}

.zkb-plan__pillar-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(194, 60, 221, 0.1);
    color: var(--zkb-primary);
    margin-top: 0.25rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--zkb-transition);
}

.zkb-plan__pillar:hover .zkb-plan__pillar-arrow {
    opacity: 1;
    transform: translateX(0);
}

.zkb-plan__pillar-arrow svg {
    width: 16px;
    height: 16px;
}

/* ── Expandable pillar cards ── */
.zkb-plan__pillar--expandable {
    cursor: pointer;
}

.zkb-plan__pillar-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    width: 100%;
}

.zkb-plan__pillar-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(194, 60, 221, 0.1);
    color: var(--zkb-primary);
    margin-top: 0.25rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.zkb-plan__pillar-chevron svg {
    width: 18px;
    height: 18px;
}

.zkb-plan__pillar--expanded .zkb-plan__pillar-chevron {
    transform: rotate(180deg);
    background: rgba(194, 60, 221, 0.2);
}

.zkb-plan__pillar-detail {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    width: 100%;
    text-align: center;
    padding: 0 0.5rem;
}

.zkb-plan__pillar--expanded .zkb-plan__pillar-detail {
    max-height: 300px;
    opacity: 1;
    padding: 0.75rem 0.5rem 0.25rem;
}

.zkb-plan__pillar-detail p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--zkb-muted-foreground);
    margin: 0;
}

.zkb-plan__pillar--expanded {
    border-color: rgba(194, 60, 221, 0.4);
    box-shadow: var(--zkb-shadow-purple-lg);
}

/* ── Plan Benefits ── */
.zkb-plan__benefits-card {
    margin-top: 3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background: var(--zkb-card);
    border: 1px solid var(--zkb-border);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
}

.zkb-plan__benefits-title {
    font-family: var(--zkb-font-hand);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--zkb-primary);
    margin-bottom: 1.75rem;
    text-align: center;
}

.zkb-plan__benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.zkb-plan__benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--zkb-foreground);
    line-height: 1.5;
}

.zkb-plan__benefit-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: hsla(150, 60%, 45%, 0.15);
    color: var(--zkb-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.zkb-plan__benefit-check svg {
    width: 16px;
    height: 16px;
}

/* ── CTA Banner ── */
.zkb-plan__cta-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--zkb-gradient-gold);
    border-radius: 1rem;
    margin-top: 2.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .zkb-plan__cta-banner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.zkb-plan__cta-banner-text {
    font-family: var(--zkb-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--zkb-dark);
    max-width: 500px;
}

.zkb-plan__cta-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--zkb-dark);
    color: var(--zkb-white);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--zkb-radius-lg);
    text-decoration: none;
    transition: var(--zkb-transition);
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.zkb-plan__cta-banner-btn:hover {
    background: var(--zkb-purple-deep);
    transform: translateY(-2px);
    box-shadow: var(--zkb-shadow-purple);
}

/* ── Personas ── */
.zkb-plan__personas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.zkb-plan__persona {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: var(--zkb-card);
    border: 1px solid var(--zkb-border);
    border-radius: var(--zkb-radius-xl);
    min-width: 120px;
    transition: var(--zkb-transition);
}

.zkb-plan__persona:hover {
    border-color: var(--zkb-primary);
    transform: translateY(-2px);
}

.zkb-plan__persona-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--zkb-gradient-purple-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zkb-white);
    font-size: 1.125rem;
}

.zkb-plan__persona-name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--zkb-muted-foreground);
    text-align: center;
}


/* ============================================================
   9. ABOUT / O MNIE — SPLIT 50/50 PARALLAX
   ============================================================ */

.zkb-about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
}

/* Left: parallax image */
.zkb-about-split__image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* parallax */
    min-height: 100%;
}

.zkb-about-split__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(285,50%,15%,0.3) 0%, hsla(295,70%,20%,0.15) 100%);
}

.zkb-about-split__badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: hsla(0,0%,100%,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--zkb-white);
    font-family: var(--zkb-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid hsla(0,0%,100%,0.2);
    z-index: 1;
}

/* Right: content */
.zkb-about-split__content {
    display: flex;
    align-items: center;
    background: var(--zkb-background);
    padding: 4rem;
}

.zkb-about-split__inner {
    max-width: 540px;
}

.zkb-about-split__subtitle {
    font-family: var(--zkb-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--zkb-primary);
    margin-bottom: 0.75rem;
}

.zkb-about-split__name {
    font-family: var(--zkb-font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--zkb-foreground);
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.zkb-about-split__role {
    font-size: 1rem;
    font-weight: 500;
    color: var(--zkb-primary);
    margin-bottom: 1.25rem;
}

.zkb-about-split__desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--zkb-muted-foreground);
    margin-bottom: 1.75rem;
}

.zkb-about-split__creds {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.zkb-about-split__creds li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--zkb-foreground);
    line-height: 1.5;
}

.zkb-about-split__check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--zkb-green);
    margin-top: 1px;
}

.zkb-about-split__check svg {
    width: 18px;
    height: 18px;
}

/* CTA button (reused) */
.zkb-about__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--zkb-gradient-purple-magenta);
    color: var(--zkb-white) !important;
    font-family: var(--zkb-font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--zkb-radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--zkb-transition);
    box-shadow: var(--zkb-shadow-purple);
}

.zkb-about__btn:hover {
    box-shadow: var(--zkb-shadow-purple-lg);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .zkb-about-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .zkb-about-split__image {
        min-height: 50vh;
        background-attachment: scroll; /* parallax off on mobile */
    }
    .zkb-about-split__content {
        padding: 2.5rem 1.5rem;
    }
    .zkb-about-split__name {
        font-size: 1.75rem;
    }
}


/* ============================================================
   10. TRUST / ZAUFANIE
   ============================================================ */

/* trust padding handled by base .zkb-section */

.zkb-trust__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .zkb-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .zkb-trust__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.zkb-trust__item {
    background: var(--zkb-card);
    border: 1px solid var(--zkb-border);
    border-radius: var(--zkb-radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: var(--zkb-transition);
    height: 100%;
}

.zkb-trust__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--zkb-shadow-card);
    border-color: rgba(194, 60, 221, 0.3);
}

.zkb-trust__item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--zkb-gradient-purple-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--zkb-white);
    font-size: 1.25rem;
}

.zkb-trust__item-icon svg {
    width: 24px;
    height: 24px;
}

.zkb-trust__item-title {
    font-family: var(--zkb-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--zkb-foreground);
    margin-bottom: 0.5rem;
}

.zkb-trust__item-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--zkb-muted-foreground);
}


/* ============================================================
   11. PROCESS / PROCES
   ============================================================ */

.zkb-process__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 640px) {
    .zkb-process__steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .zkb-process__steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.zkb-process__step {
    position: relative;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--zkb-muted);
    border: 1px solid var(--zkb-border);
    border-radius: var(--zkb-radius-xl);
    transition: var(--zkb-transition);
}

.zkb-process__step:hover {
    transform: translateY(-4px);
    box-shadow: var(--zkb-shadow-purple);
    border-color: rgba(194, 60, 221, 0.3);
}

.zkb-process__step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--zkb-gradient-purple-magenta);
    color: var(--zkb-white);
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.zkb-process__step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: hsla(280, 60%, 50%, 0.12);
    color: var(--zkb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.zkb-process__step-title {
    font-family: var(--zkb-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--zkb-foreground);
    margin-bottom: 0.5rem;
}

.zkb-process__step-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--zkb-muted-foreground);
}

/* ── Connector lines between steps (desktop) ── */
@media (min-width: 1024px) {
    .zkb-process__step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 24px;
        right: -0.75rem;
        width: 1.5rem;
        height: 2px;
        background: var(--zkb-border);
        transform: translateY(50%);
    }
}


/* ============================================================
   12. TESTIMONIALS / OPINIE
   ============================================================ */

.zkb-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .zkb-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .zkb-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.zkb-testimonial {
    background: var(--zkb-card);
    border: 1px solid var(--zkb-border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: var(--zkb-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.zkb-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--zkb-shadow-card);
    border-color: rgba(194, 60, 221, 0.3);
}

.zkb-testimonial__quote-icon {
    color: var(--zkb-primary);
    margin-bottom: 0.75rem;
}

.zkb-testimonial__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    color: var(--zkb-gold);
    font-size: 1rem;
}

.zkb-testimonial__stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.zkb-testimonial__quote {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--zkb-muted-foreground);
    font-style: italic;
    flex: 1;
    margin-bottom: 1.25rem;
}

.zkb-testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.zkb-testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--zkb-gradient-purple-magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zkb-white);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
    overflow: hidden;
}

.zkb-testimonial__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.zkb-testimonial__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--zkb-foreground);
    line-height: 1.3;
}

.zkb-testimonial__role {
    font-size: 0.8125rem;
    color: var(--zkb-muted-foreground);
    line-height: 1.3;
}


/* ============================================================
   13. BLOG
   ============================================================ */

.zkb-blog__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .zkb-blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .zkb-blog__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.zkb-blog-card {
    background: var(--zkb-card);
    border: 1px solid var(--zkb-border);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--zkb-transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--zkb-card-foreground);
}

.zkb-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--zkb-shadow-purple);
    border-color: rgba(194, 60, 221, 0.3);
}

.zkb-blog-card:hover .zkb-blog-card__image img {
    transform: scale(1.05);
}

.zkb-blog-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.zkb-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.zkb-blog-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.zkb-blog-card__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--zkb-primary);
    margin-bottom: 0.5rem;
}

.zkb-blog-card__title {
    font-family: var(--zkb-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--zkb-foreground);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zkb-blog-card__excerpt {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--zkb-muted-foreground);
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zkb-blog-card__meta {
    font-size: 0.75rem;
    color: var(--zkb-muted-foreground);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}


/* ============================================================
   14. FAQ
   ============================================================ */

.zkb-faq {
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.zkb-faq__item {
    background: var(--zkb-card);
    border: 1px solid var(--zkb-border);
    border-radius: var(--zkb-radius-xl);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.zkb-faq__item--active {
    border-color: var(--zkb-primary);
}

.zkb-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--zkb-font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--zkb-foreground);
    transition: var(--zkb-transition);
}

.zkb-faq__item--active .zkb-faq__question {
    color: var(--zkb-primary);
}

.zkb-faq__question:hover {
    color: var(--zkb-primary);
}

.zkb-faq__question-text {
    flex: 1;
}

.zkb-faq__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--zkb-muted-foreground);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zkb-faq__item--active .zkb-faq__icon {
    transform: rotate(180deg);
    color: var(--zkb-primary);
}

.zkb-faq__icon svg {
    width: 20px;
    height: 20px;
}

.zkb-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
}

.zkb-faq__item--active .zkb-faq__answer {
    max-height: 500px;
    opacity: 1;
}

.zkb-faq__answer p,
.zkb-faq__answer div {
    padding: 0 1.25rem 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--zkb-muted-foreground);
}


/* ============================================================
   15. CONTACT / KONTAKT — Wizard
   ============================================================ */

.zkb-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .zkb-contact__grid {
        grid-template-columns: 1fr 320px;
    }
}

/* Wizard card */
.zkb-contact-wizard {
    background: var(--zkb-card);
    border: 1px solid var(--zkb-border);
    border-radius: 1rem;
    padding: 1.5rem;
}
@media (min-width: 768px) {
    .zkb-contact-wizard { padding: 2rem; }
}

/* Steps indicator */
.zkb-wizard__steps {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.zkb-wizard__step {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
    background: var(--zkb-muted); color: var(--zkb-muted-foreground);
    transition: all .3s;
}
.zkb-wizard__step-check { display: none; }
.zkb-wizard__step--active {
    background: var(--zkb-gradient-purple-magenta); color: #fff;
}
.zkb-wizard__step--done {
    background: var(--zkb-gradient-purple-magenta); color: #fff;
}
.zkb-wizard__step--done .zkb-wizard__step-num { display: none; }
.zkb-wizard__step--done .zkb-wizard__step-check { display: flex; }
.zkb-wizard__line {
    flex: 1; height: 2px; border-radius: 1px;
    background: var(--zkb-border); transition: background .3s;
}
.zkb-wizard__line--done { background: var(--zkb-primary); }

/* Panels */
.zkb-wizard__panel { display: none; }
.zkb-wizard__panel--active { display: block; }
.zkb-wizard__title { font-size: 1.125rem; font-weight: 600; color: var(--zkb-foreground); margin-bottom: 0.25rem; }
.zkb-wizard__desc { font-size: 0.875rem; color: var(--zkb-muted-foreground); margin-bottom: 1.5rem; }

/* Method buttons */
.zkb-wizard__methods { display: flex; flex-direction: column; gap: 0.75rem; }
.zkb-wizard__method {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem; border-radius: 0.75rem;
    border: 2px solid var(--zkb-border);
    background: transparent; cursor: pointer;
    text-align: left; transition: all .2s;
    font-family: var(--zkb-font-body);
    color: var(--zkb-foreground);
}
.zkb-wizard__method:hover { border-color: rgba(194,60,221,0.3); background: rgba(194,60,221,0.03); }
.zkb-wizard__method--selected {
    border-color: var(--zkb-primary);
    background: rgba(194,60,221,0.05);
    box-shadow: var(--zkb-shadow-purple);
}
.zkb-wizard__method-icon {
    width: 48px; height: 48px; border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    background: rgba(194,60,221,0.1); color: var(--zkb-primary);
    transition: all .2s;
}
.zkb-wizard__method--selected .zkb-wizard__method-icon,
.zkb-wizard__method-icon--active {
    background: var(--zkb-gradient-purple-magenta); color: #fff;
}
.zkb-wizard__method-text { flex: 1; }
.zkb-wizard__method-text strong { display: block; font-size: 0.875rem; font-weight: 600; }
.zkb-wizard__method-text small { font-size: 0.75rem; color: var(--zkb-muted-foreground); }
.zkb-wizard__method-check {
    display: none; color: var(--zkb-primary); margin-left: auto; flex-shrink: 0;
}
.zkb-wizard__method--selected .zkb-wizard__method-check { display: flex; }

/* Navigation */
.zkb-wizard__nav {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid var(--zkb-border);
}
.zkb-wizard__btn-next {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.625rem 1.5rem; border-radius: 0.5rem;
    background: var(--zkb-secondary); color: var(--zkb-muted-foreground);
    font-size: 0.875rem; font-weight: 500; border: none;
    cursor: pointer; transition: all .2s;
    font-family: var(--zkb-font-body);
}
.zkb-wizard__btn-next:hover { color: var(--zkb-foreground); background: var(--zkb-border); }
.zkb-wizard__btn-submit {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.625rem 1.5rem; border-radius: 0.5rem;
    background: var(--zkb-secondary); color: var(--zkb-muted-foreground);
    font-size: 0.875rem; font-weight: 500; border: none;
    cursor: pointer; transition: all .2s;
    font-family: var(--zkb-font-body);
}
.zkb-wizard__btn-submit:hover { color: var(--zkb-foreground); background: var(--zkb-border); }
.zkb-wizard__btn-back {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.625rem 1rem; border-radius: 0.5rem;
    background: transparent; color: var(--zkb-muted-foreground);
    font-size: 0.875rem; font-weight: 500; border: none;
    cursor: pointer; transition: all .2s;
    font-family: var(--zkb-font-body);
}
.zkb-wizard__btn-back:hover { color: var(--zkb-foreground); }

/* Calendar */
.zkb-wizard__calendar-wrap {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.zkb-wizard__calendar { flex: 1; min-width: 280px; }
.zkb-wizard__times { min-width: 80px; display: flex; flex-direction: column; gap: 0.5rem; max-height: 300px; overflow-y: auto; }
.zkb-cal__header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1rem;
}
.zkb-cal__month { font-size: 1rem; font-weight: 600; color: var(--zkb-foreground); }
.zkb-cal__nav {
    width: 32px; height: 32px; border-radius: 0.5rem;
    border: 1px solid var(--zkb-border); background: transparent;
    color: var(--zkb-foreground); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; transition: all .2s;
}
.zkb-cal__nav:hover { border-color: var(--zkb-primary); color: var(--zkb-primary); }
.zkb-cal__grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.25rem; text-align: center;
}
.zkb-cal__dow {
    font-size: 0.6875rem; font-weight: 600; color: var(--zkb-muted-foreground);
    text-transform: uppercase; padding: 0.5rem 0;
}
.zkb-cal__day {
    padding: 0.5rem 0; border-radius: 0.5rem; font-size: 0.875rem;
    color: var(--zkb-muted-foreground); cursor: default;
    transition: all .15s;
}
.zkb-cal__day--avail {
    color: var(--zkb-foreground); font-weight: 600; cursor: pointer;
}
.zkb-cal__day--avail:hover {
    background: rgba(194,60,221,0.1);
}
.zkb-cal__day--selected {
    background: var(--zkb-gradient-purple-magenta) !important;
    color: #fff !important; font-weight: 700;
}
.zkb-cal__day--today { border: 1px solid var(--zkb-border); }
.zkb-cal__day--disabled { opacity: 0.3; }
.zkb-cal__day--empty { visibility: hidden; }

/* Time slots */
.zkb-time__btn {
    padding: 0.5rem 1rem; border-radius: 0.5rem;
    border: 1px solid var(--zkb-border); background: transparent;
    color: var(--zkb-foreground); font-size: 0.875rem;
    cursor: pointer; transition: all .2s;
    font-family: var(--zkb-font-body);
}
.zkb-time__btn:hover { border-color: var(--zkb-primary); }
.zkb-time__btn--selected {
    background: var(--zkb-gradient-purple-magenta);
    color: #fff; border-color: var(--zkb-primary);
}

/* Form (step 3) */
.zkb-wizard__form { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.zkb-wizard__input {
    display: block; width: 100%; padding: 0.75rem;
    background: var(--zkb-secondary); border: 1px solid var(--zkb-border);
    border-radius: 0.5rem; color: var(--zkb-foreground);
    font-family: var(--zkb-font-body); font-size: 0.9375rem;
    transition: all .2s; outline: none;
    box-sizing: border-box;
}
.zkb-wizard__input::placeholder { color: var(--zkb-muted-foreground); }
.zkb-wizard__input:focus { border-color: var(--zkb-primary); box-shadow: 0 0 0 3px rgba(194,60,221,0.15); }
.zkb-wizard__textarea { min-height: 80px; resize: vertical; }

/* Summary */
.zkb-wizard__summary {
    background: var(--zkb-secondary); border: 1px solid var(--zkb-border);
    border-radius: 0.75rem; padding: 1rem 1.25rem;
}
.zkb-wizard__summary-label {
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--zkb-muted-foreground); margin-bottom: 0.5rem;
}
.zkb-wizard__summary-row { font-size: 0.875rem; color: var(--zkb-foreground); margin-bottom: 0.25rem; }
.zkb-wizard__summary-row span { color: var(--zkb-muted-foreground); }

/* Success */
.zkb-wizard__success {
    text-align: center; padding: 3rem 1rem;
}
.zkb-wizard__success-icon { color: var(--zkb-green); margin-bottom: 1rem; }
.zkb-wizard__success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--zkb-foreground); }
.zkb-wizard__success p { color: var(--zkb-muted-foreground); }

/* Sidebar */
.zkb-contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.zkb-contact-sidebar__section { display: flex; flex-direction: column; gap: 0.75rem; }
.zkb-contact-sidebar__heading { font-size: 1rem; font-weight: 600; color: var(--zkb-foreground); margin-bottom: 0.25rem; }
.zkb-contact-sidebar__item {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.9rem; color: var(--zkb-foreground);
    text-decoration: none; transition: color .2s;
}
.zkb-contact-sidebar__item:hover { color: var(--zkb-primary); }
.zkb-contact-sidebar__item small { display: block; color: var(--zkb-muted-foreground); font-size: 0.8rem; }
.zkb-contact-sidebar__icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(194,60,221,0.1); color: var(--zkb-muted-foreground);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.zkb-section--contact a.zkb-contact-sidebar__item,
.zkb-section--contact a.zkb-contact-sidebar__item:visited,
.zkb-section--contact a.zkb-contact-sidebar__item:link { color: var(--zkb-foreground) !important; text-decoration: none !important; }
.zkb-section--contact a.zkb-contact-sidebar__item:hover { color: var(--zkb-primary) !important; }
.zkb-contact-sidebar__icon--primary { color: var(--zkb-primary); }
.zkb-contact-sidebar__box {
    background: var(--zkb-card); border: 1px solid var(--zkb-border);
    border-radius: 0.75rem; padding: 1.25rem;
}
.zkb-contact-sidebar__box p { font-size: 0.85rem; color: var(--zkb-muted-foreground); line-height: 1.6; margin-top: 0.5rem; }
.zkb-contact-sidebar__map { border-radius: 0.75rem; overflow: hidden; }

/* ── Old Contact (unused, cleaned up) ──

@media (min-width: 768px) {
    .zkb-contact-form {
        padding: 2rem;
    }
}

.zkb-contact-form__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Method buttons */
.zkb-contact-form__methods {
    margin-bottom: 0.5rem;
}

.zkb-contact-form__method-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.zkb-contact-form__method-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 1rem 0.75rem;
    background: var(--zkb-secondary);
    border: 1px solid var(--zkb-border);
    border-radius: var(--zkb-radius-xl);
    cursor: pointer;
    transition: var(--zkb-transition);
    font-family: var(--zkb-font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--zkb-muted-foreground);
    text-align: center;
}

.zkb-contact-form__method-btn:hover {
    border-color: var(--zkb-primary);
    color: var(--zkb-foreground);
}

.zkb-contact-form__method-btn--active {
    border-color: var(--zkb-primary);
    background: rgba(194, 60, 221, 0.08);
    color: var(--zkb-primary);
}

.zkb-contact-form__method-btn svg {
    width: 24px;
    height: 24px;
}

/* Form fields */
.zkb-contact-form__fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.zkb-contact-form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--zkb-foreground);
    margin-bottom: 0.375rem;
}

.zkb-contact-form__input {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: var(--zkb-secondary);
    border: 1px solid var(--zkb-border);
    border-radius: var(--zkb-radius-lg);
    color: var(--zkb-foreground);
    font-family: var(--zkb-font-body);
    font-size: 0.9375rem;
    transition: var(--zkb-transition);
    outline: none;
}

.zkb-contact-form__input::placeholder {
    color: var(--zkb-muted-foreground);
}

.zkb-contact-form__input:focus {
    border-color: var(--zkb-primary);
    box-shadow: 0 0 0 3px rgba(194, 60, 221, 0.15);
}

.zkb-contact-form__textarea {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: var(--zkb-secondary);
    border: 1px solid var(--zkb-border);
    border-radius: var(--zkb-radius-lg);
    color: var(--zkb-foreground);
    font-family: var(--zkb-font-body);
    font-size: 0.9375rem;
    transition: var(--zkb-transition);
    outline: none;
    min-height: 120px;
    resize: vertical;
}

.zkb-contact-form__textarea::placeholder {
    color: var(--zkb-muted-foreground);
}

.zkb-contact-form__textarea:focus {
    border-color: var(--zkb-primary);
    box-shadow: 0 0 0 3px rgba(194, 60, 221, 0.15);
}

.zkb-contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--zkb-gradient-purple-magenta);
    color: var(--zkb-white);
    font-family: var(--zkb-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: var(--zkb-radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--zkb-transition);
    box-shadow: var(--zkb-shadow-purple);
    text-transform: none;
    letter-spacing: 0.02em;
}

.zkb-contact-form__submit:hover {
    box-shadow: var(--zkb-shadow-purple-lg);
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.zkb-contact-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.zkb-contact-form__success {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--zkb-green);
    font-weight: 600;
    font-size: 1.125rem;
}

/* ── Contact Info ── */
.zkb-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.zkb-contact-info__card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--zkb-card);
    border: 1px solid var(--zkb-border);
    border-radius: var(--zkb-radius-xl);
    padding: 1rem;
    transition: var(--zkb-transition);
}

.zkb-contact-info__card:hover {
    border-color: rgba(194, 60, 221, 0.3);
}

.zkb-contact-info__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--zkb-gradient-purple-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--zkb-white);
}

.zkb-contact-info__icon svg {
    width: 20px;
    height: 20px;
}

.zkb-contact-info__label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--zkb-muted-foreground);
    margin-bottom: 0.125rem;
}

.zkb-contact-info__value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--zkb-foreground);
    line-height: 1.4;
}

.zkb-contact-info__value a {
    color: var(--zkb-foreground);
    text-decoration: none;
    transition: var(--zkb-transition);
}

.zkb-contact-info__value a:hover {
    color: var(--zkb-primary);
}

/* ── Contact Map ── */
.zkb-contact__map {
    margin-top: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--zkb-border);
    height: 250px;
}

.zkb-contact__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: brightness(0.8) contrast(1.1) saturate(0.8);
}


/* ============================================================
   16. FOOTER
   ============================================================ */

.zkb-footer {
    background: var(--zkb-foreground);
    color: hsla(285, 50%, 15%, 0.8) !important;
    padding: 3rem 0 0;
}

.zkb-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .zkb-footer__inner {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2.5rem;
        padding: 0 2rem;
    }
}

.zkb-footer__col-brand {
    display: flex;
    flex-direction: column;
}

.zkb-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.zkb-footer__logo {
    height: 64px;
    width: 64px;
    object-fit: contain;
}

.zkb-footer__brand-text {
    font-family: var(--zkb-font-hand);
    font-size: 1rem;
    color: hsl(285, 50%, 15%) !important;
}

.zkb-footer__desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: hsla(285, 50%, 15%, 0.6);
    margin-bottom: 1.25rem;
    max-width: 320px;
}

.zkb-footer__social {
    display: flex;
    gap: 0.75rem;
}

.zkb-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: hsla(285, 50%, 15%, 0.1);
    color: hsla(285, 50%, 15%, 0.6);
    text-decoration: none;
    transition: var(--zkb-transition);
}

.zkb-footer__social-link:hover {
    background: var(--zkb-gradient-purple-magenta);
    color: var(--zkb-white) !important;
    transform: translateY(-2px);
}

.zkb-footer__social-link svg {
    width: 18px;
    height: 18px;
}

.zkb-footer__partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: hsla(285, 50%, 15%, 0.5);
    text-decoration: none;
    margin-top: 0.75rem;
    transition: var(--zkb-transition);
}

.zkb-footer__partner-link:hover {
    color: var(--zkb-primary);
}

.zkb-footer__partner-link svg {
    width: 12px;
    height: 12px;
}

.zkb-footer__heading {
    font-family: var(--zkb-font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(285, 50%, 15%) !important;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 1rem;
}

.zkb-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zkb-footer__links a {
    font-size: 0.875rem;
    color: hsla(285, 50%, 15%, 0.6) !important;
    text-decoration: none;
    transition: var(--zkb-transition);
}

.zkb-footer__links a:hover {
    color: var(--zkb-background) !important;
}

.zkb-footer__bottom {
    border-top: 1px solid hsla(285, 50%, 15%, 0.15);
    padding: 1.5rem 1rem;
    margin-top: 2rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    font-size: 0.8125rem;
    color: hsla(285, 50%, 15%, 0.5) !important;
}

@media (min-width: 768px) {
    .zkb-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.5rem 2rem;
    }
}

.zkb-footer__bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.zkb-footer__credit {
    font-size: 0.75rem;
    color: hsla(285, 50%, 15%, 0.4) !important;
}

.zkb-footer__credit a {
    color: hsla(285, 50%, 15%, 0.5) !important;
    text-decoration: none;
    transition: var(--zkb-transition);
}

.zkb-footer__credit a:hover {
    color: var(--zkb-background) !important;
}

.zkb-footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}

.zkb-footer__bottom a,
.zkb-footer__bottom-links a {
    color: hsla(285, 50%, 15%, 0.6) !important;
    text-decoration: none;
    transition: var(--zkb-transition);
}

.zkb-footer__bottom a:hover,
.zkb-footer__bottom-links a:hover {
    color: var(--zkb-background) !important;
}

/* Footer contact items */
.zkb-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.zkb-footer__contact-item svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--zkb-primary);
}

.zkb-footer__contact-item a,
.zkb-footer__contact-item span {
    font-size: 0.875rem;
    color: hsla(285, 50%, 15%, 0.7) !important;
    text-decoration: none;
    transition: var(--zkb-transition);
}

.zkb-footer__contact-item a:hover {
    color: var(--zkb-background) !important;
}


/* ============================================================
   17. SCROLL TO TOP
   ============================================================ */

.zkb-scroll-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--zkb-gradient-purple-magenta);
    color: var(--zkb-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: var(--zkb-shadow-purple);
}

.zkb-scroll-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.zkb-scroll-top:hover {
    box-shadow: var(--zkb-shadow-purple-lg);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.zkb-scroll-top svg {
    width: 20px;
    height: 20px;
}


/* ============================================================
   18. UTILITY CLASSES
   ============================================================ */

/* ── Gradient utilities ── */
.gradient-purple-magenta {
    background: var(--zkb-gradient-purple-magenta) !important;
}

.gradient-purple-soft {
    background: var(--zkb-gradient-purple-soft) !important;
}

.text-gradient-purple {
    background: var(--zkb-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Shadow utilities ── */
.shadow-purple {
    box-shadow: var(--zkb-shadow-purple);
}

.shadow-purple-lg {
    box-shadow: var(--zkb-shadow-purple-lg);
}

.shadow-card {
    box-shadow: var(--zkb-shadow-card);
}

/* ── Glow utilities ── */
.glow-purple {
    box-shadow: 0 0 15px rgba(194, 60, 221, 0.4), 0 0 45px rgba(194, 60, 221, 0.15);
}

.glow-magenta {
    box-shadow: 0 0 15px rgba(234, 62, 205, 0.4), 0 0 45px rgba(234, 62, 205, 0.15);
}

.glow-hover {
    transition: box-shadow 0.3s ease;
}

.glow-hover:hover {
    box-shadow: 0 0 15px rgba(194, 60, 221, 0.4), 0 0 45px rgba(194, 60, 221, 0.15);
}

/* ── Text highlight (gradient text within content) ── */
.zkb-highlight {
    background: var(--zkb-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ============================================================
   19. WP THEME OVERRIDES
   ============================================================ */

/* Override Elementor/theme defaults */
.zkb-page .elementor-widget-container,
body.page-template-elementor_canvas .elementor-widget-container,
body.elementor-page .elementor-widget-container {
    color: inherit;
}

.zkb-page h1,
.zkb-page h2,
.zkb-page h3,
.zkb-page h4,
.zkb-page h5,
.zkb-page h6,
body.page-template-elementor_canvas h1,
body.page-template-elementor_canvas h2,
body.page-template-elementor_canvas h3,
body.page-template-elementor_canvas h4,
body.page-template-elementor_canvas h5,
body.page-template-elementor_canvas h6 {
    color: var(--zkb-foreground);
    font-family: var(--zkb-font-heading);
}

.zkb-page p,
body.page-template-elementor_canvas p {
    color: var(--zkb-muted-foreground);
}

.zkb-page a,
body.page-template-elementor_canvas .zkb-section a {
    color: var(--zkb-primary);
    text-decoration: none;
}

.zkb-page a:hover,
body.page-template-elementor_canvas .zkb-section a:hover {
    color: var(--zkb-accent);
}

/* Buttons must keep their own colors — override the link color rule above */
body.page-template-elementor_canvas .zkb-section a.zkb-hero__btn--primary,
body.page-template-elementor_canvas .zkb-section a.zkb-btn--primary,
body.page-template-elementor_canvas .zkb-section a.zkb-about__btn,
body.page-template-elementor_canvas .zkb-section a.zkb-plan__cta-banner-btn,
body.page-template-elementor_canvas .zkb-section a.zkb-contact-form__submit,
body.page-template-elementor_canvas .zkb-section .zkb-navbar__cta {
    color: var(--zkb-white) !important;
}

body.page-template-elementor_canvas .zkb-section a.zkb-hero__btn--secondary,
body.page-template-elementor_canvas .zkb-section a.zkb-btn--outline {
    color: var(--zkb-primary) !important;
}

body.page-template-elementor_canvas .zkb-section a.zkb-hero__btn--secondary:hover,
body.page-template-elementor_canvas .zkb-section a.zkb-btn--outline:hover {
    color: var(--zkb-accent) !important;
}

/* Blog cards and pillar links inherit card foreground, not link purple */
body.page-template-elementor_canvas .zkb-section a.zkb-blog-card,
body.page-template-elementor_canvas .zkb-section a.zkb-plan__pillar {
    color: var(--zkb-card-foreground) !important;
}

/* Prevent Elementor from overriding widget fonts/colors */
body.page-template-elementor_canvas .elementor-heading-title {
    color: var(--zkb-foreground) !important;
    font-family: var(--zkb-font-heading) !important;
}

body.page-template-elementor_canvas .elementor-widget-text-editor {
    color: var(--zkb-muted-foreground) !important;
    font-family: var(--zkb-font-body) !important;
}

/* Kill any WP/Elementor default link underlines inside our widgets */
.zkb-plan__pillar,
.zkb-plan__pillar:hover,
.zkb-plan__pillar:focus,
.zkb-plan__pillar:visited {
    text-decoration: none !important;
    color: var(--zkb-card-foreground) !important;
}

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

.zkb-page ul,
.zkb-page ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* WP admin bar offset */
body.admin-bar .zkb-navbar {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .zkb-navbar {
        top: 46px;
    }
}

/* Ensure dark sections */
.zkb-section,
.zkb-section--alt,
.zkb-section--blog,
.zkb-section--contact {
    color: var(--zkb-foreground);
}

/* Override WP block styles */
.zkb-page .wp-block-group,
.zkb-page .wp-block-column,
.zkb-page .wp-block-columns {
    background: transparent;
    color: inherit;
}


/* ============================================================
   20. RESPONSIVE ADJUSTMENTS
   ============================================================ */

/* ── Small mobile (max-width: 639px) ── */
@media (max-width: 639px) {
    .zkb-section {
        padding: 3rem 0;
    }

    .zkb-section__header {
        margin-bottom: 2rem;
    }

    .zkb-section__title,
    .zkb-heading--lg {
        font-size: 1.75rem;
    }

    .zkb-hero {
        padding: 5rem 1rem 3rem;
        min-height: auto;
    }

    .zkb-hero__title {
        font-size: 1.75rem;
    }

    .zkb-hero__logo-circle {
        width: 14rem;
        height: 14rem;
    }

    .zkb-hero__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .zkb-hero__btn {
        justify-content: center;
        text-align: center;
    }

    .zkb-contact-form__method-buttons {
        grid-template-columns: 1fr;
    }

    .zkb-plan__cta-banner {
        padding: 1.5rem;
    }

    .zkb-plan__cta-banner-text {
        font-size: 1.125rem;
    }

    .zkb-about-split__name {
        font-size: 1.5rem;
    }
}

/* ── Tablet (640px - 767px) ── */
@media (min-width: 640px) and (max-width: 767px) {
    .zkb-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* ── Large screens (1280px+) ── */
@media (min-width: 1280px) {
    .zkb-section {
        padding: 7rem 0;
    }

    .zkb-hero__grid {
        gap: 5rem;
    }
}


/* ============================================================
   21. BLOG ARCHIVE
   ============================================================ */

.zkb-blog-archive .zkb-section__header {
    margin-bottom: 2rem;
}

/* Filter bar */
.zkb-blog-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--zkb-card);
    border: 1px solid var(--zkb-border);
    border-radius: 1rem;
}

.zkb-blog-filter__search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1 1 250px;
    min-width: 200px;
    background: var(--zkb-secondary);
    border: 1px solid var(--zkb-border);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: var(--zkb-muted-foreground);
    transition: var(--zkb-transition);
}

.zkb-blog-filter__search:focus-within {
    border-color: var(--zkb-primary);
    box-shadow: 0 0 0 2px hsla(295, 70%, 58%, 0.2);
}

.zkb-blog-filter__input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--zkb-foreground);
    font-family: var(--zkb-font-body);
    font-size: 0.875rem;
    width: 100%;
}

.zkb-blog-filter__input::placeholder {
    color: var(--zkb-muted-foreground);
}

.zkb-blog-filter__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    flex: 2 1 400px;
}

.zkb-blog-filter__cat {
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--zkb-border);
    border-radius: 2rem;
    background: transparent;
    color: var(--zkb-muted-foreground);
    font-family: var(--zkb-font-body);
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--zkb-transition);
    white-space: nowrap;
}

.zkb-blog-filter__cat:hover {
    border-color: var(--zkb-primary);
    color: var(--zkb-foreground);
}

.zkb-blog-filter__cat--active {
    background: var(--zkb-primary);
    border-color: var(--zkb-primary);
    color: var(--zkb-primary-foreground);
}

.zkb-blog-filter__count {
    font-size: 0.8rem;
    color: var(--zkb-muted-foreground);
    white-space: nowrap;
    margin-left: auto;
}

.zkb-blog-filter__count-num {
    font-weight: 600;
    color: var(--zkb-primary);
}

/* Archive grid */
.zkb-blog-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.zkb-blog-archive__grid .zkb-blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.zkb-blog-archive__empty {
    text-align: center;
    color: var(--zkb-muted-foreground);
    padding: 3rem 0;
    font-size: 1rem;
}

/* Tags row */
.zkb-blog-card__tags {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.zkb-blog-card__read {
    color: var(--zkb-primary);
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: auto;
}

@media (max-width: 1024px) {
    .zkb-blog-archive__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .zkb-blog-archive__grid {
        grid-template-columns: 1fr;
    }
    .zkb-blog-filter {
        flex-direction: column;
        align-items: stretch;
    }
    .zkb-blog-filter__cats {
        flex: auto;
    }
    .zkb-blog-filter__count {
        margin-left: 0;
        text-align: center;
    }
}

/* ============================================================
   22. LEGAL PAGES
   ============================================================ */

.zkb-legal-page {
    background: var(--zkb-background);
    color: var(--zkb-foreground);
    font-family: var(--zkb-font-body);
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    line-height: 1.8;
}

.zkb-legal-page__title {
    font-family: var(--zkb-font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    background: var(--zkb-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zkb-legal-page h2 {
    font-family: var(--zkb-font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--zkb-foreground);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--zkb-border);
}

.zkb-legal-page p {
    color: var(--zkb-muted-foreground);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.zkb-legal-page strong {
    color: var(--zkb-foreground);
    font-weight: 600;
}

.zkb-legal-page ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.zkb-legal-page li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--zkb-muted-foreground);
    font-size: 0.95rem;
}

.zkb-legal-page li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--zkb-primary);
}

.zkb-legal-page li strong {
    color: var(--zkb-foreground);
}

.zkb-legal-page a {
    color: var(--zkb-primary) !important;
    text-decoration: none;
    transition: var(--zkb-transition);
}

.zkb-legal-page a:hover {
    color: var(--zkb-accent) !important;
    text-decoration: underline;
}

.zkb-legal-page__updated {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--zkb-border);
    color: var(--zkb-muted-foreground);
    font-size: 0.85rem;
}

/* Elementor HTML widget on legal pages — remove default background */
.elementor-widget-html {
    background: transparent;
}

/* Ensure the content section on legal pages has dark bg */
.elementor-section:has(.zkb-legal-page) {
    background: var(--zkb-background) !important;
}

@media (max-width: 768px) {
    .zkb-legal-page {
        padding: 3rem 1.25rem 4rem;
    }
    .zkb-legal-page__title {
        font-size: 2rem;
    }
    .zkb-legal-page h2 {
        font-size: 1.2rem;
    }
}

/* ============================================================
   22. SWIPE CAROUSEL (MOBILE)
   ============================================================ */

.zkb-swipe {
    position: relative;
    overflow: hidden;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.zkb-swipe__track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y pinch-zoom;
}

.zkb-swipe__track:active {
    cursor: grabbing;
}

.zkb-swipe__slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 0.25rem;
    box-sizing: border-box;
}

/* Ensure items inside slides fill properly */
.zkb-swipe__slide > .zkb-trust__item,
.zkb-swipe__slide > .zkb-testimonial,
.zkb-swipe__slide > .zkb-blog-card {
    width: 100%;
    margin: 0;
}

/* Dots */
.zkb-swipe__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 0 0.5rem;
}

.zkb-swipe__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--zkb-border);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.zkb-swipe__dot--active {
    background: var(--zkb-primary);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   23. MOBILE FIXES
   ============================================================ */

/* --- Hero mobile --- */
@media (max-width: 767px) {
    .zkb-hero {
        padding: 6.5rem 1.25rem 3rem !important;
        min-height: auto;
        overflow: visible;
    }
    .zkb-hero__badge {
        font-size: 11px;
        padding: 0.35rem 0.875rem;
        margin-bottom: 1.25rem;
        position: relative;
        z-index: 2;
    }

    /* --- Puzzle mobile: keep 3 cols but smaller --- */
    .zkb-puzzle-grid {
        max-width: 100%;
        padding: 0 0.25rem;
    }
    .zkb-puzzle-piece {
        margin: -4px;
    }
    .zkb-puzzle-piece__title {
        font-size: 0.6rem !important;
        line-height: 1.2;
    }
    .zkb-puzzle-piece__icon-wrap {
        width: 2rem !important;
        height: 2rem !important;
    }
    .zkb-puzzle-piece__icon-wrap svg {
        width: 14px !important;
        height: 14px !important;
    }
    .zkb-puzzle-piece__more {
        display: none !important;
    }
    .zkb-hero__container {
        padding: 0 0.5rem;
    }
    .zkb-hero__grid {
        gap: 2rem;
    }
    .zkb-hero__title {
        font-size: 2rem !important;
        line-height: 1.15;
    }
    .zkb-hero__description {
        font-size: 0.9rem;
    }
    .zkb-hero__buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    .zkb-hero__btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .zkb-hero__image {
        max-width: 220px;
        margin: 0 auto;
    }

    /* --- Section headers mobile --- */
    .zkb-section__header .zkb-heading--lg,
    .zkb-section__title {
        font-size: 1.5rem !important;
        line-height: 1.25;
    }
    .zkb-section__subtitle {
        font-size: 0.875rem;
    }
    .zkb-section {
        padding: 3.5rem 0 !important;
    }

    /* --- Navbar mobile tweaks --- */
    .zkb-navbar {
        padding: 0.75rem 1rem;
    }
    .zkb-navbar__logo img {
        height: 36px;
    }

    /* --- Process steps mobile --- */
    .zkb-process__grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* --- Contact mobile --- */
    .zkb-contact__grid {
        grid-template-columns: 1fr !important;
    }
    .zkb-wizard {
        padding: 1.5rem !important;
    }

    /* --- FAQ mobile --- */
    .zkb-faq__list {
        padding: 0;
    }
    .zkb-faq__question {
        font-size: 0.9rem;
        padding: 1rem 1.25rem;
    }

    /* --- Footer mobile --- */
    .zkb-footer__inner {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }
    .zkb-footer__social {
        justify-content: center;
    }
    .zkb-footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    .zkb-footer__bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .zkb-footer__bottom-left {
        align-items: center;
    }

    /* --- About split mobile --- */
    .zkb-about-split {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }
    .zkb-about-split__image {
        min-height: 45vh;
    }
    .zkb-about-split__content {
        padding: 2rem 1.25rem;
    }
    .zkb-about-split__name {
        font-size: 1.5rem !important;
    }

    /* --- Plan section mobile --- */
    .zkb-plan__pillars {
        grid-template-columns: 1fr !important;
    }
    .zkb-plan__cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* --- Family plan mobile --- */
    .zkb-family-plan__grid {
        grid-template-columns: 1fr !important;
    }

    /* --- Blog cards in carousel --- */
    .zkb-swipe__slide .zkb-blog-card__image img {
        height: 180px;
        object-fit: cover;
    }

    /* --- Trust items in carousel --- */
    .zkb-swipe__slide .zkb-trust__item {
        min-height: 160px;
    }

    /* --- Scroll animations: reduce motion on mobile --- */
    .zkb-animate {
        animation-duration: 0.4s !important;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .zkb-hero__title {
        font-size: 1.65rem !important;
    }
    .zkb-section__header .zkb-heading--lg,
    .zkb-section__title {
        font-size: 1.3rem !important;
    }
    .zkb-about-split__name {
        font-size: 1.3rem !important;
    }
}

/* ============================================================
   24. PRINT STYLES
   ============================================================ */

@media print {
    .zkb-navbar,
    .zkb-mobile-menu,
    .zkb-scroll-top,
    .zkb-hero__scroll-indicator,
    .zkb-footer__social,
    .zkb-contact__map {
        display: none !important;
    }

    .zkb-page,
    .zkb-section,
    .zkb-section--alt,
    .zkb-section--contact,
    .zkb-hero {
        background: #fff !important;
        color: #111 !important;
    }

    .zkb-footer {
        background: #f5f5f5 !important;
        color: #333 !important;
    }

    .zkb-section__title,
    .zkb-heading--lg,
    .zkb-hero__title,
    .zkb-about__name,
    .zkb-plan__pillar-title,
    .zkb-trust__item-title,
    .zkb-process__step-title,
    .zkb-testimonial__name,
    .zkb-blog-card__title,
    .zkb-faq__question {
        color: #111 !important;
    }

    .zkb-section__subtitle,
    .zkb-hero__description,
    .zkb-about__description,
    .zkb-plan__pillar-desc,
    .zkb-trust__item-text,
    .zkb-process__step-desc,
    .zkb-testimonial__quote,
    .zkb-blog-card__excerpt,
    .zkb-faq__answer p {
        color: #333 !important;
    }

    .zkb-hero__title-highlight {
        -webkit-text-fill-color: #111 !important;
        color: #111 !important;
    }
}


/* ============================================================
   22. ACCESSIBILITY — Focus Visible
   ============================================================ */

.zkb-page *:focus-visible {
    outline: 2px solid var(--zkb-ring);
    outline-offset: 2px;
    border-radius: 2px;
}

.zkb-navbar__link:focus-visible,
.zkb-navbar__cta:focus-visible,
.zkb-hero__btn:focus-visible,
.zkb-btn:focus-visible,
.zkb-faq__question:focus-visible,
.zkb-contact-form__submit:focus-visible,
.zkb-contact-form__method-btn:focus-visible,
.zkb-scroll-top:focus-visible {
    outline: 2px solid var(--zkb-ring);
    outline-offset: 2px;
}

/* ── Screen reader only ── */
.zkb-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ============================================================
   23. SERVICE PAGE — Subpages for puzzle tiles
   ============================================================ */

.zkb-service-page {
    background: var(--zkb-background);
}

/* Hero */
.zkb-service-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    text-align: center;
}

.zkb-service-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zkb-muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    transition: var(--zkb-transition);
    text-decoration: none;
}

.zkb-service-hero__back:hover {
    color: var(--zkb-primary);
}

.zkb-service-hero .zkb-heading--xl {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.zkb-service-hero__subtitle {
    font-family: var(--zkb-font-hand);
    font-size: 1.35rem;
    color: var(--zkb-primary);
    margin-bottom: 1.5rem;
}

.zkb-service-hero__intro {
    max-width: 700px;
    margin: 0 auto;
    color: var(--zkb-muted-foreground);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Why Important Cards */
.zkb-service-why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .zkb-service-why__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.zkb-service-why__card {
    background: var(--zkb-card);
    border: 1px solid var(--zkb-border);
    border-radius: var(--zkb-radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--zkb-transition);
}

.zkb-service-why__card:hover {
    border-color: var(--zkb-primary);
    transform: translateY(-2px);
    box-shadow: var(--zkb-shadow-purple);
}

.zkb-service-why__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: hsla(280, 80%, 60%, 0.15);
    color: var(--zkb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.zkb-service-why__title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--zkb-foreground);
    margin-bottom: 0.5rem;
}

.zkb-service-why__desc {
    font-size: 0.9rem;
    color: var(--zkb-muted-foreground);
    line-height: 1.6;
}

/* Benefits */
.zkb-service-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 650px;
    margin: 0 auto;
}

.zkb-service-benefits__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--zkb-foreground);
    line-height: 1.5;
}

.zkb-service-benefits__check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: hsla(150, 60%, 45%, 0.15);
    color: var(--zkb-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service FAQ reuses main FAQ styles via .zkb-faq__list */
.zkb-service-faq {
    max-width: 750px;
    margin: 0 auto;
}

/* Service page blog grid */
.zkb-service-page .zkb-blog__grid {
    max-width: 900px;
    margin: 0 auto;
}

/* Service page CTA section */
.zkb-service-page .zkb-btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
}
