/**
 * Final overrides — loads last. Fixes invisible text & layout conflicts with style.css
 */

/* ---- Hero: must always be visible (backwards animation was hiding text) ---- */
.frontend-neon-body .fe-hero__badge,
.frontend-neon-body .fe-hero__title,
.frontend-neon-body .fe-hero__subtitle,
.frontend-neon-body .fe-hero__actions,
.frontend-neon-body .fe-hero__note,
.frontend-neon-body .hero-title,
.frontend-neon-body .hero-subtitle {
    opacity: 1 !important;
    animation: none !important;
}

.frontend-neon-body .fe-hero__title {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.15em !important;
    color: #f1f5f9 !important;
    -webkit-text-fill-color: unset !important;
    background: none !important;
}

.frontend-neon-body .fe-hero__line--static {
    display: block !important;
    width: 100%;
    color: #f1f5f9 !important;
    -webkit-text-fill-color: #f1f5f9 !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    font-size: inherit;
}

.frontend-neon-body .fe-hero__line--rotate {
    display: block !important;
    min-height: 1.15em;
}

.frontend-neon-body #fe-hero-rotate,
.frontend-neon-body .fe-hero__rotate {
    color: #22d3ee !important;
    -webkit-text-fill-color: #22d3ee !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    font-weight: 800;
    display: inline-block;
    min-width: 12ch;
}

.frontend-neon-body .fe-hero__rotate.is-out {
    opacity: 0;
}

.frontend-neon-body .fe-hero__rotate.is-in {
    opacity: 1;
}

/* ---- Pricing cards: every text element readable ---- */
.frontend-neon-body .pricing-card,
.frontend-neon-body .pricing-card * {
    -webkit-text-fill-color: unset;
}

.frontend-neon-body .pricing-card,
.frontend-neon-body .pricing-card.featured {
    background: rgba(15, 23, 42, 0.92) !important;
    border: 1px solid rgba(148, 163, 184, 0.2) !important;
    color: #f1f5f9 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.frontend-neon-body .pricing-card:hover,
.frontend-neon-body .pricing-card.featured:hover {
    background: rgba(20, 28, 48, 0.95) !important;
}

.frontend-neon-body .pricing-header {
    background: transparent !important;
    border-bottom-color: rgba(148, 163, 184, 0.15) !important;
}

.frontend-neon-body .pricing-header h3 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: transparent !important;
}

.frontend-neon-body .pricing-price .currency {
    color: #e2e8f0 !important;
    -webkit-text-fill-color: #e2e8f0 !important;
}

.frontend-neon-body .pricing-price .amount {
    color: #22d3ee !important;
    -webkit-text-fill-color: #22d3ee !important;
    background: none !important;
    -webkit-background-clip: border-box !important;
    font-size: 2.5rem;
}

.frontend-neon-body .pricing-price .period {
    color: #94a3b8 !important;
    -webkit-text-fill-color: #94a3b8 !important;
}

.frontend-neon-body .pricing-features li {
    color: #e2e8f0 !important;
    -webkit-text-fill-color: #e2e8f0 !important;
    border-bottom-color: rgba(148, 163, 184, 0.15) !important;
}

.frontend-neon-body .pricing-features li::before {
    color: #34d399 !important;
    -webkit-text-fill-color: #34d399 !important;
}

.frontend-neon-body .pricing-card .btn {
    color: #fff !important;
}

.frontend-neon-body .pricing-card .btn-outline {
    color: #22d3ee !important;
    -webkit-text-fill-color: #22d3ee !important;
    border: 1px solid #22d3ee !important;
    background: transparent !important;
}

.frontend-neon-body .pricing-card .badge {
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
}

/* ---- Scroll reveal: never hide content on load ---- */
.frontend-neon-body .fe-reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* ---- Stats row always visible ---- */
.frontend-neon-body .fe-stats,
.frontend-neon-body .fe-stat {
    opacity: 1 !important;
}

.frontend-neon-body .fe-stat strong {
    color: #22d3ee !important;
    -webkit-text-fill-color: #22d3ee !important;
    background: none !important;
}

.frontend-neon-body .fe-stat span {
    color: #94a3b8 !important;
}

/* ---- Floating contact buttons — brand colors, size, animations ---- */
@keyframes fe-chat-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes fe-chat-ring-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
}

@keyframes fe-chat-ring-tg {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 158, 217, 0.7);
    }
    100% {
        box-shadow: 0 0 0 16px rgba(34, 158, 217, 0);
    }
}

.frontend-neon-body .fe-float-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    min-width: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    overflow: visible !important;
    padding: 0;
}

.frontend-neon-body .fe-float-widget__social {
    display: none !important;
}

.frontend-neon-body a.fe-float-widget__btn {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px;
    min-height: 52px;
    border-radius: 50% !important;
    text-decoration: none !important;
    flex-shrink: 0;
    padding: 0 !important;
    line-height: 0;
    border: none !important;
    -webkit-text-fill-color: #ffffff !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
    animation: fe-chat-bounce 2.5s ease-in-out infinite !important;
    overflow: visible;
}

.frontend-neon-body a.fe-float-widget__btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
}

.frontend-neon-body a.fe-float-widget__btn svg {
    display: block !important;
    width: 26px !important;
    height: 26px !important;
    fill: #ffffff !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    position: relative;
    z-index: 1;
}

.frontend-neon-body a.fe-float-widget__btn--wa {
    background-color: #25d366 !important;
    background: #25d366 !important;
    color: #ffffff !important;
}

.frontend-neon-body a.fe-float-widget__btn--wa::after {
    animation: fe-chat-ring-wa 2s ease-out infinite !important;
}

.frontend-neon-body a.fe-float-widget__btn--tg {
    background-color: #229ed9 !important;
    background: #229ed9 !important;
    color: #ffffff !important;
    animation-delay: 0.35s !important;
}

.frontend-neon-body a.fe-float-widget__btn--tg::after {
    animation: fe-chat-ring-tg 2s ease-out infinite !important;
    animation-delay: 0.5s !important;
}

.frontend-neon-body a.fe-float-widget__btn:hover {
    transform: translateY(-4px) scale(1.1) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.frontend-neon-body a.fe-float-widget__btn--wa:hover {
    background-color: #20bd5a !important;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55) !important;
}

.frontend-neon-body a.fe-float-widget__btn--tg:hover {
    background-color: #1d8fc4 !important;
    box-shadow: 0 8px 28px rgba(34, 158, 217, 0.55) !important;
}

@media (prefers-reduced-motion: reduce) {
    .frontend-neon-body a.fe-float-widget__btn,
    .frontend-neon-body a.fe-float-widget__btn::after {
        animation: none !important;
    }
}

.frontend-neon-body .fe-float-widget__clients {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 999px;
    font-size: 0.78rem;
    color: #f1f5f9 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
}

.frontend-neon-body .fe-float-widget__count {
    color: #22d3ee !important;
    -webkit-text-fill-color: #22d3ee !important;
    background: none !important;
    font-weight: 700;
}

.frontend-neon-body .fe-float-widget__label {
    color: #cbd5e1 !important;
    -webkit-text-fill-color: #cbd5e1 !important;
}

.frontend-neon-body .fe-float-widget__clients i {
    color: #22d3ee;
}

/* Feature / section cards text */
.frontend-neon-body .feature-card h3,
.frontend-neon-body .step-card h3,
.frontend-neon-body .section-title {
    color: #f1f5f9 !important;
    -webkit-text-fill-color: #f1f5f9 !important;
}

.frontend-neon-body .feature-card p,
.frontend-neon-body .step-card p {
    color: #94a3b8 !important;
    -webkit-text-fill-color: #94a3b8 !important;
}

/* Kill legacy hero animation that can leave text at opacity 0 */
.frontend-neon-body .hero-title {
    animation: none !important;
}

.frontend-neon-body .fe-hero__visual {
    opacity: 1 !important;
    animation: none !important;
}

@media (max-width: 576px) {
    .frontend-neon-body .fe-float-widget__label {
        display: none;
    }
}

@media (max-width: 992px) {
    .frontend-neon-body .fe-hero__title {
        align-items: center !important;
        text-align: center !important;
    }
}

/* =============================================================================
   Try Our Demo section — full dark neon restyle (section#demo beats style.css)
   ============================================================================= */
section#demo.fe-demo,
.frontend-neon-body section#demo.demo,
.frontend-neon-body .demo {
    padding: 5rem 0 !important;
    background: #06080f !important;
    background-color: #06080f !important;
    overflow: visible !important;
}

section#demo.fe-demo::before,
.frontend-neon-body section#demo.demo::before,
.frontend-neon-body .demo::before {
    display: none !important;
    content: none !important;
    height: 0 !important;
    background: none !important;
}

.frontend-neon-body .demo .section-subtitle {
    color: #94a3b8 !important;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.frontend-neon-body .demo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

section#demo.fe-demo .demo-card,
.frontend-neon-body section#demo .demo-card,
.frontend-neon-body .demo-card {
    background: #0f172a !important;
    background-color: #0f172a !important;
    border: 1px solid rgba(148, 163, 184, 0.22) !important;
    border-radius: 16px !important;
    padding: 1.75rem !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35) !important;
    overflow: visible !important;
    color: #f1f5f9 !important;
}

section#demo.fe-demo .demo-card::before,
.frontend-neon-body .demo-card::before {
    display: none !important;
    content: none !important;
}

section#demo.fe-demo .demo-card:hover,
.frontend-neon-body .demo-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(34, 211, 238, 0.45) !important;
    box-shadow: 0 12px 40px rgba(34, 211, 238, 0.12) !important;
    background: rgba(18, 28, 48, 0.95) !important;
}

section#demo.fe-demo .demo-card-header,
.frontend-neon-body .demo-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2) !important;
    background: transparent !important;
}

.frontend-neon-body .demo-card h3 {
    color: #f1f5f9 !important;
    -webkit-text-fill-color: #f1f5f9 !important;
    font-size: 1.25rem;
    margin: 0;
}

.frontend-neon-body .demo-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0891b2, #22d3ee) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(34, 211, 238, 0.3);
}

.frontend-neon-body .demo-icon.reseller {
    background: linear-gradient(135deg, #7c3aed, #a78bfa) !important;
    box-shadow: 0 4px 14px rgba(167, 139, 250, 0.3);
}

.frontend-neon-body .demo-icon i {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 1.35rem;
}

.frontend-neon-body .demo-credentials {
    margin-bottom: 1.5rem;
}

.frontend-neon-body .credential-item {
    margin-bottom: 1rem;
}

.frontend-neon-body .credential-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8 !important;
    -webkit-text-fill-color: #94a3b8 !important;
}

.frontend-neon-body .credential-label span {
    color: #94a3b8 !important;
}

.frontend-neon-body .credential-label i {
    color: #22d3ee !important;
    font-size: 1rem;
}

section#demo.fe-demo .credential-value-wrapper,
.frontend-neon-body .credential-value-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #080c18 !important;
    background-color: #080c18 !important;
    border: 1px solid rgba(148, 163, 184, 0.25) !important;
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
}

section#demo.fe-demo .credential-value-wrapper:hover,
.frontend-neon-body .credential-value-wrapper:hover {
    border-color: rgba(34, 211, 238, 0.35) !important;
    background: #0a1020 !important;
    background-color: #0a1020 !important;
}

.frontend-neon-body .credential-value {
    flex: 1;
    color: #e2e8f0 !important;
    -webkit-text-fill-color: #e2e8f0 !important;
    background: transparent !important;
    font-size: 0.82rem;
    word-break: break-all;
}

.frontend-neon-body .copy-btn {
    background: rgba(34, 211, 238, 0.12) !important;
    color: #22d3ee !important;
    border: 1px solid rgba(34, 211, 238, 0.35) !important;
    border-radius: 8px;
    min-width: 36px;
    height: 36px;
    padding: 0;
}

.frontend-neon-body .copy-btn:hover {
    background: rgba(34, 211, 238, 0.22) !important;
    transform: scale(1.05);
}

.frontend-neon-body .copy-btn i {
    color: #22d3ee !important;
}

.frontend-neon-body .copy-btn.copied {
    background: rgba(52, 211, 153, 0.2) !important;
    border-color: rgba(52, 211, 153, 0.4) !important;
    color: #34d399 !important;
}

.frontend-neon-body .btn-demo-access {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem 1.25rem;
    background: linear-gradient(135deg, #0891b2, #22d3ee) !important;
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
    border: none !important;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(34, 211, 238, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.frontend-neon-body .btn-demo-access:hover {
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(34, 211, 238, 0.45);
}

.frontend-neon-body .btn-demo-access i {
    color: #0f172a !important;
}

.frontend-neon-body .demo-note {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: rgba(251, 191, 36, 0.08) !important;
    border: 1px solid rgba(251, 191, 36, 0.25) !important;
    border-left: 4px solid #fbbf24 !important;
    border-radius: 10px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.frontend-neon-body .demo-note i {
    color: #fbbf24 !important;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.frontend-neon-body .demo-note p {
    margin: 0;
    color: #fde68a !important;
    -webkit-text-fill-color: #fde68a !important;
    font-size: 0.9rem;
    line-height: 1.55;
}

.frontend-neon-body .demo-note strong {
    color: #fcd34d !important;
    -webkit-text-fill-color: #fcd34d !important;
}

@media (max-width: 768px) {
    .frontend-neon-body .demo {
        padding: 3rem 0 !important;
    }

    .frontend-neon-body .demo-card {
        padding: 1.25rem !important;
    }

    .frontend-neon-body .demo-card-header {
        flex-direction: row;
        text-align: left;
    }

    .frontend-neon-body .fe-float-widget {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }

    .frontend-neon-body a.fe-float-widget__btn {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px;
        min-height: 48px;
    }

    .frontend-neon-body a.fe-float-widget__btn svg {
        width: 24px !important;
        height: 24px !important;
    }
}

/* =============================================================================
   Contact Us page — dark neon (replaces inline white card styles)
   ============================================================================= */
/* Breadcrumbs on all store pages */
.frontend-neon-body nav[aria-label="breadcrumb"] {
    max-width: 1140px;
    margin: 0 auto;
    padding: 1.25rem 1rem 0;
}

.frontend-neon-body nav[aria-label="breadcrumb"] .breadcrumb-item a {
    color: #22d3ee !important;
    -webkit-text-fill-color: #22d3ee !important;
    text-decoration: none;
}

.frontend-neon-body nav[aria-label="breadcrumb"] .breadcrumb-item a:hover {
    color: #67e8f9 !important;
}

.frontend-neon-body nav[aria-label="breadcrumb"] .breadcrumb-item.active {
    color: #94a3b8 !important;
    -webkit-text-fill-color: #94a3b8 !important;
}

.frontend-neon-body .fe-contact-page .breadcrumb {
    margin-bottom: 0;
}

.frontend-neon-body .fe-contact-card,
.frontend-neon-body .contact-card {
    background: rgba(15, 23, 42, 0.92) !important;
    background-color: rgba(15, 23, 42, 0.92) !important;
    border: 1px solid rgba(148, 163, 184, 0.22) !important;
    border-radius: 16px !important;
    padding: 2.5rem !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35) !important;
    color: #f1f5f9 !important;
}

.frontend-neon-body .contact-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #f1f5f9 !important;
    -webkit-text-fill-color: #f1f5f9 !important;
    margin-bottom: 0.5rem;
}

.frontend-neon-body .contact-subtitle {
    color: #94a3b8 !important;
    -webkit-text-fill-color: #94a3b8 !important;
    font-size: 1.05rem;
}

.frontend-neon-body .contact-form .form-label {
    font-weight: 500;
    color: #cbd5e1 !important;
    -webkit-text-fill-color: #cbd5e1 !important;
    margin-bottom: 0.5rem;
}

.frontend-neon-body .contact-form .form-control {
    background: rgba(8, 12, 24, 0.9) !important;
    background-color: rgba(8, 12, 24, 0.9) !important;
    border: 1px solid rgba(148, 163, 184, 0.25) !important;
    border-radius: 10px !important;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #f1f5f9 !important;
    -webkit-text-fill-color: #f1f5f9 !important;
}

.frontend-neon-body .contact-form .form-control::placeholder {
    color: #64748b !important;
    opacity: 1;
}

.frontend-neon-body .contact-form .form-control:focus {
    border-color: #22d3ee !important;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15) !important;
    background: rgba(10, 16, 30, 0.95) !important;
    color: #f1f5f9 !important;
}

.frontend-neon-body .contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.frontend-neon-body .contact-form .btn-primary {
    background: linear-gradient(135deg, #0891b2, #22d3ee) !important;
    border: none !important;
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
    font-weight: 600;
}

.frontend-neon-body .contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #0e7490, #06b6d4) !important;
    color: #0f172a !important;
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.35);
}

.frontend-neon-body .contact-info {
    border-top: 1px solid rgba(148, 163, 184, 0.2) !important;
    padding-top: 2rem;
}

.frontend-neon-body .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.frontend-neon-body .info-item i {
    font-size: 1.5rem;
    color: #22d3ee !important;
    margin-top: 0.25rem;
}

.frontend-neon-body .info-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9 !important;
    -webkit-text-fill-color: #f1f5f9 !important;
    margin-bottom: 0.25rem;
}

.frontend-neon-body .info-item p {
    color: #94a3b8 !important;
    -webkit-text-fill-color: #94a3b8 !important;
    margin: 0;
}

.frontend-neon-body .info-item a {
    color: #22d3ee !important;
    -webkit-text-fill-color: #22d3ee !important;
    text-decoration: none;
}

.frontend-neon-body .info-item a:hover {
    color: #67e8f9 !important;
    text-decoration: underline;
}

.frontend-neon-body .contact-form .text-danger {
    color: #f87171 !important;
}

@media (max-width: 768px) {
    .frontend-neon-body .fe-contact-card,
    .frontend-neon-body .contact-card {
        padding: 1.75rem 1.25rem !important;
    }

    .frontend-neon-body .contact-title {
        font-size: 1.85rem;
    }
}

/* Subdomain field (free-trial + checkout) */
.frontend-neon-body .subdomain-compose-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #94a3b8 !important;
}

.frontend-neon-body .subdomain-compose-row {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
    overflow: visible;
    transition: border-color 0.2s, box-shadow 0.2s;
    border: 2px solid rgba(148, 163, 184, 0.28) !important;
    background: rgba(8, 12, 24, 0.95) !important;
}

.frontend-neon-body .subdomain-compose-field {
    flex: 1 1 55%;
    min-width: 7rem;
    display: flex;
}

.frontend-neon-body .subdomain-compose-input {
    width: 100% !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-height: 48px !important;
    padding: 0.75rem 1rem !important;
    font-size: 1.05rem !important;
    background: transparent !important;
    color: #f1f5f9 !important;
    -webkit-text-fill-color: #f1f5f9 !important;
}

.frontend-neon-body .subdomain-compose-suffix {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background: rgba(34, 211, 238, 0.12) !important;
    border-left: 1px solid rgba(148, 163, 184, 0.25) !important;
    white-space: nowrap;
}

.frontend-neon-body .subdomain-compose-dot {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin-right: 2px;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
    color: #94a3b8 !important;
    background: transparent !important;
    border: none !important;
}

.frontend-neon-body .subdomain-compose-base {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-width: 7.5rem !important;
    max-width: 10rem !important;
    flex: 0 0 auto;
    font-weight: 600;
    padding: 0 1.1rem 0 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.2;
    cursor: pointer;
    background-color: transparent !important;
    color: #22d3ee !important;
    -webkit-text-fill-color: #22d3ee !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2322d3ee' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0 center !important;
    background-size: 12px 8px !important;
}

.frontend-neon-body .subdomain-compose-base-static {
    display: inline-flex;
    align-items: center;
    padding: 0 !important;
    font-weight: 600;
    font-size: 1rem !important;
    white-space: nowrap;
    background: transparent !important;
    color: #22d3ee !important;
    -webkit-text-fill-color: #22d3ee !important;
    border: none !important;
}

.frontend-neon-body .subdomain-compose-preview {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    color: #94a3b8 !important;
}

.frontend-neon-body .subdomain-compose-preview::before {
    content: 'Preview: ';
    font-weight: 600;
    color: #64748b !important;
}

.frontend-neon-body .subdomain-compose-row:focus-within {
    border-color: #22d3ee !important;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.frontend-neon-body .subdomain-compose-status {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.frontend-neon-body .fe-free-trial .trial-input-panel .subdomain-compose-label {
    text-transform: none;
    font-size: 0.875rem;
    letter-spacing: 0;
}

.frontend-neon-body .fe-free-trial .trial-input-panel .subdomain-compose-row {
    background: rgba(8, 12, 24, 0.9) !important;
}

/* Modal — already used trial */
.frontend-neon-body .modal-content {
    background: rgba(15, 23, 42, 0.98) !important;
    border: 1px solid rgba(148, 163, 184, 0.25) !important;
    color: #f1f5f9 !important;
}

.frontend-neon-body .modal-header,
.frontend-neon-body .modal-footer {
    border-color: rgba(148, 163, 184, 0.15) !important;
}

.frontend-neon-body .modal-title {
    color: #f1f5f9 !important;
}

.frontend-neon-body .modal-body {
    color: #94a3b8 !important;
}

.frontend-neon-body .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Store product cards — badge, buttons, layout */
.frontend-neon-body .product-card {
    overflow: visible;
}

.frontend-neon-body .product-header {
    padding-top: 0.65rem !important;
    padding-right: 9.25rem !important;
    margin-bottom: 1.25rem !important;
}

.frontend-neon-body .product-badge {
    top: 12px !important;
    right: 12px !important;
    padding: 0.28rem 0.65rem !important;
    font-size: 0.65rem !important;
    line-height: 1.25 !important;
    letter-spacing: 0.04em !important;
    border-radius: 6px !important;
    max-width: none;
    text-align: center;
    white-space: nowrap;
    z-index: 2;
}

.frontend-neon-body a.btn-product,
.frontend-neon-body .btn-product {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: linear-gradient(135deg, #0891b2 0%, #2563eb 100%) !important;
    border: none !important;
    text-decoration: none !important;
    margin-top: auto;
    cursor: pointer !important;
    position: relative;
    z-index: 2;
}

/* Shine layer on store cards must not steal hover / cursor from the CTA */
.frontend-neon-body .product-card::before {
    pointer-events: none !important;
}

.frontend-neon-body a.btn-product span,
.frontend-neon-body .btn-product span,
.frontend-neon-body a.btn-product i,
.frontend-neon-body .btn-product i {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.frontend-neon-body a.btn-product-selfhosted,
.frontend-neon-body .btn-product-selfhosted {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%) !important;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.35) !important;
    position: relative;
    z-index: 2;
}

.frontend-neon-body a.btn-product:hover,
.frontend-neon-body .btn-product:hover {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    filter: brightness(1.08);
}

/* Form selects — visible text & options (checkout, free-trial) */
.frontend-neon-body .form-select:not(.subdomain-compose-base) {
    color: #f1f5f9 !important;
    -webkit-text-fill-color: #f1f5f9 !important;
    background-color: #0f172a !important;
    border-color: rgba(148, 163, 184, 0.35) !important;
    min-height: 46px;
    font-size: 0.95rem !important;
    padding: 0.5rem 2.25rem 0.5rem 0.75rem !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.65rem center !important;
    background-size: 14px 10px !important;
}

.frontend-neon-body .form-select option,
.frontend-neon-body select.subdomain-compose-base option {
    background: #0f172a !important;
    color: #f1f5f9 !important;
}

.frontend-neon-body .subdomain-compose-base-static {
    min-height: 46px;
    padding: 0 1rem !important;
    font-size: 0.95rem !important;
}

.fe-trial-page .subdomain-compose-base {
    min-width: 9rem !important;
    max-width: 14rem !important;
}

/* Store hash scroll offset (fixed nav) */
html {
    scroll-behavior: smooth;
}

#managed-packages,
#self-hosted-packages {
    scroll-margin-top: 100px;
}

.store-product-card {
    scroll-margin-top: 100px;
}
