/* Why Choose showcase — scoped to #why-choose.why-choose-showcase only */

#why-choose.why-choose-showcase {
    --wc-green: #25d366;
    --wc-green-dark: #128c55;
    --wc-green-soft: #ecfdf5;
    --wc-mint: #d1fae5;
    --wc-mint-bg: #eefbf3;
    --wc-border: rgba(37, 211, 102, 0.22);
    --wc-border-light: rgba(37, 211, 102, 0.14);
    --wc-border-strong: rgba(18, 140, 85, 0.72);
    --wc-text: #071c15;
    --wc-muted: #60736a;
    --wc-ease: cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow-x: visible;
    overflow-y: visible;
    background: #ffffff;
    padding: 3.25rem 0 3.75rem;
}

#why-choose .why-choose-showcase__inner {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 1rem;
    overflow: visible;
}

@media (min-width: 640px) {
    #why-choose .why-choose-showcase__inner {
        padding-inline: 1.5rem;
    }
}

@media (min-width: 1024px) {
    #why-choose.why-choose-showcase {
        padding: 3.75rem 0 4.25rem;
    }

    #why-choose .why-choose-showcase__inner {
        padding-inline: 2rem;
    }
}

/* ——— Header ——— */
#why-choose .why-choose-showcase__header {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.25rem;
}

#why-choose .why-choose-showcase__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--wc-border);
    background: var(--wc-green-soft);
    color: var(--wc-green-dark);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

#why-choose .why-choose-showcase__badge-sparkle {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--wc-green);
    flex-shrink: 0;
}

#why-choose .why-choose-showcase__heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--wc-text);
    margin: 0 0 0.75rem;
}

#why-choose .why-choose-showcase__heading-accent {
    background: linear-gradient(135deg, #128c55 0%, #17b26a 35%, #25d366 70%, #17b26a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#why-choose .why-choose-showcase__desc {
    margin: 0 auto;
    max-width: 34rem;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.65;
    color: var(--wc-muted);
}

#why-choose .why-choose-showcase__desc-accent {
    color: var(--wc-green-dark);
    font-weight: 600;
}

/* ——— Stage & grid ——— */
#why-choose .why-choose-showcase__stage {
    position: relative;
    overflow: visible;
    isolation: isolate;
}

#why-choose .why-choose-showcase__grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    #why-choose .why-choose-showcase__grid {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        column-gap: clamp(1.25rem, 3vw, 2.75rem);
        row-gap: 0;
        align-items: stretch;
    }

    #why-choose .why-choose-showcase__benefits {
        justify-self: end;
        width: 100%;
        max-width: 21.5rem;
    }

    #why-choose .why-choose-showcase__hub-col {
        justify-self: center;
        align-self: center;
        padding-inline: clamp(0.35rem, 1vw, 0.75rem);
    }

    #why-choose .why-choose-showcase__panel {
        justify-self: start;
        width: 100%;
        max-width: 22.5rem;
    }
}

@media (max-width: 767.98px) {
    #why-choose .why-choose-showcase__hub-col {
        order: 1;
        display: flex;
        justify-content: center;
    }

    #why-choose .why-choose-showcase__benefits {
        order: 2;
    }

    #why-choose .why-choose-showcase__panel {
        order: 3;
    }
}

/* ——— Connectors ——— */
#why-choose .why-choose-showcase__connectors {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: visible;
    shape-rendering: geometricPrecision;
}

@media (min-width: 768px) {
    #why-choose .why-choose-showcase__connectors {
        display: block;
    }
}

#why-choose .why-choose-showcase__conn-path {
    fill: none;
    stroke: rgba(18, 140, 85, 0.82);
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

#why-choose .why-choose-showcase__conn-node {
    fill: #fff;
    stroke: rgba(18, 140, 85, 0.88);
    stroke-width: 1.25;
    opacity: 0;
    transition: opacity 0.45s ease;
    transition-delay: calc(0.9s + var(--wc-conn, 0) * 0.1s);
}

#why-choose.why-choose-showcase.is-visible .why-choose-showcase__conn-node {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    #why-choose .why-choose-showcase__conn-path {
        stroke-dashoffset: 0 !important;
        transition: none !important;
        stroke-dasharray: none !important;
    }

    #why-choose .why-choose-showcase__conn-node {
        opacity: 1;
        transition: none;
    }
}

/* ——— Benefit cards ——— */
#why-choose .why-choose-showcase__benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

@media (min-width: 768px) {
    #why-choose .why-choose-showcase__benefits {
        display: grid;
        grid-template-rows: repeat(6, minmax(3.25rem, 1fr));
        gap: 0.5rem;
        height: 100%;
        align-content: stretch;
    }

    #why-choose .why-choose-showcase__card {
        height: 100%;
        min-height: 3.25rem;
    }
}

#why-choose .why-choose-showcase__card {
    display: grid;
    grid-template-columns: auto 1px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    min-height: 3.25rem;
    padding: 0.65rem 0.85rem;
    border-radius: 0.5rem;
    background: #fff;
    border: 1px solid var(--wc-border-strong);
    box-shadow: 0 2px 10px rgba(15, 40, 30, 0.04);
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

#why-choose .why-choose-showcase__card:hover {
    border-color: rgba(18, 140, 85, 0.88);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.08);
}

#why-choose .why-choose-showcase__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.45rem;
    background: var(--wc-mint-bg);
    color: var(--wc-green-dark);
    flex-shrink: 0;
}

#why-choose .why-choose-showcase__card-icon-svg {
    width: 1.05rem;
    height: 1.05rem;
}

#why-choose .why-choose-showcase__card-icon img {
    width: 1.15rem;
    height: 1.15rem;
    display: block;
}

#why-choose .why-choose-showcase__card-vrule {
    width: 1px;
    align-self: stretch;
    min-height: 1.75rem;
    background: linear-gradient(180deg, transparent, rgba(37, 211, 102, 0.35) 20%, rgba(37, 211, 102, 0.35) 80%, transparent);
}

#why-choose .why-choose-showcase__card-title {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--wc-text);
    letter-spacing: -0.01em;
    min-width: 0;
}

#why-choose .why-choose-showcase__card-check {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--wc-green);
}

#why-choose .why-choose-showcase__card-check-svg {
    width: 1.125rem;
    height: 1.125rem;
    stroke-width: 1.75;
}

@media (min-width: 1024px) {
    #why-choose .why-choose-showcase__card {
        min-height: 3.4rem;
        padding: 0.7rem 0.95rem;
    }

    #why-choose .why-choose-showcase__card-title {
        font-size: 0.84375rem;
    }

    #why-choose .why-choose-showcase__benefits {
        max-width: 22.5rem;
    }

    #why-choose .why-choose-showcase__panel {
        max-width: 24rem;
    }
}

/* ——— WhatsApp hub ——— */
#why-choose .why-choose-showcase__hub-col {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 0.5rem 0;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    #why-choose .why-choose-showcase__hub-col {
        padding-block: 0;
    }

    #why-choose .why-choose-showcase__benefits,
    #why-choose .why-choose-showcase__panel {
        position: relative;
        z-index: 4;
    }

    #why-choose .why-choose-showcase__hub-col {
        position: relative;
        z-index: 4;
    }

    #why-choose .why-choose-showcase__hub-wrap {
        position: relative;
        z-index: 4;
    }
}

#why-choose .why-choose-showcase__hub-wrap {
    position: relative;
    width: 6.25rem;
    height: 6.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    flex-shrink: 0;
}

#why-choose .why-choose-showcase__hub-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

#why-choose .why-choose-showcase__hub-ring--1 {
    inset: -0.35rem;
    border: 1px solid rgba(37, 211, 102, 0.32);
}

#why-choose .why-choose-showcase__hub-ring--2 {
    inset: -0.85rem;
    border: 1px solid rgba(37, 211, 102, 0.2);
    background: radial-gradient(circle, rgba(37, 211, 102, 0.06) 0%, transparent 70%);
}

#why-choose .why-choose-showcase__hub-ring--3 {
    inset: -1.5rem;
    border: 1px solid rgba(37, 211, 102, 0.1);
}

#why-choose .why-choose-showcase__hub {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #128c55 0%, #25d366 100%);
    box-shadow:
        0 0 0 5px rgba(37, 211, 102, 0.1),
        0 8px 24px rgba(37, 211, 102, 0.22),
        0 3px 10px rgba(7, 28, 21, 0.06);
    transform-origin: center center;
}

#why-choose .why-choose-showcase__hub img {
    width: 2.35rem;
    height: 2.35rem;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    #why-choose .why-choose-showcase__hub-wrap {
        width: 5.5rem;
        height: 5.5rem;
    }

    #why-choose .why-choose-showcase__hub {
        width: 3.85rem;
        height: 3.85rem;
    }

    #why-choose .why-choose-showcase__hub img {
        width: 2.15rem;
        height: 2.15rem;
    }
}

#why-choose.why-choose-showcase.is-visible .why-choose-showcase__hub {
    animation: wc-hub-enter 1.1s var(--wc-ease) 0.55s both, wc-hub-pulse 2.4s var(--wc-ease) 1.85s 1;
}

@keyframes wc-hub-enter {
    0% {
        opacity: 0;
        transform: scale(0.88);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes wc-hub-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 5px rgba(37, 211, 102, 0.1),
            0 8px 24px rgba(37, 211, 102, 0.22),
            0 3px 10px rgba(7, 28, 21, 0.06);
    }
    50% {
        box-shadow:
            0 0 0 8px rgba(37, 211, 102, 0.14),
            0 10px 28px rgba(37, 211, 102, 0.28),
            0 3px 10px rgba(7, 28, 21, 0.06);
    }
}

/* ——— Setup panel ——— */
#why-choose .why-choose-showcase__panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 1.25rem 1.15rem 1.1rem;
    border-radius: 0.65rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fdfb 100%);
    border: 1px solid var(--wc-border-strong);
    box-shadow: 0 4px 20px rgba(15, 40, 30, 0.05);
}

@media (min-width: 768px) {
    #why-choose .why-choose-showcase__panel {
        height: 100%;
    }
}

#why-choose .why-choose-showcase__panel-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    flex-shrink: 0;
}

#why-choose .why-choose-showcase__panel-gift {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--wc-mint-bg);
    color: var(--wc-green-dark);
    flex-shrink: 0;
}

#why-choose .why-choose-showcase__panel-gift-svg {
    width: 1.35rem;
    height: 1.35rem;
}

#why-choose .why-choose-showcase__panel-titles {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

#why-choose .why-choose-showcase__panel-line {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--wc-text);
    letter-spacing: -0.02em;
}

#why-choose .why-choose-showcase__panel-line--accent {
    background: linear-gradient(135deg, #128c55 0%, #25d366 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: lowercase;
}

#why-choose .why-choose-showcase__panel-divider {
    height: 1px;
    margin-bottom: 0.65rem;
    flex-shrink: 0;
    background: linear-gradient(90deg, rgba(37, 211, 102, 0.45), rgba(37, 211, 102, 0.12) 70%, transparent);
}

#why-choose .why-choose-showcase__panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
}

#why-choose .why-choose-showcase__panel-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 2.85rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(18, 140, 85, 0.14);
}

#why-choose .why-choose-showcase__panel-item:last-child {
    border-bottom: none;
    padding-bottom: 0.25rem;
}

#why-choose .why-choose-showcase__panel-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--wc-mint-bg);
    color: var(--wc-green-dark);
    flex-shrink: 0;
}

#why-choose .why-choose-showcase__panel-item-icon-svg {
    width: 0.95rem;
    height: 0.95rem;
}

#why-choose .why-choose-showcase__panel-item-text {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #3d5248;
    font-weight: 500;
}

#why-choose .why-choose-showcase__panel-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.85rem;
    padding-top: 0.25rem;
    flex-shrink: 0;
}

#why-choose .why-choose-showcase__panel-sparkle {
    width: 0.65rem;
    height: 0.65rem;
    color: var(--wc-green);
    opacity: 0.75;
    flex-shrink: 0;
}

#why-choose .why-choose-showcase__panel-footer-line {
    flex: 1;
    height: 1px;
    max-width: 4rem;
    background: linear-gradient(90deg, rgba(37, 211, 102, 0.5), transparent);
}

@media (min-width: 1024px) {
    #why-choose .why-choose-showcase__panel {
        padding: 1.35rem 1.25rem 1.15rem;
    }

    #why-choose .why-choose-showcase__panel-item {
        min-height: 3rem;
        padding: 0.6rem 0;
    }

    #why-choose .why-choose-showcase__panel-item-text {
        font-size: 0.84375rem;
    }
}

/* ——— Entrance animations ——— */
html.motion-js:not(.motion-reduced) #why-choose.why-choose-showcase:not(.is-visible) .why-choose-showcase__badge,
html.motion-js:not(.motion-reduced) #why-choose.why-choose-showcase:not(.is-visible) .why-choose-showcase__heading,
html.motion-js:not(.motion-reduced) #why-choose.why-choose-showcase:not(.is-visible) .why-choose-showcase__desc,
html.motion-js:not(.motion-reduced) #why-choose.why-choose-showcase:not(.is-visible) .why-choose-showcase__card,
html.motion-js:not(.motion-reduced) #why-choose.why-choose-showcase:not(.is-visible) .why-choose-showcase__hub-wrap,
html.motion-js:not(.motion-reduced) #why-choose.why-choose-showcase:not(.is-visible) .why-choose-showcase__panel,
html.motion-js:not(.motion-reduced) #why-choose.why-choose-showcase:not(.is-visible) .why-choose-showcase__panel-item {
    opacity: 0;
}

html.motion-js:not(.motion-reduced) #why-choose .why-choose-showcase__badge {
    transition: opacity 0.55s var(--wc-ease), transform 0.55s var(--wc-ease);
    transform: translate3d(0, 8px, 0);
}

html.motion-js:not(.motion-reduced) #why-choose .why-choose-showcase__heading {
    transition: opacity 0.6s var(--wc-ease), transform 0.6s var(--wc-ease);
    transition-delay: 0.1s;
    transform: translate3d(0, 10px, 0);
}

html.motion-js:not(.motion-reduced) #why-choose .why-choose-showcase__desc {
    transition: opacity 0.6s var(--wc-ease), transform 0.6s var(--wc-ease);
    transition-delay: 0.18s;
    transform: translate3d(0, 10px, 0);
}

html.motion-js:not(.motion-reduced) #why-choose .why-choose-showcase__card {
    transition: opacity 0.55s var(--wc-ease), transform 0.55s var(--wc-ease), border-color 0.22s ease, box-shadow 0.22s ease;
    transition-delay: calc(0.28s + var(--wc-card, 0) * 0.09s);
    transform: translate3d(-12px, 0, 0);
}

html.motion-js:not(.motion-reduced) #why-choose .why-choose-showcase__hub-wrap {
    transition: opacity 0.65s var(--wc-ease);
    transition-delay: 0.5s;
}

html.motion-js:not(.motion-reduced) #why-choose .why-choose-showcase__panel {
    transition: opacity 0.65s var(--wc-ease), transform 0.65s var(--wc-ease);
    transition-delay: 0.62s;
    transform: translate3d(14px, 0, 0);
}

html.motion-js:not(.motion-reduced) #why-choose .why-choose-showcase__panel-item {
    transition: opacity 0.5s var(--wc-ease), transform 0.5s var(--wc-ease);
    transition-delay: calc(0.78s + var(--wc-setup, 0) * 0.08s);
    transform: translate3d(0, 8px, 0);
}

html.motion-js:not(.motion-reduced) #why-choose.why-choose-showcase.is-visible .why-choose-showcase__badge,
html.motion-js:not(.motion-reduced) #why-choose.why-choose-showcase.is-visible .why-choose-showcase__heading,
html.motion-js:not(.motion-reduced) #why-choose.why-choose-showcase.is-visible .why-choose-showcase__desc,
html.motion-js:not(.motion-reduced) #why-choose.why-choose-showcase.is-visible .why-choose-showcase__card,
html.motion-js:not(.motion-reduced) #why-choose.why-choose-showcase.is-visible .why-choose-showcase__hub-wrap,
html.motion-js:not(.motion-reduced) #why-choose.why-choose-showcase.is-visible .why-choose-showcase__panel,
html.motion-js:not(.motion-reduced) #why-choose.why-choose-showcase.is-visible .why-choose-showcase__panel-item {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    #why-choose.why-choose-showcase.is-visible .why-choose-showcase__hub {
        animation: none;
    }
}
