/* Shared lightweight styles for public landing pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1e293b;
    line-height: 1.7;
    background: #fff;
}

img { max-width: 100%; height: auto; display: block; }

a { color: #1e3a8a; }

.container { max-width: 800px; margin: 0 auto; padding: 0 20px; }

header {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    background: #16a34a;
    color: white;
    text-decoration: none;
    font-weight: 800;
    padding: 10px 16px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
    min-height: 44px;
    margin-left: auto;
}

.header-phone:hover {
    background: #15803d;
    color: white;
}

.header-phone-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
    opacity: 0.92;
}

.header-phone-number {
    display: block;
    font-size: 1rem;
    line-height: 1.15;
}

.logo {
    font-weight: 800;
    color: #1e3a8a;
    font-size: 1.05rem;
    text-decoration: none;
    line-height: 1.3;
}

.nav-cta {
    color: #1e3a8a;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 999px;
    border: 2px solid #1e3a8a;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

main { padding: 40px 0 56px; }

h1 {
    font-size: clamp(1.65rem, 4vw, 2rem);
    line-height: 1.2;
    margin-bottom: 16px;
    color: #0f172a;
}

h2 {
    font-size: 1.2rem;
    margin: 28px 0 12px;
    color: #1e3a8a;
}

p, li { color: #475569; margin-bottom: 14px; }

ul { padding-left: 20px; margin-bottom: 20px; }

.lead { font-size: 1.05rem; }

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1e3a8a;
    color: white;
    padding: 14px 24px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 8px;
    min-height: 48px;
}

.cta:hover { background: #0f2b6d; }

.breadcrumb { font-size: 0.9rem; color: #64748b; margin-bottom: 20px; }

.breadcrumb a { text-decoration: none; }

.city-links {
    margin-top: 24px;
    padding: 18px;
    background: #f8fafc;
    border-radius: 12px;
    font-size: 0.95rem;
}

.city-links a {
    font-weight: 600;
    margin-right: 10px;
    text-decoration: none;
    display: inline-block;
    padding: 6px 0;
}

footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 28px 0;
    font-size: 0.9rem;
    text-align: center;
}

footer a { color: #cbd5e1; }

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    main { padding: 32px 0 48px; }
    .nav {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo phone"
            "cta cta";
        align-items: center;
    }
    .logo { grid-area: logo; }
    .header-phone {
        grid-area: phone;
        margin-left: 0;
        padding: 8px 12px;
    }
    .header-phone-label { display: none; }
    .header-phone-number { font-size: 0.88rem; }
    .nav-cta {
        grid-area: cta;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
}
