/* Content / SEO landing pages — builds on index.css tokens */

.content-nav-wrap {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(18, 20, 24, 0.92);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(8px);
}

.content-nav {
    padding: 14px 0;
}

.content-nav .logo {
    text-decoration: none;
}

.content-main {
    padding: 48px 0 72px;
    color: var(--text-color);
}

.content-hero {
    max-width: 760px;
    margin-bottom: 36px;
}

.content-eyebrow {
    color: var(--accent-yellow);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.content-hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 14px;
    color: #fff;
}

.content-lead {
    font-size: 1.15rem;
    line-height: 1.65;
    opacity: 0.92;
    margin-bottom: 18px;
}

.content-meta {
    font-size: 0.9rem;
    opacity: 0.65;
    margin-bottom: 22px;
}

.content-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.content-prose {
    max-width: 760px;
}

.content-prose h2 {
    color: #fff;
    font-size: 1.45rem;
    margin: 36px 0 12px;
}

.content-prose h3 {
    color: #fff;
    font-size: 1.15rem;
    margin: 24px 0 10px;
}

.content-prose p,
.content-prose li {
    margin-bottom: 12px;
    line-height: 1.65;
    opacity: 0.9;
}

.content-prose ul {
    padding-left: 1.2rem;
    margin-bottom: 16px;
}

.content-callout {
    background: rgba(255, 255, 255, 0.04);
    border-left: 4px solid var(--accent-yellow);
    border-radius: 10px;
    padding: 18px 20px;
    margin: 24px 0;
}

.content-callout p {
    margin: 0;
}

.content-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 20px 0 8px;
}

.content-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.content-card:hover {
    border-color: rgba(250, 204, 21, 0.45);
    transform: translateY(-2px);
}

.content-card h3 {
    color: #fff;
    font-size: 1.05rem;
    margin: 0 0 8px;
}

.content-card p {
    margin: 0;
    font-size: 0.92rem;
    opacity: 0.8;
    line-height: 1.5;
}

.content-faq details {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 4px 16px;
    margin-bottom: 10px;
}

.content-faq summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    padding: 14px 0;
}

.content-faq summary::-webkit-details-marker {
    display: none;
}

.content-faq p {
    margin: 0 0 14px;
    opacity: 0.85;
}

.content-footer {
    background: #111;
    color: #888;
    padding: 36px 0 48px;
    font-size: 0.9rem;
}

.content-footer-links,
.content-footer-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 14px;
}

.content-footer a {
    color: #bbb;
    text-decoration: none;
}

.content-footer a:hover {
    color: #fff;
}

.content-footer-cities span {
    color: #666;
}

.content-footer-copy {
    margin: 0;
    opacity: 0.85;
}

.content-footer-copy a {
    color: var(--accent-yellow);
}

@media (max-width: 700px) {
    .content-main {
        padding: 32px 0 56px;
    }
    .content-nav .btn--secondary {
        display: none;
    }
}
