/* Handlyd web landing — complements Tailwind v2 */
[x-cloak] {
    display: none !important;
}

:root {
    --handlyd-green: #72e07a;
    --handlyd-green-hover: #5fcf66;
    --handlyd-dark: #0a0a0a;
    --handlyd-muted: #737373;
    --handlyd-surface: #f4f4f5;
    --handlyd-border: #e5e5e5;
}

.handlyd-hero,
.handlyd-landing-body {
    --handlyd-green: #72e07a;
    --handlyd-green-hover: #5fcf66;
    --handlyd-dark: #0a0a0a;
}

.handlyd-nav-logo {
    height: clamp(3.25rem, 11vw, 4.75rem);
    width: auto;
    max-width: min(72vw, 280px);
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}

.handlyd-coverage-wrap {
    margin-top: -2.5rem;
    padding-bottom: 3rem;
}

.handlyd-coverage-strip {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.1rem 1.15rem;
    background: rgba(10, 10, 10, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
    .handlyd-coverage-strip {
        flex-direction: row;
        align-items: center;
        gap: 1.25rem;
    }
}

.handlyd-coverage-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--handlyd-green);
    white-space: nowrap;
}

.handlyd-coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.handlyd-coverage-tag {
    padding: 0.28rem 0.65rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
}

/* Landing sections */
.handlyd-landing-body {
    background: #fff;
    color: var(--handlyd-dark);
}

.handlyd-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
}

.handlyd-container--narrow {
    max-width: 48rem;
}

.handlyd-section {
    padding: 4.5rem 0;
}

.handlyd-section--services {
    padding-top: 5.5rem;
}

.handlyd-section--muted {
    background: var(--handlyd-surface);
}

.handlyd-section-head {
    margin-bottom: 2.5rem;
    text-align: center;
}

.handlyd-kicker {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--handlyd-green);
}

.handlyd-section-title {
    margin: 0.5rem 0 0;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--handlyd-dark);
}

.handlyd-section-sub {
    margin: 0.75rem auto 0;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--handlyd-muted);
}

.handlyd-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .handlyd-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .handlyd-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.handlyd-service-card {
    display: flex;
    flex-direction: column;
    padding: 1.35rem;
    text-decoration: none;
    color: #fff;
    background: var(--handlyd-dark);
    border-radius: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.handlyd-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.handlyd-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--handlyd-green);
    background: rgba(114, 224, 122, 0.15);
    border-radius: 0.75rem;
}

.handlyd-service-title {
    margin: 1rem 0 0;
    font-size: 1rem;
    font-weight: 700;
}

.handlyd-service-ex {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
    flex: 1 1 auto;
}

.handlyd-service-price {
    margin: 1rem 0 0;
    padding-top: 0.75rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--handlyd-green);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.handlyd-service-banner {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.35rem;
    background: var(--handlyd-green);
    border-radius: 1rem;
    color: var(--handlyd-dark);
}

@media (min-width: 768px) {
    .handlyd-service-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.handlyd-service-banner-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
}

.handlyd-service-banner-text {
    margin: 0.35rem 0 0;
    font-size: 0.88rem;
    opacity: 0.85;
}

.handlyd-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .handlyd-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .handlyd-steps-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.handlyd-step-card {
    padding: 1.25rem;
    text-align: center;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.handlyd-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--handlyd-dark);
    background: var(--handlyd-green);
    border-radius: 0.85rem;
}

.handlyd-step-label {
    margin: 0.75rem 0 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--handlyd-muted);
}

.handlyd-step-title {
    margin: 0.35rem 0 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.handlyd-step-text {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--handlyd-muted);
}

.handlyd-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .handlyd-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.handlyd-testimonial-card {
    padding: 1.35rem;
    background: #fff;
    border: 1px solid var(--handlyd-border);
    border-radius: 1rem;
}

.handlyd-stars {
    color: var(--handlyd-green);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.handlyd-testimonial-quote {
    margin: 1rem 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #404040;
}

.handlyd-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid var(--handlyd-border);
}

.handlyd-testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--handlyd-green);
    background: rgba(114, 224, 122, 0.15);
    border-radius: 50%;
}

.handlyd-testimonial-name {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
}

.handlyd-testimonial-meta {
    margin: 0.15rem 0 0;
    font-size: 0.75rem;
    color: var(--handlyd-muted);
}

.handlyd-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .handlyd-why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.handlyd-why-card {
    padding: 1.25rem;
    text-align: center;
    background: #fff;
    border: 1px solid var(--handlyd-border);
    border-radius: 1rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.handlyd-why-card:hover {
    border-color: var(--handlyd-green);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.handlyd-why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--handlyd-green);
    background: rgba(114, 224, 122, 0.12);
    border-radius: 50%;
}

.handlyd-why-title {
    margin: 1rem 0 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.handlyd-why-text {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--handlyd-muted);
}

.handlyd-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.handlyd-faq-item {
    padding: 1.1rem 1.15rem;
    background: #fff;
    border: 1px solid var(--handlyd-border);
    border-radius: 0.85rem;
}

.handlyd-faq-item[open] {
    border-color: var(--handlyd-green);
}

.handlyd-faq-q {
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.handlyd-faq-q::-webkit-details-marker {
    display: none;
}

.handlyd-faq-a {
    margin: 0.65rem 0 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--handlyd-muted);
}

.handlyd-cta-box {
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: #fff;
    background: var(--handlyd-dark);
    border-radius: 1.5rem;
}

@media (min-width: 768px) {
    .handlyd-cta-box {
        padding: 3.5rem 2rem;
    }
}

.handlyd-cta-title {
    margin: 0;
    font-size: clamp(1.65rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
}

.handlyd-cta-text {
    margin: 1rem auto 0;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

.handlyd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    transition: opacity 0.15s ease, background 0.15s ease;
}

.handlyd-btn--primary {
    color: var(--handlyd-dark);
    background: var(--handlyd-green);
}

.handlyd-btn--primary:hover {
    background: var(--handlyd-green-hover);
}

.handlyd-btn--dark {
    color: #fff;
    background: var(--handlyd-dark);
}

.handlyd-btn--lg {
    margin-top: 1.75rem;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

.text-handlyd-green {
    color: var(--handlyd-green);
}

.handlyd-footer {
    background: var(--handlyd-dark);
    color: #fff;
}

.handlyd-footer-grid {
    display: grid;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .handlyd-footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.handlyd-footer-logo {
    height: clamp(3rem, 10vw, 4.25rem);
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.handlyd-footer-tagline {
    margin: 0.85rem 0 0;
    max-width: 20rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
}

.handlyd-footer-heading {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
}

.handlyd-footer-links {
    margin: 0.75rem 0 0;
    padding: 0;
    list-style: none;
}

.handlyd-footer-links li + li {
    margin-top: 0.45rem;
}

.handlyd-footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
}

.handlyd-footer-links a:hover {
    color: var(--handlyd-green);
}

.handlyd-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.handlyd-footer-bottom p {
    margin: 0;
    padding: 1.15rem 1.5rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.handlyd-fab {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 50;
    padding: 0.75rem 1.15rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--handlyd-dark);
    text-decoration: none;
    background: var(--handlyd-green);
    border-radius: 9999px;
    box-shadow: 0 8px 28px rgba(114, 224, 122, 0.45);
    transition: transform 0.15s ease;
}

.handlyd-fab:hover {
    transform: scale(1.04);
}

.handlyd-hero .text-handlyd-green {
    color: var(--handlyd-green);
}

.handlyd-hero .bg-handlyd-green {
    background-color: var(--handlyd-green);
}

.handlyd-hero .border-handlyd-green {
    border-color: var(--handlyd-green);
}

.handlyd-hero .ring-handlyd-green {
    box-shadow: 0 0 0 1px rgba(114, 224, 122, 0.35);
}

.handlyd-hero-overlay {
    background: linear-gradient(to right, #0a0a0a 0%, rgba(10, 10, 10, 0.95) 45%, rgba(10, 10, 10, 0.4) 100%);
}

.handlyd-hero-lead {
    color: rgba(255, 255, 255, 0.82);
}

.handlyd-hero-trust {
    color: rgba(255, 255, 255, 0.7);
}

.handlyd-hero-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.15s ease;
}

.handlyd-hero-nav-link:hover {
    color: var(--handlyd-green);
}

.handlyd-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.handlyd-hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.handlyd-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.15rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--handlyd-dark);
    background: var(--handlyd-green);
    border: none;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.15s ease, opacity 0.15s ease;
}

.handlyd-hero-btn-primary:hover {
    background: var(--handlyd-green-hover);
}

.handlyd-request-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.handlyd-request-card .handlyd-input {
    display: block;
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
    line-height: 1.35;
    color: #0a0a0a;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 0.65rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.handlyd-request-card .handlyd-input:focus {
    border-color: var(--handlyd-green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(114, 224, 122, 0.35);
}

.handlyd-request-card .handlyd-input::placeholder {
    color: #737373;
}

.handlyd-request-card .handlyd-submit {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--handlyd-dark);
    background: var(--handlyd-green);
    border: none;
    border-radius: 0.65rem;
    cursor: pointer;
    transition: background 0.15s ease, opacity 0.15s ease;
}

.handlyd-request-card .handlyd-submit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.handlyd-request-card .handlyd-submit:not(:disabled):hover {
    background: var(--handlyd-green-hover);
}

.handlyd-field-location {
    position: relative;
}

.handlyd-field-location .handlyd-input {
    padding-right: 2.5rem;
}

.handlyd-locate-btn {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    color: var(--handlyd-green);
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.9;
}

.handlyd-locate-btn svg {
    width: 1.125rem;
    height: 1.125rem;
}

.handlyd-lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 50;
    min-width: 10rem;
    margin-top: 0.35rem;
    padding: 0.35rem 0;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.handlyd-lang-menu a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.handlyd-lang-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--handlyd-green);
}

body.handlyd-nav-open {
    overflow: hidden;
}

.handlyd-nav-wrap {
    position: relative;
}

.handlyd-nav-open .handlyd-mobile-menu-btn {
    position: relative;
    z-index: 110;
}

.handlyd-mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.handlyd-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.6);
}

.handlyd-hero-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    width: min(88vw, 20rem);
    padding: 0 0 1.5rem;
    background: #0a0a0a;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.45);
}

.handlyd-mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: calc(env(safe-area-inset-top, 0px) + 1rem) 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.handlyd-mobile-nav-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--handlyd-green);
}

.handlyd-mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    cursor: pointer;
}

.handlyd-hero-mobile-nav a {
    display: block;
    margin: 0 1.25rem;
    padding: 0.9rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.handlyd-hero-mobile-nav a:active,
.handlyd-hero-mobile-nav a:hover {
    color: var(--handlyd-green);
}

.handlyd-mobile-nav-login {
    margin-top: 0.5rem;
    padding: 0.85rem 1rem !important;
    text-align: center;
    color: var(--handlyd-dark) !important;
    background: var(--handlyd-green);
    border: none !important;
    border-radius: 0.65rem;
}

.handlyd-mobile-nav-label {
    margin: 0.5rem 0 0.25rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--handlyd-green);
}

.handlyd-section-head--compact {
    margin-bottom: 2rem;
}

.handlyd-section-head--compact .handlyd-section-sub {
    margin-top: 0.5rem;
}

.handlyd-section--apps {
    position: relative;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.handlyd-apps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 28rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .handlyd-apps-grid {
        gap: 1.25rem;
        max-width: 32rem;
    }
}

.handlyd-app-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 10.5rem;
    padding: 1.1rem 0.75rem 1rem;
    text-align: center;
    background: #fff;
    border: 1px solid var(--handlyd-border);
    border-radius: 1rem;
    cursor: pointer;
    font: inherit;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.handlyd-app-tile:hover {
    border-color: var(--handlyd-green);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.handlyd-app-tile:active {
    transform: translateY(0);
}

.handlyd-app-tile-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 0.65rem;
    padding: 0.2rem;
    background: #f4f4f5;
    border-radius: 0.75rem;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.handlyd-app-tile-icon {
    display: block;
    width: 3rem;
    height: 3rem;
    max-width: 3rem;
    max-height: 3rem;
    object-fit: contain;
    border-radius: 0.55rem;
}

.handlyd-app-tile-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--handlyd-dark);
}

.handlyd-app-tile-action {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--handlyd-green);
}

.handlyd-coming-soon-toast {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    z-index: 120;
    transform: translateX(-50%);
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--handlyd-dark);
    background: var(--handlyd-green);
    border-radius: 9999px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}
