/* Conversion, accessibility and performance refinements - 2026-08. */
:focus-visible {
    outline: 3px solid var(--accent-soft);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    transform: translateY(-160%);
    background: var(--navy);
    color: #fff;
    padding: 10px 14px;
    border-radius: 4px;
}

.skip-link:focus { transform: translateY(0); }
.nav-toggle[aria-expanded="true"] { color: var(--accent); }

.contact-form select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 11px 14px;
    font-size: 14.5px;
    font-family: inherit;
    background: var(--bg);
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

.contact-form .btn { justify-self: start; }
.required-mark { color: #9e2d2d; }

.honeypot-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.consent-row {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 12.5px;
    color: var(--text-muted);
}

.consent-row input { width: 18px; height: 18px; margin-top: 2px; }
.consent-row label { margin: 0; color: inherit; font-weight: 400; }
.consent-row a, .form-note a { color: var(--primary); text-decoration: underline; }

.form-alert {
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-size: 14px;
}

.form-alert[hidden] { display: none; }
.form-alert.success { background: #edf8f2; border-color: #b7dec8; color: #195c37; }
.form-alert.error { background: #fff1f0; border-color: #efc3bf; color: #842b26; }

.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
}

.footer-links a:hover { color: var(--accent-soft); }

.slider-pause {
    position: absolute;
    right: 22px;
    top: 18px;
    z-index: 6;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 999px;
    background: rgba(4,8,16,0.62);
    color: #fff;
    padding: 7px 11px;
    font: 600 11px/1 'Inter', sans-serif;
    cursor: pointer;
}

.slider-pause:hover { background: rgba(4,8,16,0.85); }

.quick-actions {
    position: fixed;
    z-index: 45;
    right: 22px;
    bottom: 22px;
    display: grid;
    gap: 9px;
}

.quick-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(4,18,34,0.22);
    font-size: 13px;
    font-weight: 700;
}

.quick-action-quote { background: var(--primary); color: #fff; }
.quick-action-whatsapp { background: #167d4b; color: #fff; }
.quick-action:hover { filter: brightness(0.92); }

.privacy-content { max-width: 820px; }
.privacy-content h2 { margin: 38px 0 10px; font-size: 25px; }
.privacy-content p, .privacy-content li { color: var(--text-muted); }
.privacy-content ul { margin: 12px 0 0 20px; }
.privacy-content a { color: var(--primary); text-decoration: underline; }

@media (max-width: 860px) {
    body { padding-bottom: 62px; }
    .quick-actions {
        left: 0;
        right: 0;
        bottom: 0;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        background: #fff;
        border-top: 1px solid var(--border);
        box-shadow: 0 -8px 24px rgba(4,18,34,0.12);
    }
    .quick-action { min-height: 56px; border-radius: 0; box-shadow: none; }
    .site-footer { padding-bottom: 26px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
