/* ============================================================
   BARKLY — Modern Enhancements
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
    --bk-green-dark:       #3D5A3E;
    --bk-green-mid:        #587A47;
    --bk-green-light:      #7FB069;
    --bk-gold:             #C8922A;
    --bk-cream:            #F5F0E8;
    --bk-white:            #FFFFFF;
    --bk-text-dark:        #2A332B;
    --bk-text-mid:         #4A5A4C;
    --bk-radius:           16px;
    --bk-transition:       0.38s cubic-bezier(.165,.84,.44,1);
    /* RGB channels for rgba() usage */
    --bk-green-dark-rgb:   61, 90, 62;
    --bk-green-light-rgb:  127, 176, 105;
    --bk-gold-rgb:         200, 146, 42;
    /* Derived shadows */
    --bk-shadow:           0 8px 40px rgba(var(--bk-green-dark-rgb), .12);
    --bk-shadow-hover:     0 20px 60px rgba(var(--bk-green-dark-rgb), .22);
}

/* ── Smooth scroll & base ────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ── Keyframe animations ─────────────────────────────────── */
@keyframes bkFloat {
    0%, 100% { transform: translateY(0) rotate(0deg);   opacity: .15; }
    50%       { transform: translateY(-20px) rotate(10deg); opacity: .35; }
}
@keyframes bkPulse {
    0%   { transform: scale(1);    opacity: .7; }
    100% { transform: scale(1.25); opacity: 0;  }
}

/* ── HERO SECTION ────────────────────────────────────────── */
.bk-hero {
    background: linear-gradient(135deg, var(--bk-text-dark) 0%, var(--bk-green-dark) 45%, #4A6B3A 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.bk-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}
.bk-hero__eyebrow::before {
    content: '🐾';
    font-size: 15px;
}
.bk-hero__title {
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 auto 20px;
    max-width: 800px;
}
.bk-hero__title span {
    color: var(--bk-gold);
}
.bk-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.78);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.6;
}
.bk-hero__nrc-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(var(--bk-gold-rgb), .15);
    border: 1px solid rgba(var(--bk-gold-rgb), .4);
    border-radius: 12px;
    padding: 10px 20px;
    margin: 20px auto 40px;
    font-size: 14px;
    color: #f0d28a;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 560px;
    width: fit-content;
    text-align: left;
}
.bk-hero__nrc-badge svg {
    flex-shrink: 0;
    color: var(--bk-gold);
}
.bk-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bk-gold);
    color: #fff !important;
    padding: 17px 36px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none !important;
    transition: var(--bk-transition);
    box-shadow: 0 8px 30px rgba(var(--bk-gold-rgb), .45);
    cursor: pointer;
    border: none;
    position: relative;
}
.bk-hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(var(--bk-gold-rgb), .55);
    background: #d9a030;
}
.bk-hero__cta::after { content: ' →'; }
.bk-hero__cta-pulse {
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(var(--bk-gold-rgb), .6);
    border-radius: 50px;
    animation: bkPulse 2s ease-out infinite;
    pointer-events: none;
}

/* ── TRUST BAR ───────────────────────────────────────────── */
/* ── TRUST BAR marquee ───────────────────────────────────── */
@keyframes bkMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.bk-trust-bar {
    background: var(--bk-cream);
    border-bottom: 1px solid rgba(61,90,62,.1);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.bk-trust-bar__track-wrap {
    display: flex;
    width: max-content;
    animation: bkMarquee 26s linear infinite;
    will-change: transform;
}
.bk-trust-bar__track-wrap:hover {
    animation-play-state: paused;
}
.bk-trust-bar__track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 18px 0;
}
.bk-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bk-text-mid);
    padding: 0 24px;
    flex-shrink: 0;
}
.bk-trust-item__icon { font-size: 18px; }
.bk-trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(61,90,62,.2);
    flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
    .bk-trust-bar__track-wrap { animation: none; }
}

/* ── STATS SECTION ───────────────────────────────────────── */
.bk-stats {
    background: var(--bk-green-dark);
    padding: 64px 20px;
}
.bk-stats__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    text-align: center;
}
.bk-stat__number {
    font-size: 52px;
    font-weight: 800;
    color: var(--bk-gold);
    line-height: 1;
    margin-bottom: 6px;
    font-family: inherit;
}
.bk-stat__suffix { font-size: 32px; }
.bk-stat__label {
    font-size: 15px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
}

/* ── QUIZ WRAPPER ────────────────────────────────────────── */
.bk-quiz-section {
    background: var(--bk-cream);
    padding: 60px 20px;
}
.bk-quiz-section__heading {
    text-align: center;
    margin-bottom: 16px;
}
.bk-quiz-section__heading h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: var(--bk-text-dark);
    margin-bottom: 12px;
}
.bk-quiz-section__heading p {
    font-size: 17px;
    color: var(--bk-text-mid);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* ── WHY BARKLY SECTION ──────────────────────────────────── */
.bk-why {
    background: #fff;
    padding: 80px 20px;
}
.bk-why__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.bk-section-heading {
    text-align: center;
    margin-bottom: 56px;
}
.bk-section-heading__eyebrow {
    display: inline-block;
    background: rgba(var(--bk-green-light-rgb), .15);
    color: var(--bk-green-mid);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.bk-section-heading h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: var(--bk-text-dark);
    line-height: 1.15;
    margin-bottom: 14px;
}
.bk-section-heading p {
    font-size: 17px;
    color: var(--bk-text-mid);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}
.bk-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.bk-card {
    background: #fff;
    border: 1px solid rgba(var(--bk-green-dark-rgb), .1);
    border-radius: var(--bk-radius);
    padding: 36px 30px;
    transition: var(--bk-transition);
    position: relative;
    overflow: hidden;
}
.bk-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bk-green-dark), var(--bk-green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--bk-transition);
}
.bk-card:hover {
    box-shadow: var(--bk-shadow-hover);
    transform: translateY(-4px);
    border-color: rgba(var(--bk-green-light-rgb), .3);
}
.bk-card:hover::before { transform: scaleX(1); }
.bk-card__icon {
    font-size: 42px;
    margin-bottom: 18px;
    display: block;
}
.bk-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--bk-text-dark);
    margin-bottom: 10px;
}
.bk-card__text {
    font-size: 15px;
    color: var(--bk-text-mid);
    line-height: 1.65;
}

/* ── NRC 2006 SECTION ────────────────────────────────────── */
.bk-nrc {
    background: linear-gradient(135deg, var(--bk-text-dark) 0%, var(--bk-green-dark) 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}
.bk-nrc::before {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(var(--bk-gold-rgb), .12) 0%, transparent 70%);
    pointer-events: none;
}
.bk-nrc__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 768px) {
    .bk-nrc__inner { grid-template-columns: 1fr; gap: 40px; }
}
.bk-nrc__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px; height: 120px;
    background: rgba(var(--bk-gold-rgb), .15);
    border: 2px solid rgba(var(--bk-gold-rgb), .5);
    border-radius: 50%;
    font-size: 48px;
    margin-bottom: 24px;
    position: relative;
}
.bk-nrc__badge::after {
    content: '✓';
    position: absolute;
    bottom: 4px; right: 4px;
    width: 28px; height: 28px;
    background: var(--bk-gold);
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bk-nrc__label {
    display: inline-block;
    background: rgba(var(--bk-gold-rgb), .2);
    border: 1px solid rgba(var(--bk-gold-rgb), .4);
    color: #f0d28a;
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.bk-nrc__title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.bk-nrc__text {
    font-size: 16px;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin-bottom: 20px;
}
.bk-nrc__quote {
    background: rgba(255,255,255,.07);
    border-left: 3px solid var(--bk-gold);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    font-size: 15px;
    color: rgba(255,255,255,.88);
    font-style: italic;
    line-height: 1.6;
}
.bk-nrc__visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bk-nrc__pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 16px 20px;
    transition: var(--bk-transition);
}
.bk-nrc__pill:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(var(--bk-gold-rgb), .3);
}
.bk-nrc__pill-icon {
    font-size: 28px;
    flex-shrink: 0;
}
.bk-nrc__pill-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.bk-nrc__pill-text span {
    font-size: 13px;
    color: rgba(255,255,255,.6);
}
.bk-nrc__disclaimer {
    max-width: 1000px;
    margin: 32px auto 0;
    padding: 0 20px;
    font-size: 12px;
    color: rgba(255,255,255,.4);
    text-align: center;
    line-height: 1.6;
}

/* ── TESTIMONIALS STRIP ──────────────────────────────────── */
.bk-testimonials {
    background: var(--bk-cream);
    padding: 80px 20px;
}
.bk-testi-grid {
    max-width: 1100px;
    margin: 52px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.bk-testi {
    background: #fff;
    border-radius: var(--bk-radius);
    padding: 32px 28px;
    box-shadow: var(--bk-shadow);
    transition: var(--bk-transition);
}
.bk-testi:hover { transform: translateY(-3px); box-shadow: var(--bk-shadow-hover); }
.bk-testi__stars {
    color: #F5A623;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.bk-testi__text {
    font-size: 15px;
    color: var(--bk-text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.bk-testi__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bk-testi__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bk-green-dark), var(--bk-green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}
.bk-testi__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--bk-text-dark);
}
.bk-testi__dog {
    font-size: 13px;
    color: var(--bk-text-mid);
}

/* ── SCROLL REVEAL ANIMATION ─────────────────────────────── */
.bk-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.bk-reveal.bk-revealed {
    opacity: 1;
    transform: translateY(0);
}
.bk-reveal-delay-1 { transition-delay: 0.1s; }
.bk-reveal-delay-2 { transition-delay: 0.2s; }
.bk-reveal-delay-3 { transition-delay: 0.3s; }
.bk-reveal-delay-4 { transition-delay: 0.4s; }

/* ── Hide leftover generic TwentyTwentyFour content ─────── */
/* Scoped to main content area to avoid collateral hiding */
main .wp-block-group.alignfull > .wp-block-group > .wp-block-heading.has-x-large-font-size {
    display: none !important;
}
.bk-legacy-hide { display: none !important; }

/* ── STICKY MOBILE CTA ───────────────────────────────────── */
.bk-sticky-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--bk-gold);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 8px 30px rgba(var(--bk-gold-rgb), .5);
    transition: transform 0.4s cubic-bezier(.165,.84,.44,1),
                box-shadow 0.3s ease,
                opacity 0.4s ease;
    opacity: 0;
    white-space: nowrap;
}
.bk-sticky-cta.bk-sticky-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.bk-sticky-cta:active {
    transform: translateX(-50%) translateY(2px);
}
@media (max-width: 768px) {
    .bk-sticky-cta { display: block; }
}

/* ── FAQ SEKCIJA ─────────────────────────────────────────── */
.bk-faq {
    background: #fff;
    padding: 80px 20px;
}
.bk-faq__inner {
    max-width: 760px;
    margin: 0 auto;
}
.bk-faq__list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bk-faq__item {
    border: 1px solid rgba(var(--bk-green-dark-rgb), .12);
    border-radius: var(--bk-radius);
    overflow: hidden;
    transition: border-color var(--bk-transition);
}
.bk-faq__item.bk-faq--open {
    border-color: rgba(var(--bk-green-dark-rgb), .3);
}
.bk-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--bk-text-dark);
    font-family: inherit;
    transition: background var(--bk-transition);
}
.bk-faq__question:hover {
    background: rgba(var(--bk-green-dark-rgb), .03);
}
.bk-faq__icon {
    font-size: 22px;
    font-weight: 400;
    color: var(--bk-green-dark);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}
.bk-faq--open .bk-faq__icon {
    transform: rotate(45deg);
}
.bk-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(.165,.84,.44,1),
                padding 0.38s ease;
    padding: 0 24px;
}
.bk-faq--open .bk-faq__answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.bk-faq__answer p {
    font-size: 15px;
    color: var(--bk-text-mid);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .bk-faq { padding: 56px 20px; }
    .bk-faq__question { padding: 16px 18px; font-size: 15px; }
    .bk-faq__answer { padding: 0 18px; }
    .bk-faq--open .bk-faq__answer { padding: 0 18px 16px; }
}

/* ── Hide quiz trigger btn (we use hero CTA instead) ─────── */
.vb-trigger-wrap { display: none !important; }

/* ── Paw particle base style ─────────────────────────────── */
.bk-paw-particle {
    position: absolute;
    pointer-events: none;
    animation: bkFloat var(--bk-float-duration, 6s) ease-in-out infinite;
    animation-delay: var(--bk-float-delay, 0s);
    opacity: 0;
}

/* ── Responsive tweaks ───────────────────────────────────── */
@media (max-width: 768px) {
    .bk-hero { padding: 70px 20px 60px; }
    .bk-stats { padding: 48px 20px; }
    .bk-stats__inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .bk-stat__number { font-size: 38px; }
    .bk-why, .bk-testimonials { padding: 56px 20px; }
    .bk-nrc { padding: 56px 20px; }
}
@media (max-width: 480px) {
    .bk-stats__inner { grid-template-columns: 1fr 1fr; }
}

/* ── SEO SECTION (accordion, compact) ────────────────────── */
.bk-seo {
    background: var(--bk-cream, #F5F0E8);
    padding: 60px 20px;
}
.bk-seo__inner {
    max-width: 800px;
    margin: 0 auto;
}
.bk-seo__item {
    background: var(--bk-white, #fff);
    border: 1px solid rgba(61, 90, 62, 0.08);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.bk-seo__item:hover {
    box-shadow: 0 4px 20px rgba(61, 90, 62, 0.08);
}
.bk-seo__toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--bk-text-dark, #2A332B);
    text-align: left;
    gap: 12px;
    transition: color 0.2s;
}
.bk-seo__toggle:hover {
    color: var(--bk-green-dark, #3D5A3E);
}
.bk-seo__arrow {
    font-size: 20px;
    font-weight: 300;
    color: var(--bk-text-mid, #4A5A4C);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.bk-seo__item.bk-seo--open .bk-seo__arrow {
    transform: rotate(90deg);
}
.bk-seo__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 22px;
}
.bk-seo__item.bk-seo--open .bk-seo__content {
    max-height: 500px;
    padding: 0 22px 20px;
}
.bk-seo__content p {
    font-size: 14px;
    color: var(--bk-text-mid, #4A5A4C);
    line-height: 1.7;
    margin-bottom: 10px;
}
.bk-seo__content p:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .bk-seo { padding: 40px 20px; }
    .bk-seo__toggle { font-size: 14px; padding: 16px 18px; }
}

/* ── PRAKTIČNOST SECTION ────────────────────────────────── */
.bk-practical {
    padding: 80px 24px;
    background: var(--bk-cream);
}
.bk-practical__inner {
    max-width: 1000px;
    margin: 0 auto;
}
.bk-practical__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.bk-practical__card {
    background: var(--bk-white);
    border-radius: var(--bk-radius);
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(var(--bk-green-dark-rgb), .06);
    transition: transform var(--bk-transition), box-shadow var(--bk-transition);
}
.bk-practical__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bk-shadow-hover);
}
.bk-practical__icon {
    font-size: 36px;
    margin-bottom: 12px;
}
.bk-practical__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--bk-text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.bk-practical__text {
    font-size: 13px;
    color: var(--bk-text-mid);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .bk-practical { padding: 48px 16px; }
    .bk-practical__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .bk-practical__card { padding: 20px 16px; }
    .bk-practical__icon { font-size: 28px; }
    .bk-practical__title { font-size: 13px; }
    .bk-practical__text { font-size: 12px; }
}
/* ── CUSTOM RECIPE CTA ──────────────────────────────────── */
.bk-custom {
    background: var(--bk-green-dark, #3D5A3E);
    padding: 64px 20px;
    text-align: center;
}
.bk-custom__inner {
    max-width: 640px;
    margin: 0 auto;
}
.bk-custom__icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}
.bk-custom__title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.3;
}
.bk-custom__text {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin: 0 auto 28px;
    max-width: 520px;
}
.bk-custom__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.bk-custom__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}
.bk-custom__btn:hover {
    transform: translateY(-2px);
}
.bk-custom__btn--primary {
    background: #C8922A;
    color: #fff;
    box-shadow: 0 6px 24px rgba(200, 146, 42, 0.4);
}
.bk-custom__btn--primary:hover {
    box-shadow: 0 12px 32px rgba(200, 146, 42, 0.55);
}
.bk-custom__btn--secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}
.bk-custom__btn--secondary:hover {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.bk-custom__note {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 20px;
}
@media (max-width: 600px) {
    .bk-custom { padding: 48px 16px; }
    .bk-custom__title { font-size: 22px; }
    .bk-custom__actions { flex-direction: column; align-items: center; }
    .bk-custom__btn { width: 100%; max-width: 300px; justify-content: center; }
}
/* ════════════════════════════════════════════════
   REFERRAL / POZOVI PRIJATELJA SECTION
   ════════════════════════════════════════════════ */

.bk-referral {
    padding: 48px 20px;
    background: linear-gradient(180deg, #F5F0E8 0%, #EDEBE4 100%);
}
.bk-referral__inner {
    max-width: 800px;
    margin: 0 auto;
}
.bk-referral__hero {
    text-align: center;
    margin-bottom: 32px;
}
.bk-referral__icon {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}
.bk-referral__title {
    font-family: var(--bk-serif, Georgia, serif);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: #3D5A3E;
    margin: 0 0 10px;
}
.bk-referral__subtitle {
    font-size: 15px;
    color: #4A5A4C;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

/* Cards */
.bk-referral__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}
.bk-referral__card {
    background: #fff;
    border: 1px solid rgba(61,90,62,0.1);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s;
}
.bk-referral__card:hover { transform: translateY(-3px); }
.bk-referral__card-icon { font-size: 28px; }
.bk-referral__card strong { font-size: 14px; color: #2A332B; }
.bk-referral__card span { font-size: 12px; color: #4A5A4C; }
.bk-referral__card--gold {
    background: linear-gradient(135deg, #FFF8EC, #FFF3DC);
    border-color: rgba(200,146,42,0.25);
}

/* Leaderboard */
.bk-referral__leaderboard {
    background: #fff;
    border: 1px solid rgba(61,90,62,0.1);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 28px;
}
.bk-referral__lb-title {
    font-size: 15px;
    font-weight: 700;
    color: #3D5A3E;
    margin: 0 0 14px;
    text-align: center;
}
.bk-referral__lb-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bk-referral__lb-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #F5F0E8;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s;
}
.bk-referral__lb-row--first {
    background: linear-gradient(135deg, #FFF8EC, #FFF3DC);
    border: 1px solid rgba(200,146,42,0.2);
    font-weight: 700;
}
.bk-referral__lb-rank {
    font-size: 18px;
    min-width: 28px;
    text-align: center;
}
.bk-referral__lb-name {
    flex: 1;
    font-weight: 600;
    color: #2A332B;
}
.bk-referral__lb-count {
    font-size: 13px;
    font-weight: 700;
    color: #3D5A3E;
    background: rgba(61,90,62,0.08);
    padding: 3px 10px;
    border-radius: 20px;
}
.bk-referral__lb-empty {
    text-align: center;
    padding: 20px;
    color: #8a8a7a;
    font-size: 14px;
}

/* CTA */
.bk-referral__cta {
    text-align: center;
}
.bk-referral__btn {
    display: inline-block;
    padding: 14px 36px;
    background: #C8922A;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(200,146,42,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.bk-referral__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(200,146,42,0.45);
    color: #fff;
}
.bk-referral__cta-note {
    font-size: 12px;
    color: #8a8a7a;
    margin-top: 12px;
}
.bk-referral__cta-note a {
    color: #3D5A3E;
    font-weight: 600;
}

@media (max-width: 600px) {
    .bk-referral__cards { grid-template-columns: 1fr; }
    .bk-referral { padding: 32px 16px; }
}

/* ════════════════════════════════════════════════
   PROMO BAR (below navbar)
   ════════════════════════════════════════════════ */

.bk-promo-bar {
    background: linear-gradient(135deg, #3D5A3E 0%, #2a4a2c 100%);
    position: relative;
    z-index: 999;
}
.bk-promo-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.bk-promo-bar__icon {
    font-size: 18px;
    flex-shrink: 0;
}
.bk-promo-bar__text {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}
.bk-promo-bar__text strong {
    color: #fff;
}
.bk-promo-bar__timer {
    font-size: 12px;
    color: #C8922A;
    background: rgba(200,146,42,0.15);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}
.bk-promo-bar__timer strong {
    color: #FFD97D;
}
.bk-promo-bar__btn {
    font-size: 12px;
    font-weight: 700;
    color: #3D5A3E;
    background: #C8922A;
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}
.bk-promo-bar__btn:hover {
    background: #FFD97D;
    color: #2A332B;
    transform: translateY(-1px);
}
.bk-promo-bar__close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 16px;
    cursor: pointer;
    padding: 2px 6px;
    flex-shrink: 0;
    transition: color 0.2s;
}
.bk-promo-bar__close:hover {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 600px) {
    .bk-promo-bar__inner {
        padding: 8px 14px;
        gap: 8px;
    }
    .bk-promo-bar__text { font-size: 12px; }
    .bk-promo-bar__timer { display: none; }
}
/* ════════════════════════════════════════════════
   STANDARDI SEKCIJA (NRC / FEDIAF / WSAVA / AAFCO)
   ════════════════════════════════════════════════ */

.bk-standards {
    background: #fff;
    padding: 80px 20px;
}
.bk-standards__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.bk-standards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
@media (max-width: 768px) {
    .bk-standards__grid { grid-template-columns: 1fr; }
}

.bk-standard-card {
    background: #fff;
    border: 1px solid rgba(61,90,62,0.1);
    border-radius: 18px;
    padding: 28px 28px 24px;
    transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}
.bk-standard-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bk-green-dark), var(--bk-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.38s ease;
}
.bk-standard-card:hover {
    box-shadow: 0 16px 48px rgba(61,90,62,0.12);
    transform: translateY(-4px);
    border-color: rgba(61,90,62,0.2);
}
.bk-standard-card:hover::before { transform: scaleX(1); }

.bk-standard-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
.bk-standard-card__logo {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bk-green-dark), var(--bk-green-light));
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(61,90,62,0.3);
}
.bk-standard-card__logo--eu {
    background: linear-gradient(135deg, #003399, #0055cc);
    box-shadow: 0 4px 14px rgba(0,51,153,0.3);
}
.bk-standard-card__logo--wsava {
    background: linear-gradient(135deg, #7b2d8b, #a044b5);
    box-shadow: 0 4px 14px rgba(123,45,139,0.3);
}
.bk-standard-card__logo--aafco {
    background: linear-gradient(135deg, #C8922A, #e0aa40);
    box-shadow: 0 4px 14px rgba(200,146,42,0.3);
}
.bk-standard-card__meta strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--bk-text-dark);
    margin-bottom: 2px;
}
.bk-standard-card__meta span {
    font-size: 12px;
    color: var(--bk-text-mid);
    font-style: italic;
}
.bk-standard-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--bk-text-dark);
    margin: 0 0 10px;
    line-height: 1.3;
}
.bk-standard-card__text {
    font-size: 14px;
    color: var(--bk-text-mid);
    line-height: 1.75;
    margin: 0 0 16px;
}
.bk-standard-card__text em {
    font-style: italic;
    color: var(--bk-text-dark);
}
.bk-standard-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.bk-standard-card__pills span {
    background: rgba(61,90,62,0.07);
    color: var(--bk-green-dark);
    border: 1px solid rgba(61,90,62,0.15);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.02em;
}

.bk-standards__disclaimer {
    margin-top: 32px;
    background: rgba(61,90,62,0.05);
    border: 1px solid rgba(61,90,62,0.12);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 13px;
    color: var(--bk-text-mid);
    line-height: 1.6;
    text-align: center;
}

/* ════════════════════════════════════════════════
   TEAM SEKCIJA
   ════════════════════════════════════════════════ */

.bk-team {
    background: var(--bk-cream);
    padding: 80px 20px;
}
.bk-team__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.bk-team__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
@media (max-width: 768px) {
    .bk-team__grid { grid-template-columns: 1fr; }
    .bk-team { padding: 56px 20px; }
}

.bk-team-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 24px rgba(61,90,62,0.07);
    border: 1px solid rgba(61,90,62,0.08);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.bk-team-card:hover {
    box-shadow: 0 16px 48px rgba(61,90,62,0.14);
    transform: translateY(-4px);
}

.bk-team-card__avatar {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
}
.bk-team-card__avatar--1 {
    background: linear-gradient(135deg, var(--bk-green-dark), var(--bk-green-light));
    box-shadow: 0 4px 16px rgba(61,90,62,0.35);
}
.bk-team-card__avatar--2 {
    background: linear-gradient(135deg, #2a4a7a, #4472b8);
    box-shadow: 0 4px 16px rgba(42,74,122,0.35);
}
.bk-team-card__avatar--3 {
    background: linear-gradient(135deg, #7b2d8b, #b055c8);
    box-shadow: 0 4px 16px rgba(123,45,139,0.35);
}
.bk-team-card__avatar--4 {
    background: linear-gradient(135deg, var(--bk-gold), #e0aa40);
    box-shadow: 0 4px 16px rgba(200,146,42,0.4);
}

.bk-team-card__body { flex: 1; }
.bk-team-card__name {
    font-size: 17px;
    font-weight: 800;
    color: var(--bk-text-dark);
    margin: 0 0 4px;
    line-height: 1.2;
}
.bk-team-card__role {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--bk-green-mid);
    background: rgba(var(--bk-green-light-rgb), 0.12);
    border-radius: 50px;
    padding: 3px 12px;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}
.bk-team-card__bio {
    font-size: 13.5px;
    color: var(--bk-text-mid);
    line-height: 1.7;
    margin: 0 0 14px;
}
.bk-team-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.bk-team-card__tags span {
    background: rgba(61,90,62,0.06);
    color: var(--bk-green-dark);
    border: 1px solid rgba(61,90,62,0.14);
    border-radius: 50px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 480px) {
    .bk-team-card { flex-direction: column; align-items: center; text-align: center; }
    .bk-team-card__tags { justify-content: center; }
}

/* ── Standards extra logos & layout variants ─────────────── */
.bk-standard-card__logo--haccp {
    background: linear-gradient(135deg, #b03a2e, #e74c3c);
    box-shadow: 0 4px 14px rgba(176,58,46,0.3);
    font-size: 10px;
}
.bk-standard-card__logo--iso {
    background: linear-gradient(135deg, #1a5276, #2980b9);
    box-shadow: 0 4px 14px rgba(26,82,118,0.3);
    font-size: 10px;
}
.bk-standard-card__logo--gmp {
    background: linear-gradient(135deg, #1e8449, #27ae60);
    box-shadow: 0 4px 14px rgba(30,132,73,0.3);
    font-size: 10px;
}
.bk-standard-card__logo--rs {
    background: linear-gradient(135deg, #922b21, #c0392b);
    box-shadow: 0 4px 14px rgba(146,43,33,0.3);
}

.bk-standards__grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
.bk-standards__grid--2 {
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
    .bk-standards__grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .bk-standards__grid--3,
    .bk-standards__grid--2 { grid-template-columns: 1fr; }
}

.bk-standards__category-label {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bk-green-mid);
    margin-bottom: 20px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bk-standards__category-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(61,90,62,0.15);
}

/* ════════════════════════════════════════════════
   REFERRAL LOCKED STATE
   ════════════════════════════════════════════════ */

.vb-ref-locked {
    background: #fff;
    border: 2px dashed rgba(61,90,62,0.2);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
}
.vb-ref-locked__icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
    filter: grayscale(0.3);
}
.vb-ref-locked__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--bk-text-dark);
    margin: 0 0 10px;
    line-height: 1.3;
}
.vb-ref-locked__text {
    font-size: 14px;
    color: var(--bk-text-mid);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 24px;
}
.vb-ref-locked__steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 380px;
    margin: 0 auto 24px;
    text-align: left;
}
.vb-ref-locked__step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bk-cream);
    border-radius: 10px;
    font-size: 14px;
    color: var(--bk-text-mid);
    border: 1px solid rgba(61,90,62,0.08);
}
.vb-ref-locked__step--done {
    background: rgba(127,176,105,0.1);
    border-color: rgba(127,176,105,0.3);
    color: var(--bk-green-dark);
}
.vb-ref-locked__step--locked {
    opacity: 0.5;
}
.vb-ref-locked__step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(61,90,62,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--bk-green-dark);
    flex-shrink: 0;
}
.vb-ref-locked__step--done .vb-ref-locked__step-num {
    background: rgba(127,176,105,0.2);
}
.vb-ref-locked__cta {
    display: inline-block;
    background: var(--bk-gold);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(200,146,42,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 16px;
}
.vb-ref-locked__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(200,146,42,0.45);
    color: #fff;
}
.vb-ref-locked__note {
    font-size: 12px;
    color: #9a8a7a;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto;
    background: rgba(200,146,42,0.06);
    border: 1px solid rgba(200,146,42,0.15);
    border-radius: 8px;
    padding: 10px 14px;
}
/* ============================================================
   BK-QUALITY — Naš kvalitet
   ============================================================ */

.bk-quality {
    padding: 72px 24px;
    background: #fff;
}
.bk-quality__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.bk-quality__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 48px;
}
@media (max-width: 900px) { .bk-quality__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .bk-quality__grid { grid-template-columns: 1fr; } }

.bk-quality-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fafaf8;
    border: 1.5px solid #ece9e2;
    border-radius: 16px;
    padding: 20px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.bk-quality-card:hover {
    border-color: rgba(200,146,42,.35);
    box-shadow: 0 6px 24px rgba(200,146,42,.09);
    transform: translateY(-2px);
}

.bk-quality-card__badge {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: -.3px;
    line-height: 1.2;
    text-align: center;
    color: #fff;
}
.bk-quality-card__badge--fediaf { background: linear-gradient(135deg,#1a4fa0,#2d6fd4); font-size:9px; }
.bk-quality-card__badge--haccp  { background: linear-gradient(135deg,#1a7a3c,#27ae60); font-size:10px; }
.bk-quality-card__badge--iso    { background: linear-gradient(135deg,#5b2d8c,#8b5cf6); font-size:9px; }
.bk-quality-card__badge--meat   { background: linear-gradient(135deg,#fdf6ee,#faebd7); font-size:22px; color:#C8922A; }
.bk-quality-card__badge--grain  { background: linear-gradient(135deg,#f0ede6,#e8e2d8); color:#5A5E52; font-size:16px; }
.bk-quality-card__badge--grain small { font-size: 7px; font-weight: 700; display:block; line-height:1.1; }
.bk-quality-card__badge--gmo    { background: linear-gradient(135deg,#3D5A3E,#5a8c5c); font-size:8px; }

.bk-quality-card__body { flex:1; }
.bk-quality-card__body strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #2A332B;
    margin-bottom: 5px;
    line-height: 1.3;
}
.bk-quality-card__body span {
    font-size: 12px;
    color: #5A5E52;
    line-height: 1.6;
}

/* ── Standards toggle trigger ── */
.bk-standards__trigger {
    text-align: center;
    padding: 0 24px 40px;
}
.bk-standards__toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 2px solid #ece9e2;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    color: #2A332B;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
}
.bk-standards__toggle:hover,
.bk-standards__toggle--open {
    background: #3D5A3E;
    border-color: #3D5A3E;
    color: #fff;
}
.bk-standards__toggle-icon {
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}
.bk-standards__trigger-sub {
    margin: 10px 0 0;
    font-size: 11px;
    color: #aaa;
    letter-spacing: .3px;
}
.bk-standards__content {
    animation: bkFadeIn .3s ease;
}
@keyframes bkFadeIn {
    from { opacity:0; transform:translateY(-8px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   CROSS-BROWSER & RESPONSIVE FIXES
   Safari 14+, Chrome, Firefox — Mobile first
   ════════════════════════════════════════════════════════════ */

/* ── Safari: inset shorthand nije podržan pre Safari 15 ─── */
.bk-hero::before {
    top: 0; left: 0; right: 0; bottom: 0;
}
.bk-hero__cta-pulse {
    top: -6px; left: -6px; right: -6px; bottom: -6px;
}

/* ── Safari: backdrop-filter fallback ───────────────────── */
@supports not (backdrop-filter: blur(10px)) {
    .bk-hero__eyebrow {
        background: rgba(61, 90, 62, 0.85);
    }
    .bk-hero__nrc-badge {
        background: rgba(61, 90, 62, 0.75);
    }
}

/* ── Safari: CSS Custom Properties u rgba() ─────────────── */
/* Safari < 15.4 ne podržava rgba(var(--rgb), alpha) */
/* Fix: koristimo direktne rgba vrednosti kao fallback */
.bk-hero {
    background: linear-gradient(135deg, #2A332B 0%, #3D5A3E 45%, #4A6B3A 100%);
}
.bk-stats {
    background: #3D5A3E;
}
.bk-hero__cta {
    box-shadow: 0 8px 30px rgba(200, 146, 42, 0.45);
}
.bk-hero__cta:hover {
    box-shadow: 0 16px 40px rgba(200, 146, 42, 0.55);
}

/* ── Safari: clamp() je podržan od Safari 13.1 ──────────── */
/* Fallback za starije verzije */
.bk-hero__title {
    font-size: 36px; /* fallback */
    font-size: clamp(36px, 5vw, 68px);
}
.bk-section-heading h2,
.bk-quiz-section__heading h2 {
    font-size: 28px; /* fallback */
    font-size: clamp(28px, 4vw, 46px);
}
.bk-nrc__title {
    font-size: 24px; /* fallback */
    font-size: clamp(24px, 3vw, 38px);
}

/* ── Safari: position: sticky na iOS ────────────────────── */
.bk-sticky-cta {
    position: -webkit-sticky; /* stari Safari */
    position: fixed;
    /* Safari: left+transform combo može da kaska — koristimo margin umesto */
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(80px);
    transform: translateX(-50%) translateY(80px);
}
.bk-sticky-cta.bk-sticky-visible {
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
}

/* ── Safari: grid gap podrška ────────────────────────────── */
.bk-stats__inner {
    gap: 40px;
    grid-gap: 40px; /* stari webkit */
}
.bk-cards {
    gap: 28px;
    grid-gap: 28px;
}
.bk-testi-grid {
    gap: 24px;
    grid-gap: 24px;
}

/* ── Safari: transform na hover ne radi sa transition ────── */
.bk-card,
.bk-testi,
.bk-quality-card {
    -webkit-transform: translateZ(0); /* force GPU layer */
    transform: translateZ(0);
    will-change: transform;
}

/* ── iOS: tap highlight color ────────────────────────────── */
.bk-hero__cta,
.bk-faq__question,
.bk-seo__toggle,
.bk-standards__toggle,
.bk-sticky-cta {
    -webkit-tap-highlight-color: transparent;
}

/* ── iOS Safari: 100vh problem (keyboard + toolbar) ─────── */
@supports (-webkit-touch-callout: none) {
    .bk-hero {
        /* Na iOS 100vh uključuje browser toolbar */
        min-height: -webkit-fill-available;
    }
}

/* ── Responsive: hero na malim ekranima ─────────────────── */
@media (max-width: 390px) {
    .bk-hero {
        padding: 56px 16px 48px;
    }
    .bk-hero__title {
        font-size: 30px;
        line-height: 1.15;
    }
    .bk-hero__subtitle {
        font-size: 15px;
    }
    .bk-hero__cta {
        padding: 15px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
        max-width: 340px;
    }
    .bk-hero__nrc-badge {
        font-size: 12px;
        padding: 8px 14px;
        text-align: center;
        flex-direction: column;
        gap: 6px;
    }
}

/* ── Responsive: stats na 320px ─────────────────────────── */
@media (max-width: 360px) {
    .bk-stats__inner {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .bk-stat__number {
        font-size: 32px;
    }
    .bk-stat__label {
        font-size: 13px;
    }
}

/* ── Responsive: cards na tablet portrait ───────────────── */
@media (min-width: 600px) and (max-width: 900px) {
    .bk-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .bk-testi-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

/* ── Responsive: NRC sekcija na mobile ──────────────────── */
@media (max-width: 480px) {
    .bk-nrc__inner {
        gap: 28px;
    }
    .bk-nrc__badge {
        width: 88px;
        height: 88px;
        font-size: 36px;
    }
    .bk-nrc__title {
        font-size: 22px;
    }
    .bk-nrc__text,
    .bk-nrc__quote {
        font-size: 14px;
    }
    .bk-nrc__pill {
        padding: 12px 16px;
        gap: 12px;
    }
    .bk-nrc__pill-icon {
        font-size: 22px;
    }
}

/* ── Responsive: trust bar na mobile ────────────────────── */
@media (max-width: 480px) {
    .bk-trust-bar {
        padding: 0;
    }
    .bk-trust-item {
        flex-shrink: 0;
    }
}

/* ── Responsive: section headings na mobile ─────────────── */
@media (max-width: 480px) {
    .bk-section-heading {
        margin-bottom: 36px;
    }
    .bk-section-heading h2 {
        font-size: 24px;
        line-height: 1.2;
    }
    .bk-section-heading p {
        font-size: 15px;
    }
    .bk-why, .bk-faq, .bk-testimonials {
        padding: 48px 16px;
    }
}

/* ── Responsive: FAQ na mobile ───────────────────────────── */
@media (max-width: 480px) {
    .bk-faq__question {
        font-size: 14px;
        padding: 14px 16px;
        gap: 12px;
        line-height: 1.4;
    }
    .bk-faq__icon {
        font-size: 18px;
        flex-shrink: 0;
    }
    .bk-faq--open .bk-faq__answer {
        max-height: 400px; /* više prostora za duge odgovore na mobile */
    }
}

/* ── Responsive: quality grid na mobile ─────────────────── */
@media (max-width: 480px) {
    .bk-quality {
        padding: 48px 16px;
    }
    .bk-quality-card {
        padding: 16px;
        gap: 12px;
    }
    .bk-quality-card__badge {
        width: 46px;
        height: 46px;
    }
    .bk-quality-card__body strong {
        font-size: 12px;
    }
    .bk-quality-card__body span {
        font-size: 11px;
    }
}

/* ── Responsive: standards grid na mobile ───────────────── */
@media (max-width: 480px) {
    .bk-standards__grid--3,
    .bk-standards__grid--2 {
        grid-template-columns: 1fr;
    }
    .bk-standards__toggle {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ── Responsive: referral locked steps na mobile ────────── */
@media (max-width: 480px) {
    .vb-ref-locked {
        padding: 24px 18px;
    }
    .vb-ref-locked__steps {
        max-width: 100%;
    }
    .vb-ref-locked__step {
        font-size: 13px;
    }
}

/* ── Chrome: scrollbar styling ───────────────────────────── */
.bk-faq__answer::-webkit-scrollbar {
    height: 0;
    width: 0;
}

/* ── Firefox: gap i grid fixes ───────────────────────────── */
@-moz-document url-prefix() {
    .bk-stats__inner {
        grid-gap: 40px;
    }
    .bk-hero__cta {
        box-shadow: 0 8px 30px rgba(200, 146, 42, 0.45);
    }
}

/* ── Windows High Contrast Mode ─────────────────────────── */
@media (forced-colors: active) {
    .bk-hero__cta,
    .bk-sticky-cta {
        border: 2px solid ButtonText;
    }
    .bk-card::before {
        display: none;
    }
}

/* ── Print ───────────────────────────────────────────────── */
@media print {
    .bk-sticky-cta,
    .bk-hero__cta-pulse,
    .bk-paw-particle {
        display: none !important;
    }
}

/* ════════════════════════════════════════════════════════════
   CROSS-BROWSER PRODUCTION FIXES — Safari, Chrome, Firefox
   ════════════════════════════════════════════════════════════ */

/* ── Safari < 15: inset shorthand → explicit top/left/right/bottom ─ */
.bk-hero::before {
    top: 0; left: 0; right: 0; bottom: 0;
}
.bk-hero__cta-pulse {
    top: -6px; left: -6px; right: -6px; bottom: -6px;
}

/* ── Safari: -webkit-backdrop-filter required ────────────── */
.bk-hero__eyebrow {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.bk-hero__nrc-badge {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* ── Safari: backdrop-filter @supports fallback ─────────── */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .bk-hero__eyebrow  { background: rgba(61, 90, 62, 0.85); }
    .bk-hero__nrc-badge { background: rgba(42, 51, 43, 0.80); }
}

/* ── iOS: -webkit-tap-highlight-color on interactive elements */
.bk-hero__cta,
.bk-sticky-cta,
.bk-faq__question,
.bk-seo__toggle,
.bk-standards__toggle,
.bk-card {
    -webkit-tap-highlight-color: transparent;
}

/* ── iOS Safari: 100vh excludes toolbar ─────────────────── */
@supports (-webkit-touch-callout: none) {
    .bk-hero {
        min-height: -webkit-fill-available;
    }
}

/* ── Safari: will-change for transform animations ────────── */
.bk-card,
.bk-testi,
.bk-quality-card,
.bk-nrc__pill,
.bk-practical__card {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

/* ── Safari: clamp() fallback values ────────────────────── */
.bk-hero__title {
    font-size: 36px;
    font-size: clamp(36px, 5vw, 68px);
}
.bk-section-heading h2,
.bk-quiz-section__heading h2 {
    font-size: 28px;
    font-size: clamp(28px, 4vw, 46px);
}
.bk-nrc__title {
    font-size: 24px;
    font-size: clamp(24px, 3vw, 38px);
}

/* ── Safari: sticky CTA transform ───────────────────────── */
.bk-sticky-cta {
    -webkit-transform: translateX(-50%) translateY(80px);
    transform: translateX(-50%) translateY(80px);
}
.bk-sticky-cta.bk-sticky-visible {
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
}

/* ── Firefox: range input track styling ─────────────────── */
.bk-stats__inner {
    grid-gap: 40px;
    gap: 40px;
}
.bk-cards {
    grid-gap: 28px;
    gap: 28px;
}
.bk-testi-grid {
    grid-gap: 24px;
    gap: 24px;
}

/* trust bar 600px — handled by marquee */

/* ── Mobile: hero padding ────────────────────────────────── */
@media (max-width: 390px) {
    .bk-hero { padding: 56px 16px 48px; }
    .bk-hero__title { font-size: 28px; line-height: 1.15; }
    .bk-hero__subtitle { font-size: 14px; }
    .bk-hero__cta {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ── Mobile: stats 2 col on tiny screens ────────────────── */
@media (max-width: 360px) {
    .bk-stats__inner {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .bk-stat__number { font-size: 32px; }
}

/* ── Mobile: cards single col under 500px ───────────────── */
@media (max-width: 499px) {
    .bk-cards {
        grid-template-columns: 1fr;
    }
    .bk-practical__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .bk-practical__card {
        padding: 20px 16px;
        text-align: left;
    }
    .bk-practical__icon {
        margin-bottom: 10px;
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}

/* ── Mobile: NRC section stacking ───────────────────────── */
@media (max-width: 480px) {
    .bk-nrc__badge { width: 80px; height: 80px; font-size: 32px; }
    .bk-nrc__title { font-size: 22px; }
    .bk-nrc { padding: 56px 16px; }
    .bk-why, .bk-testimonials, .bk-faq { padding: 56px 16px; }
    .bk-practical { padding: 48px 16px; }
    .bk-section-heading { margin-bottom: 36px; }
    .bk-section-heading h2 { font-size: 24px; }
}

/* ── Mobile: testimonials single col ────────────────────── */
@media (max-width: 600px) {
    .bk-testi-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ── Mobile: FAQ ─────────────────────────────────────────── */
@media (max-width: 480px) {
    .bk-faq__question { font-size: 14px; padding: 14px 16px; }
    .bk-faq--open .bk-faq__answer { max-height: 500px; }
}

/* ── High contrast mode support ─────────────────────────── */
@media (forced-colors: active) {
    .bk-hero__cta,
    .bk-sticky-cta { border: 2px solid ButtonText; }
    .bk-card::before { display: none; }
}

/* ── Print ───────────────────────────────────────────────── */
@media print {
    .bk-sticky-cta,
    .bk-hero__cta-pulse,
    .bk-promo-bar { display: none !important; }
    .bk-hero { background: #3D5A3E !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
/* ════════════════════════════════════════════════════════════
   NEW SECTIONS — How It Works, Health, Google Review, Hero extras
   ════════════════════════════════════════════════════════════ */

/* ── HERO METRICS BAR (social proof below CTA) ─────────── */
.bk-hero__metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-top: 28px;
}
.bk-hero__metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.bk-hero__metric-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--bk-gold);
    line-height: 1;
}
.bk-hero__metric-label {
    font-size: 11px;
    color: rgba(255,255,255,.6);
    text-align: center;
    letter-spacing: .03em;
    max-width: 90px;
}
.bk-hero__metric-sep {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,.15);
    align-self: center;
}
@media (max-width: 480px) {
    .bk-hero__metrics { gap: 6px 12px; }
    .bk-hero__metric-val { font-size: 18px; }
    .bk-hero__metric-sep { display: none; }
}

/* ── HOW IT WORKS STEPPER ──────────────────────────────── */
.bk-how {
    background: var(--bk-cream);
    padding: 72px 20px;
}
.bk-how__inner {
    max-width: 900px;
    margin: 0 auto;
}
.bk-how__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
}
.bk-how__step {
    flex: 1;
    text-align: center;
    max-width: 260px;
    position: relative;
}
.bk-how__step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bk-gold);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.bk-how__step-icon {
    font-size: 42px;
    margin-bottom: 14px;
}
.bk-how__step-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--bk-text-dark);
    margin-bottom: 8px;
}
.bk-how__step-text {
    font-size: 14px;
    color: var(--bk-text-mid);
    line-height: 1.6;
}
.bk-how__connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(200,146,42,.3), rgba(200,146,42,.6));
    margin-top: 54px;
    flex-shrink: 0;
}
.bk-how__cta {
    text-align: center;
    margin-top: 40px;
}
.bk-how__btn {
    display: inline-flex !important;
}
@media (max-width: 768px) {
    .bk-how__steps {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .bk-how__connector {
        width: 2px;
        height: 32px;
        margin: 0;
    }
    .bk-how__step {
        max-width: 100%;
    }
    .bk-how { padding: 48px 16px; }
}

/* ── HEALTH & LONGEVITY ────────────────────────────────── */
.bk-health {
    background: linear-gradient(135deg, var(--bk-text-dark) 0%, var(--bk-green-dark) 100%);
    padding: 80px 20px;
}
.bk-health__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.bk-health__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.bk-health__card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--bk-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--bk-transition);
}
.bk-health__card:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(200,146,42,.3);
    transform: translateY(-3px);
}
.bk-health__card-icon {
    font-size: 32px;
}
.bk-health__card strong {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.bk-health__card span {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
}
.bk-health__disclaimer {
    text-align: center;
    margin-top: 32px;
    font-size: 12px;
    color: rgba(255,255,255,.4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .bk-health { padding: 56px 16px; }
    .bk-health__grid { grid-template-columns: 1fr; }
}

/* ── GOOGLE REVIEW CTA ─────────────────────────────────── */
.bk-testi-google {
    text-align: center;
    margin-top: 40px;
}
.bk-testi-google__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(200,146,42,.08);
    border: 1.5px solid rgba(200,146,42,.25);
    border-radius: 50px;
    color: var(--bk-gold);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
}
.bk-testi-google__link:hover {
    background: rgba(200,146,42,.15);
    border-color: rgba(200,146,42,.4);
    transform: translateY(-2px);
    color: var(--bk-gold);
}
@media (max-width: 600px) {
    .bk-testi-google__link {
        font-size: 13px;
        padding: 12px 20px;
    }
}
/* ════════════════════════════════════════════════════════
   PAMETNA PRETPLATA SEKCIJA  (R8 / R9 / R10 / R11)
   ════════════════════════════════════════════════════════ */

/* ── Keyframe for poop meter fill animation ─────────────── */
@keyframes bkMeterFill {
    from { width: 0; }
    to   { width: var(--bk-meter-w, 70%); }
}

.bk-smart-sub {
    background: #fff;
    padding: 80px 20px;
}
.bk-smart-sub__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.bk-smart-sub__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 0;
}
.bk-smart-sub__card {
    background: var(--bk-cream);
    border: 1px solid rgba(var(--bk-green-dark-rgb), .08);
    border-radius: var(--bk-radius);
    padding: 36px 28px;
    transition: var(--bk-transition);
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
}
.bk-smart-sub__card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bk-green-dark), var(--bk-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--bk-transition);
}
.bk-smart-sub__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bk-shadow-hover);
}
.bk-smart-sub__card:hover::after { transform: scaleX(1); }
.bk-smart-sub__icon {
    font-size: 40px;
    line-height: 1;
}
.bk-smart-sub__title {
    font-size: 19px;
    font-weight: 700;
    color: var(--bk-text-dark);
    line-height: 1.25;
    margin: 0;
}
.bk-smart-sub__text {
    font-size: 14px;
    color: var(--bk-text-mid);
    line-height: 1.7;
    margin: 0;
}

/* ── Poop Meter component ─────────────────────────────── */
.bk-poop-meter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(var(--bk-green-dark-rgb), .04);
    border-radius: 10px;
    padding: 14px 16px;
}
.bk-poop-meter__labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: var(--bk-text-mid);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.bk-poop-meter__bar {
    position: relative;
    background: rgba(var(--bk-green-dark-rgb), .08);
    border-radius: 50px;
    height: 10px;
    overflow: hidden;
}
.bk-poop-meter__fill {
    height: 100%;
    border-radius: 50px;
    width: 0;
    transition: width 1.2s cubic-bezier(.22,1,.36,1);
}
.bk-poop-meter__fill--bad  { background: #d97777; }
.bk-poop-meter__fill--good { background: var(--bk-green-mid); }
.bk-poop-meter__val {
    position: absolute;
    right: 0;
    top: -18px;
    font-size: 10px;
    font-weight: 700;
    color: var(--bk-text-mid);
    white-space: nowrap;
}
.bk-poop-meter__val--good { color: var(--bk-green-mid); }

/* ── Season display ───────────────────────────────────── */
.bk-smart-sub__season {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(var(--bk-green-dark-rgb), .04);
    border-radius: 10px;
    padding: 14px 16px;
}
.bk-smart-sub__season-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bk-smart-sub__season-icon { font-size: 28px; }
.bk-smart-sub__season-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bk-smart-sub__season-item strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--bk-text-dark);
}
.bk-smart-sub__season-item span {
    font-size: 12px;
    color: var(--bk-green-mid);
    font-weight: 600;
}
.bk-smart-sub__season-arrow {
    font-size: 20px;
    color: var(--bk-text-mid);
    flex-shrink: 0;
}

/* ── Weight tracker ───────────────────────────────────── */
.bk-smart-sub__weight {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(var(--bk-green-dark-rgb), .04);
    border-radius: 10px;
    padding: 14px 16px;
}
.bk-smart-sub__weight-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--bk-text-mid);
}
.bk-smart-sub__weight-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.bk-smart-sub__weight-dot--done {
    background: var(--bk-green-mid);
    color: #fff;
}
.bk-smart-sub__weight-dot--active {
    background: var(--bk-gold);
    color: #fff;
}
.bk-smart-sub__weight-step:last-child {
    font-weight: 600;
    color: var(--bk-text-dark);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
    .bk-smart-sub { padding: 56px 16px; }
    .bk-smart-sub__grid { grid-template-columns: 1fr; gap: 16px; }
    .bk-smart-sub__card { padding: 24px 20px; }
}

/* ── bk-smart-hub (section wrapper) ──────────────────── */
.bk-smart-hub {
    background: var(--bk-bg-light, #f9f7f4);
    padding: 80px 24px;
}
@media (max-width: 768px) {
    .bk-smart-hub { padding: 56px 16px; }
}

/* ── bk-faq delivery note ─────────────────────────────── */
.bk-faq__delivery-note {
    margin-bottom: 32px;
    font-size: 0.95rem;
    color: var(--bk-text-mid, #4A5A4C);
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   BK-ABOUT — O nama bento grid
   ════════════════════════════════════════════════════════════ */
.bk-about {
    background: var(--bk-cream, #F5F0E8);
    padding: 96px 24px;
}
.bk-about__inner {
    max-width: 1140px;
    margin: 0 auto;
}
.bk-about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.bk-about__card {
    background: #fff;
    border-radius: var(--bk-radius, 16px);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform var(--bk-transition, 0.38s ease), box-shadow var(--bk-transition, 0.38s ease);
    box-shadow: 0 4px 20px rgba(61,90,62,0.08);
}
.bk-about__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bk-shadow-hover, 0 20px 60px rgba(61,90,62,0.18));
}
.bk-about__accent-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bk-green-dark, #3D5A3E) 0%, var(--bk-green-light, #7FB069) 100%);
}
.bk-about__card--wide {
    grid-column: 1 / -1;
}
.bk-about__icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.bk-about__card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bk-text-dark, #2A332B);
    margin-bottom: 12px;
}
.bk-about__card p {
    font-size: 0.95rem;
    color: var(--bk-text-mid, #4A5A4C);
    line-height: 1.65;
    margin: 0;
}
.bk-about__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.bk-about__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bk-about__stat-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bk-green-dark, #3D5A3E);
    line-height: 1;
}
.bk-about__stat-label {
    font-size: 0.82rem;
    color: var(--bk-text-mid, #4A5A4C);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media (max-width: 900px) {
    .bk-about__grid { grid-template-columns: 1fr 1fr; }
    .bk-about__card--wide { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .bk-about { padding: 56px 16px; }
    .bk-about__grid { grid-template-columns: 1fr; }
    .bk-about__stats { gap: 24px; }
}

/* ════════════════════════════════════════════════════════════
   BK-CTA-BOTTOM — Dark green closing CTA
   ════════════════════════════════════════════════════════════ */
.bk-cta-bottom {
    background: linear-gradient(135deg, var(--bk-green-dark, #3D5A3E) 0%, #2a3e2b 100%);
    padding: 96px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bk-cta-bottom__paw {
    position: absolute;
    top: -24px;
    right: 60px;
    font-size: 8rem;
    opacity: 0.07;
    pointer-events: none;
    line-height: 1;
}
.bk-cta-bottom__inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.bk-cta-bottom__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.bk-cta-bottom__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin-bottom: 40px;
}
.bk-cta-bottom__btn {
    display: inline-block;
    background: var(--bk-gold, #C8922A);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 18px 44px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform var(--bk-transition, 0.38s ease), box-shadow var(--bk-transition, 0.38s ease), background var(--bk-transition, 0.38s ease);
    box-shadow: 0 8px 32px rgba(200,146,42,0.35);
    letter-spacing: 0.02em;
}
.bk-cta-bottom__btn:hover {
    background: #b07a1e;
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(200,146,42,0.5);
}
.bk-cta-bottom__note {
    margin-top: 20px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.03em;
}
@media (max-width: 600px) {
    .bk-cta-bottom { padding: 64px 20px; }
    .bk-cta-bottom__paw { display: none; }
}
