:root {
    --kg-green: #6aa84f;
    --kg-green-dark: #5e9645;
    --kg-green-soft: #f3f8f1;
    --kg-brown: #7A5648;
    --kg-brown-dark: #65463a;
    --kg-cream: #fdfaf5;
    --kg-cream-2: #f8f3ea;
    --kg-dark: #141816;
    --kg-text: #232821;
    --kg-muted: #667063;
    --kg-border: #e8ece6;
    --kg-white: #ffffff;
    --kg-shadow: 0 24px 70px rgba(20, 32, 22, .10);
    --kg-radius-xl: 34px;
    --kg-radius-lg: 24px;
    --kg-radius-md: 18px;
}

.kg-faq-page,
.kg-faq-page * {
    box-sizing: border-box
}

.kg-faq-page {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 4%, rgba(106, 168, 79, .10), transparent 32%), radial-gradient(circle at 92% 2%, rgba(122, 86, 72, .10), transparent 34%), linear-gradient(180deg, var(--kg-cream) 0%, #fff 45%, var(--kg-cream) 100%);
    color: var(--kg-text)
}

.kg-faq-container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px
}

.kg-faq-breadcrumb {
    padding: 22px 0 0;
    font-size: 14px;
    color: var(--kg-muted)
}

.kg-faq-breadcrumb a {
    color: var(--kg-brown);
    text-decoration: none
}

.kg-faq-breadcrumb a:hover {
    color: var(--kg-green)
}

.kg-faq-hero,
.kg-contact-hero,
.kg-delivery-hero {
    position: relative;
    padding: 42px 0 56px
}

.kg-faq-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
    gap: 28px;
    align-items: stretch
}

.kg-faq-hero__content {
    position: relative;
    min-height: 500px;
    padding: 54px;
    border-radius: var(--kg-radius-xl);
    overflow: hidden;
    background: radial-gradient(circle at 15% 10%, rgba(106, 168, 79, .18), transparent 30%), radial-gradient(circle at 84% 0%, rgba(122, 86, 72, .14), transparent 34%), linear-gradient(135deg, #fff 0%, #fbf6ed 100%);
    border: 1px solid rgba(232, 236, 230, .95);
    box-shadow: var(--kg-shadow)
}

.kg-faq-hero__content:before {
    content: "";
    position: absolute;
    inset: auto -90px -130px auto;
    width: 310px;
    height: 310px;
    border-radius: 999px;
    background: rgba(106, 168, 79, .12);
    filter: blur(14px)
}

.kg-faq-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: var(--kg-green-soft);
    color: var(--kg-green-dark);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase
}

.kg-faq-badge:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--kg-green);
    box-shadow: 0 0 0 6px rgba(106, 168, 79, .13)
}

.kg-faq-hero h1 {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(38px, 5vw, 59px);
    letter-spacing: -.055em;
    line-height: 1;
}

.kg-faq-hero__lead {
    position: relative;
    z-index: 1;
    max-width: 710px;
    margin: 0 0 30px;
    color: var(--kg-muted);
    font-size: 18px;
    line-height: 1.75
}

.kg-faq-hero__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px
}

.kg-faq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease
}

.kg-faq-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--kg-green), var(--kg-green-dark));
    box-shadow: 0 14px 30px rgba(106, 168, 79, .24)
}

.kg-faq-btn--primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(106, 168, 79, .30)
}

.kg-faq-btn--secondary {
    color: var(--kg-brown-dark);
    background: rgba(255, 255, 255, .72);
    border-color: rgba(122, 86, 72, .18)
}

.kg-faq-btn--secondary:hover {
    color: var(--kg-green-dark);
    border-color: rgba(106, 168, 79, .45);
    transform: translateY(-3px)
}

.kg-faq-hero__chips {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.kg-faq-hero__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(232, 236, 230, .95);
    color: var(--kg-muted);
    font-size: 13px;
    font-weight: 700
}

.kg-faq-hero__panel {
    position: relative;
    min-height: 500px;
    padding: 30px;
    border-radius: var(--kg-radius-xl);
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 20% 5%, rgba(106, 168, 79, .40), transparent 32%), radial-gradient(circle at 95% 10%, rgba(122, 86, 72, .35), transparent 32%), linear-gradient(145deg, #141816 0%, #20281f 58%, #151311 100%);
    box-shadow: 0 30px 80px rgba(20, 32, 22, .22)
}

.kg-faq-hero__panel:after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .10);
    pointer-events: none
}

.kg-faq-panel-card {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px
}

.kg-faq-panel-card__tag {
    display: inline-flex;
    width: fit-content;
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(106, 168, 79, .18);
    color: #dff2d6;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em
}

.kg-faq-panel-card h2 {
    max-width: 380px;
    margin: 18px 0 14px;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.05;
    letter-spacing: -.035em;
    font-weight: 850
}

.kg-faq-panel-card p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.75
}

.kg-faq-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.kg-faq-stat {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(12px)
}

.kg-faq-stat strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 24px;
    line-height: 1
}

.kg-faq-stat span {
    display: block;
    color: rgba(255, 255, 255, .64);
    font-size: 12px;
    line-height: 1.35
}

.kg-faq-tabs-wrap {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 12px 0;
    background: rgba(253, 250, 245, .78);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(232, 236, 230, .75);
    border-bottom: 1px solid rgba(232, 236, 230, .75)
}

.kg-faq-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 0;
}

.kg-faq-tabs::-webkit-scrollbar {
    display: none
}

.kg-faq-tab {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--kg-muted);
    background: #fff;
    border: 1px solid var(--kg-border);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: transform .25s ease, border-color .25s ease, color .25s ease, background .25s ease, box-shadow .25s ease
}

.kg-faq-tab:hover,
.kg-faq-tab.is-active {
    color: #fff;
    background: var(--kg-green);
    border-color: var(--kg-green);
    transform: translateY(-2px);
}

.kg-faq-content {
    padding: 54px 0 72px
}

.kg-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start
}

.kg-faq-group {
    scroll-margin-top: 100px;
    margin-bottom: 30px;
    padding: 28px;
    border-radius: var(--kg-radius-xl);
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--kg-border);
    box-shadow: 0 18px 55px rgba(20, 32, 22, .06)
}

.kg-faq-group__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px
}

.kg-faq-group__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--kg-green-dark);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase
}

.kg-faq-group h2 {
    margin: 0;
    color: var(--kg-text);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.12;
    letter-spacing: -.025em
}

.kg-faq-group__count {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    background: var(--kg-green-soft);
    color: var(--kg-green-dark);
    font-size: 13px;
    font-weight: 850
}

.kg-faq-list {
    display: grid;
    gap: 12px
}

.kg-faq-item {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(232, 236, 230, .95);
    background: #fff;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease
}

.kg-faq-item:hover {
    border-color: rgba(106, 168, 79, .45);
    box-shadow: 0 18px 40px rgba(106, 168, 79, .08);
    transform: translateY(-2px)
}

.kg-faq-item.is-open {
    border-color: rgba(106, 168, 79, .65);
    box-shadow: 0 20px 48px rgba(106, 168, 79, .11)
}

.kg-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    color: var(--kg-text);
    text-align: left;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.35;
    cursor: pointer
}

.kg-faq-question__icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--kg-green-dark);
    background: var(--kg-green-soft);
    transition: transform .25s ease, background .25s ease, color .25s ease
}

.kg-faq-question__icon:before {
    content: "+";
    font-size: 22px;
    line-height: 1
}

.kg-faq-item.is-open .kg-faq-question__icon {
    transform: rotate(45deg);
    color: #fff;
    background: var(--kg-green)
}

.kg-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease
}

.kg-faq-answer__inner {
    padding: 0 22px 22px;
    color: var(--kg-muted);
    font-size: 15px;
    line-height: 1.8
}

.kg-faq-answer__inner p {
    margin: 0
}

.kg-faq-side {
    position: sticky;
    top: 84px;
    display: grid;
    gap: 16px
}

.kg-faq-side-card {
    padding: 24px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--kg-border);
    box-shadow: 0 18px 50px rgba(20, 32, 22, .07)
}

.kg-faq-side-card--dark {
    color: #fff;
    background: radial-gradient(circle at 90% 0%, rgba(106, 168, 79, .35), transparent 34%), linear-gradient(145deg, var(--kg-dark), #20281f);
    border-color: rgba(255, 255, 255, .08)
}

.kg-faq-side-card h3 {
    margin: 0 0 10px;
    color: inherit;
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -.02em
}

.kg-faq-side-card p {
    margin: 0 0 18px;
    color: var(--kg-muted);
    font-size: 14px;
    line-height: 1.7
}

.kg-faq-side-card--dark p {
    color: rgba(255, 255, 255, .72)
}

.kg-faq-side-card__list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none
}

.kg-faq-side-card__list li {
    display: flex;
    gap: 10px;
    color: var(--kg-muted);
    font-size: 14px;
    line-height: 1.45
}

.kg-faq-side-card__list li:before {
    content: "";
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--kg-green)
}

.kg-faq-cta {
    padding: 64px 0 82px
}

.kg-faq-cta__box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 34px;
    border-radius: var(--kg-radius-xl);
    background: radial-gradient(circle at 12% 15%, rgba(106, 168, 79, .16), transparent 32%), linear-gradient(135deg, #fff, #fbf6ed);
    border: 1px solid var(--kg-border);
    box-shadow: var(--kg-shadow)
}

.kg-faq-cta h2 {
    margin: 0 0 10px;
    color: var(--kg-text);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
    letter-spacing: -.035em
}

.kg-faq-cta p {
    margin: 0;
    color: var(--kg-muted);
    font-size: 16px;
    line-height: 1.7
}

.kg-faq-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end
}

@media(max-width:1100px) {

    .kg-faq-hero__grid,
    .kg-faq-layout {
        grid-template-columns: 1fr
    }

    .kg-faq-hero__content,
    .kg-faq-hero__panel {
        min-height: auto
    }

    .kg-faq-side {
        position: static;
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:767px) {
    .kg-faq-container {
        padding-left: 16px;
        padding-right: 16px
    }

    .kg-faq-hero,
    .kg-contact-hero,
    .kg-delivery-hero {
        padding: 28px 0 38px
    }

    .kg-faq-hero__content {
        padding: 30px 20px;
        border-radius: 26px
    }

    .kg-faq-hero__panel {
        padding: 22px;
        border-radius: 26px
    }

    .kg-faq-hero h1 {
        font-size: 38px
    }

    .kg-faq-hero__lead {
        font-size: 15px;
        line-height: 1.65
    }

    .kg-faq-hero__actions {
        display: grid
    }

    .kg-faq-btn {
        width: 100%
    }

    .kg-faq-hero__stats {
        grid-template-columns: 1fr
    }

    .kg-faq-content {
        padding: 34px 0 50px
    }

    .kg-faq-group {
        padding: 18px;
        border-radius: 26px
    }

    .kg-faq-group__head {
        align-items: flex-start;
        flex-direction: column
    }

    .kg-faq-question {
        padding: 17px 16px;
        font-size: 15px
    }

    .kg-faq-answer__inner {
        padding: 0 16px 18px;
        font-size: 14px
    }

    .kg-faq-side {
        grid-template-columns: 1fr
    }

    .kg-faq-cta__box {
        grid-template-columns: 1fr;
        padding: 24px;
        border-radius: 26px
    }

    .kg-faq-cta__actions {
        justify-content: stretch
    }
}

@media(prefers-reduced-motion:reduce) {
    .kg-faq-page * {
        transition: none !important;
        scroll-behavior: auto !important
    }
}


/* ==========================================================
   FAQ HERO — exact dark premium style like page-contacts.php / page-delivery.php
   ========================================================== */
.kg-faq-page .kg-contact-hero,
.kg-faq-page .kg-delivery-hero {
    position: relative;
    overflow: hidden;
    padding: 42px 0 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(122, 86, 72, .36), transparent 34%),
        radial-gradient(circle at 88% 8%, rgba(106, 168, 79, .30), transparent 34%),
        linear-gradient(135deg, #211714 0%, #171412 48%, #10170f 100%);
    color: #fff;
    isolation: isolate;
}

.kg-faq-page .kg-contact-hero__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    filter: blur(76px);
    opacity: .34;
    pointer-events: none;
    z-index: -1;
}

.kg-faq-page .kg-contact-hero__glow--brown {
    left: -140px;
    top: -120px;
    background: #7A5648;
}

.kg-faq-page .kg-contact-hero__glow--green {
    right: -130px;
    top: 30px;
    background: #6aa84f;
}

.kg-faq-page .kg-contact-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 44px;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
    line-height: 1.4;
}

.kg-faq-page .kg-contact-breadcrumb a {
    color: rgba(255, 255, 255, .68);
    text-decoration: none;
    transition: color .25s ease;
}

.kg-faq-page .kg-contact-breadcrumb a:hover {
    color: #9edb80;
}

.kg-faq-page .kg-contact-breadcrumb span {
    color: rgba(255, 255, 255, .58);
}

.kg-faq-page .kg-contact-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .74fr);
    gap: 70px;
    align-items: center;
    padding-bottom: 96px;
}

.kg-faq-page .kg-contact-hero__content {
    position: relative;
    z-index: 2;
}

.kg-faq-page .kg-contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 0 18px;
    margin: 0 0 28px;
    border-radius: 999px;
    background: rgba(106, 168, 79, .20);
    border: 1px solid rgba(106, 168, 79, .32);
    color: #bdf2a3;
    font-size: 12px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 14px 36px rgba(106, 168, 79, .14);
}

.kg-faq-page .kg-contact-hero__content p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 20px;
    line-height: 1.65;
    font-weight: 400;
}

.kg-faq-page .kg-contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.kg-faq-page .kg-contact-hero .kg-btn,
.kg-faq-page .kg-contact-hero .kg-faq-btn {
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 850;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.kg-faq-page .kg-contact-hero .kg-btn--primary,
.kg-faq-page .kg-contact-hero .kg-faq-btn--primary {
    color: #152014;
    background: linear-gradient(135deg, #a6dd8f, #6aa84f);
    box-shadow: 0 18px 42px rgba(106, 168, 79, .30);
}

.kg-faq-page .kg-contact-hero .kg-btn--primary:hover,
.kg-faq-page .kg-contact-hero .kg-faq-btn--primary:hover {
    color: #152014;
    transform: translateY(-3px);
    box-shadow: 0 24px 56px rgba(106, 168, 79, .38);
}

.kg-faq-page .kg-contact-hero .kg-btn--ghost,
.kg-faq-page .kg-contact-hero .kg-faq-btn--secondary {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.kg-faq-page .kg-contact-hero .kg-btn--ghost:hover,
.kg-faq-page .kg-contact-hero .kg-faq-btn--secondary:hover {
    color: #fff;
    transform: translateY(-3px);
    border-color: rgba(166, 221, 143, .42);
    background: rgba(255, 255, 255, .12);
}

.kg-faq-page .kg-contact-hero__card {
    position: relative;
    z-index: 2;
    min-height: 300px;
    padding: 30px;
    border-radius: 34px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 8% 8%, rgba(106, 168, 79, .24), transparent 33%),
        radial-gradient(circle at 96% 3%, rgba(122, 86, 72, .28), transparent 35%),
        linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055));
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
}

.kg-faq-page .kg-contact-hero__card::before {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 0;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #6aa84f, #d1a277, #7A5648);
}

.kg-faq-page .kg-contact-hero__card::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, .08);
    pointer-events: none;
}

.kg-faq-page .kg-contact-hero__status {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 850;
}

.kg-faq-page .kg-contact-hero__status span {
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #91d873;
    box-shadow: 0 0 0 10px rgba(106, 168, 79, .14);
}

.kg-faq-page .kg-contact-hero__phone,
.kg-faq-page .kg-faq-hero-card__title {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 450px;
    margin: 0 0 18px;
    color: #fff;
    text-decoration: none;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.05;
    letter-spacing: -.04em;
    font-weight: 900;
}

.kg-faq-page .kg-contact-hero__card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 16px;
    line-height: 1.7;
}

.kg-faq-page .kg-faq-hero-card__list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.kg-faq-page .kg-faq-hero-card__list li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 650;
}

.kg-faq-page .kg-faq-hero-card__list li::before {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-radius: 50%;
    background: #6aa84f;
    box-shadow: 0 0 0 7px rgba(106, 168, 79, .12);
}

.kg-faq-page .kg-faq-hero-card__stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.kg-faq-page .kg-faq-hero-card__stat {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
}

.kg-faq-page .kg-faq-hero-card__stat strong {
    display: block;
    margin: 0 0 4px;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
}

.kg-faq-page .kg-faq-hero-card__stat span {
    display: block;
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    line-height: 1.35;
}

/* keep old FAQ hero classes from affecting the new shared hero */
.kg-faq-page .kg-faq-hero__grid,
.kg-faq-page .kg-faq-hero__content,
.kg-faq-page .kg-faq-hero__panel {
    all: unset
}

@media(max-width:1100px) {
    .kg-faq-page .kg-contact-hero__grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 70px
    }

    .kg-faq-page .kg-contact-hero__card {
        max-width: 640px
    }
}

@media(max-width:767px) {

    .kg-faq-page .kg-contact-hero,
    .kg-faq-page .kg-delivery-hero {
        padding: 28px 0 0
    }

    .kg-faq-page .kg-contact-breadcrumb {
        margin-bottom: 30px;
        font-size: 13px
    }

    .kg-faq-page .kg-contact-hero__grid {
        gap: 26px;
        padding-bottom: 44px
    }

    .kg-faq-page .kg-contact-hero__content h1 {
        font-size: 42px;
        letter-spacing: -.045em
    }

    .kg-faq-page .kg-contact-hero__content p {
        font-size: 16px;
        line-height: 1.65
    }

    .kg-faq-page .kg-contact-hero__actions {
        display: grid;
        margin-top: 26px
    }

    .kg-faq-page .kg-contact-hero .kg-btn,
    .kg-faq-page .kg-contact-hero .kg-faq-btn {
        width: 100%;
        min-height: 50px
    }

    .kg-faq-page .kg-contact-hero__card {
        padding: 24px;
        border-radius: 28px;
        min-height: auto
    }

    .kg-faq-page .kg-faq-hero-card__title {
        font-size: 30px
    }

    .kg-faq-page .kg-faq-hero-card__stats {
        grid-template-columns: 1fr
    }
}