/* Benefit cards: cap width (matches Tailwind max-w-64) */
.hero-v6-benefit-item {
    box-sizing: border-box;
    max-width: 16rem;
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 0;
}

/* Icon “badge”: fixed circle — Bootstrap had no w/h so the purple area stretched full width */
.hero-v6-benefit-icon {
    box-sizing: border-box;
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    overflow: hidden;
}

.hero-v6-benefit-icon i {
    line-height: 1;
}

/* Pill shape + shared dimensions (colors stay in Blade / Tailwind / Bootstrap) */
.hero-v6-cta-pill {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 7rem;
    min-height: 2.75rem;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    text-align: center;
}

/* Long secondary label: wrap inside the pill, keep max width */
.hero-v6-cta-secondary {
    max-width: min(100%, 28rem);
}

/* Bootstrap .btn/.btn-sm padding would otherwise shrink the pill */
a.hero-v6-cta-pill.btn.btn-sm {
    padding: 0.5rem 1.5rem;
    min-height: 2.75rem;
    min-width: 7rem;
}

/* -- Button hover states -- */
.hero-btn-primary {
    transition: filter 0.2s ease, transform 0.15s ease;
}
.hero-btn-primary:hover,
.hero-btn-primary:focus {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

.hero-btn-outline-secondary {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.hero-btn-outline-secondary:hover,
.hero-btn-outline-secondary:focus {
    background-color: var(--bs-secondary) !important;
    color: #fff !important;
    border-color: var(--bs-secondary) !important;
    transform: translateY(-1px);
}

.hero-btn-outline-primary-light {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.hero-btn-outline-primary-light:hover,
.hero-btn-outline-primary-light:focus {
    background-color: var(--bs-primary) !important;
    color: #fff !important;
    border-color: var(--bs-primary) !important;
    transform: translateY(-1px);
}
.intro-cta-content {
    max-width: 56rem;
}

/* Block: advantages-stat-dots-pattern */
.advantages-stat-dots-pattern__bg-dots {
    background-image: radial-gradient(
        circle,
        color-mix(in srgb, var(--bs-body-color) 12%, transparent) 1px,
        transparent 1px
    );
    background-size: 28px 28px;
}

.advantages-stat-dots-pattern__card--hover {
    transition: transform 0.2s ease;
}

.advantages-stat-dots-pattern__card--hover:hover {
    transform: scale(1.05);
}

@keyframes advantages-stat-dots-pattern-star-pulse-kf {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}

.advantages-stat-dots-pattern__star--pulse {
    animation: advantages-stat-dots-pattern-star-pulse-kf 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes advantages-stat-dots-pattern-star-bounce-kf {
    0%,
    100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.advantages-stat-dots-pattern__star--bounce {
    animation: advantages-stat-dots-pattern-star-bounce-kf 1s infinite;
}

.perks-split-highlight__key-thumb {
    width: 3rem;
    height: 3rem;
}

@media (min-width: 640px) {
    .perks-split-highlight__entry:hover {
        transform: scale(1.05);
    }

    .perks-split-highlight__entry:hover .perks-split-highlight__icon {
        transform: scale(1.05);
    }
}

.perks-split-highlight__entry {
    transition: transform 0.3s ease;
}

.perks-split-highlight__icon {
    transition: transform 0.3s ease;
}

/* Аватар: однаковий фізичний розмір для TW/BS (у BS немає w-12/h-12) */
.dual-column-rating-quote__media {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    flex-shrink: 0;
}

/* Лише layout / рух; кольори теми — у Blade */
.socialproof-card-hover {
    transition:
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.socialproof__stat-value,
.socialproof__stat-label {
    transition: transform 0.3s ease, color 0.2s ease;
}

@media (hover: hover) {
    .socialproof-card-hover:hover {
        box-shadow: 0 22px 44px -18px rgba(15, 23, 42, 0.2);
    }

    .dark .socialproof-card-hover:hover {
        box-shadow: 0 22px 44px -14px rgba(0, 0, 0, 0.5);
    }

    .socialproof-card-hover:hover .socialproof__stat-value {
        transform: scale(1.08);
    }
}

@media (hover: hover) and (min-width: 640px) {
    .socialproof-card-hover--lift:hover {
        transform: translateY(-4px) scale(1.02);
    }
}

@media (prefers-reduced-motion: reduce) {
    .socialproof-card-hover,
    .socialproof__stat-value,
    .socialproof__stat-label {
        transition: none;
    }

    .socialproof-card-hover:hover,
    .socialproof-card-hover:hover .socialproof__stat-value,
    .socialproof-card-hover--lift:hover {
        transform: none;
    }
}

.socialproof__panel {
    font-family: 'Courier New', Courier, monospace;
    position: relative;
}

.socialproof__panel::before {
    content: '┌───────────────────────────────────────────┐';
    display: block;
    color: rgba(99, 102, 241, 0.5);
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    padding: 0.5rem 1rem 0;
}

.socialproof__panel::after {
    content: '└────────────────────────────────────────────────────┘';
    display: block;
    color: rgba(99, 102, 241, 0.5);
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 1rem 0.5rem;
}

.socialproof__row {
    transition: background-color 0.15s ease;
}

.socialproof__row:hover {
    background-color: rgba(99, 102, 241, 0.06);
}

.socialproof__value {
    color: var(--color-primary-400, #818cf8);
    font-weight: 700;
    font-family: 'Courier New', Courier, monospace;
}

.socialproof__cursor::after {
    content: '▌';
    animation: socialproof__blink 1s step-end infinite;
    color: var(--color-primary-400, #818cf8);
}

@keyframes socialproof__blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* process kanban — geometric decor, icon/body sizing */
.process-kb__geo {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.process-kb__geo::before {
    content: '';
    position: absolute;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    border: 3.5rem solid currentColor;
    opacity: 0.04;
    top: -7rem;
    right: -7rem;
}
.process-kb__geo::after {
    content: '';
    position: absolute;
    width: 10rem;
    height: 10rem;
    border: 2.5rem solid currentColor;
    opacity: 0.04;
    bottom: -3rem;
    left: -3rem;
}
.process-kb__icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}
.process-kb__body {
    min-width: 0;
}


.halo-signup__section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.halo-signup__inner {
    max-width: 64rem;
}

@keyframes halo-signup-spark-beat-track {
    0%, 100% { opacity: 1; }
    50%       { opacity: .5; }
}
.halo-signup__spark--beat {
    animation: halo-signup-spark-beat-track 2s cubic-bezier(.4,0,.6,1) infinite;
}

.halo-signup__jump--rise:hover { transform: scale(1.05); transition: transform .2s ease; }

