:root {
    --bg: #f7f8f9;
    --surface: #ffffff;
    --text: #0f1720;
    --muted: #4a5562;
    --brand: #0e7c86;
    --brand-dark: #0a5c63;
    --border: #d7dce1;
    --radius: 12px;
    --shadow: 0 10px 25px rgba(15, 23, 32, 0.08);
    --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a { color: var(--brand-dark); }
a:hover { color: var(--brand); }

.container {
    width: min(var(--maxw), 92vw);
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
}
.skip-link:focus {
    left: 12px;
    top: 12px;
    z-index: 1000;
    background: #fff;
    padding: 8px 12px;
    border: 1px solid var(--border);
}

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrap {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 12px 0;
}

.brand-link {
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
}

.brand-subtitle {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 10px;
}

.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.primary-nav a {
    text-decoration: none;
    font-weight: 600;
}

.cta-phone {
    white-space: nowrap;
    text-decoration: none;
    border: 1px solid var(--brand);
    color: var(--brand);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
}

.hero {
    background: linear-gradient(180deg, #e8f4f4 0%, #f7f8f9 100%);
    padding: 56px 0 32px;
}

.hero-compact { padding: 36px 0 20px; }

.hero-wrap {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 22px;
    align-items: start;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--brand-dark);
}

h1, h2, h3 {
    line-height: 1.2;
    margin-top: 0;
}

h1 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); }
h3 { font-size: 1.15rem; }

.lead {
    font-size: 1.05rem;
    color: var(--muted);
}

.hero-cta,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-line {
    margin-top: 12px;
    color: var(--muted);
}

.section { padding: 34px 0; }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 16px;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
}

.btn-primary:hover {
    background: var(--brand-dark);
    color: #fff;
}

.btn-secondary {
    background: #fff;
    border-color: var(--border);
    color: var(--text);
}

.btn-block {
    width: 100%;
}

.check-list {
    padding-left: 20px;
}

.cta-strip {
    background: #0f1720;
    color: #fff;
    padding: 22px 0;
}

.cta-strip a { color: #fff; }

.cta-strip-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.post-list {
    display: grid;
    gap: 14px;
}

.page-content pre {
    overflow-x: auto;
    background: #1f2430;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
}

.consent-copy {
    font-size: 0.9rem;
    color: var(--muted);
}

.global-request {
    padding: 32px 0 12px;
    scroll-margin-top: 92px;
}

.global-request-compact {
    scroll-margin-top: 92px;
}

.global-request-card {
    background: linear-gradient(160deg, #fff4e5 0%, #fff 38%, #ecfbfd 100%);
    border: 2px solid #ffb454;
    border-radius: var(--radius);
    box-shadow: 0 16px 38px rgba(249, 115, 22, 0.18);
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 22px;
    position: relative;
    overflow: hidden;
}

.global-request-card-compact {
    grid-template-columns: 1fr;
    padding: 18px;
}

.global-request-card::after {
    content: "";
    position: absolute;
    top: -48px;
    right: -44px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 124, 134, 0.22), rgba(14, 124, 134, 0));
    pointer-events: none;
}

.global-request-intro p {
    margin: 0 0 10px;
}

.global-request-intro h2 {
    margin-bottom: 8px;
    color: #7c2d12;
}

.global-request-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f97316;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.global-request-points {
    margin: 10px 0 0;
    padding-left: 18px;
    color: #7c2d12;
    font-weight: 600;
}

.global-request-card-compact .global-request-points {
    margin-bottom: 6px;
}

.global-request-form-wrap {
    background: #fff;
    border: 1px solid #ffd6a6;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 32, 0.08);
}

.global-request-form {
    display: grid;
    gap: 8px;
}

.global-request-form label {
    font-weight: 600;
    font-size: 0.95rem;
}

.global-request-form input,
.global-request-form textarea {
    width: 100%;
    border: 1px solid #c9d2dc;
    border-radius: 8px;
    padding: 9px 10px;
    font: inherit;
}

.global-request-form input:focus,
.global-request-form textarea:focus {
    outline: 3px solid rgba(14, 124, 134, 0.2);
    border-color: var(--brand);
}

.global-request-form textarea {
    resize: vertical;
}

.global-request-form .btn {
    width: 100%;
    margin-top: 4px;
}

.form-alert {
    margin: 0 0 10px;
    border-radius: 8px;
    padding: 9px 10px;
    font-size: 0.93rem;
}

.form-alert-success {
    background: #e8f6ed;
    border: 1px solid #9ad7ac;
    color: #165b2b;
}

.form-alert-error {
    background: #fdecec;
    border: 1px solid #ef9b9b;
    color: #7f1d1d;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--muted);
}

.consent-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

.btn-global-request {
    background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 18px rgba(234, 88, 12, 0.28);
}

.btn-global-request:hover {
    background: linear-gradient(180deg, #ea580c 0%, #c2410c 100%);
}

.floating-request-trigger {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 120;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 28px rgba(234, 88, 12, 0.32);
    animation: requestPulse 2.2s ease-in-out infinite;
}

.floating-request-trigger:hover {
    color: #fff;
    background: linear-gradient(180deg, #ea580c 0%, #c2410c 100%);
}

@keyframes requestPulse {
    0% { transform: translateY(0); box-shadow: 0 14px 28px rgba(234, 88, 12, 0.32); }
    50% { transform: translateY(-2px); box-shadow: 0 20px 30px rgba(234, 88, 12, 0.38); }
    100% { transform: translateY(0); box-shadow: 0 14px 28px rgba(234, 88, 12, 0.32); }
}

@media (prefers-reduced-motion: reduce) {
    .floating-request-trigger {
        animation: none;
    }
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-footer {
    margin-top: 30px;
    background: #111827;
    color: #e5e7eb;
    padding-top: 28px;
}

.site-footer a { color: #cde7ea; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.14);
    margin-top: 16px;
}

.footer-bottom ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

@media (max-width: 900px) {
    .header-wrap {
        grid-template-columns: 1fr auto;
    }

    .menu-toggle { display: inline-flex; }

    .primary-nav {
        grid-column: 1 / -1;
        display: none;
    }

    .primary-nav.is-open { display: block; }

    .primary-nav ul {
        flex-direction: column;
        padding-top: 6px;
    }

    .cta-phone {
        justify-self: start;
        grid-column: 1 / -1;
    }

    .hero-wrap,
    .grid-3,
    .global-request-card,
    .footer-grid,
    .cta-strip-wrap {
        grid-template-columns: 1fr;
        display: grid;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-request-trigger {
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-radius: 10px;
        padding: 11px 14px;
    }
}
