.hero-v26-desc {
    max-width: 28rem;
}

@keyframes heroTitlePulse {
    0%, 100% { letter-spacing: -0.04em; }
    50% { letter-spacing: 0.01em; }
}

.hero-display-title {
    animation: heroTitlePulse 6s ease-in-out infinite;
}

/* -- 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);
}
/* v19 — Minimal Wizard: scale-in steps, bar fill, dot transitions */

.compact-pips-flow__pane {
    animation: compact-pips-flow-pane-scale-kf 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes compact-pips-flow-pane-scale-kf {
    from { opacity: 0; transform: scale(0.95) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Dot pill transition */
.compact-pips-flow__pip {
    transition:
        width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        background-color 0.3s ease;
    height: 0.5rem;
    border-radius: 9999px;
}

.compact-pips-flow__pip--todo {
    width: 0.5rem;
}

.compact-pips-flow__pip--done {
    width: 0.5rem;
    background-color: var(--color-primary-500, #6366f1);
}

.compact-pips-flow__pip--active {
    width: 1.5rem;
    background-color: var(--color-primary-500, #6366f1);
}

/* Progress bar */
.compact-pips-flow__meter {
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Back button: flex centering */
.compact-pips-flow__retreat {
    display: none;
    align-items: center;
    justify-content: center;
}
.compact-pips-flow__retreat:not([hidden]) {
    display: flex;
}

/* Responsive: tighten padding on small screens */
@media (max-width: 480px) {
    .compact-pips-flow form {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 1.5rem;
    }
}

.contact-us-flex__min {
    min-width: 0;
}

.contact-us-media__cover {
    object-fit: cover;
}

/* contact-editorial — dt label width responsive (TW md:w-40 has no BS flex util) */
@media (min-width: 768px) {
    .contact-editorial__dt {
        width: 10rem;
        flex-shrink: 0;
    }
}

/* contact-editorial — decorative background symbol (inherited text color + opacity) */
.contact-editorial__decor::before {
    content: '@';
    font-size: 40vw;
    font-weight: 900;
    opacity: 0.04;
    position: absolute;
    top: -10%;
    right: -5%;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

