* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    color: #e8e8e8;
    padding: 0;
    line-height: 1.55;
}

a {
    color: #60a5fa;
}

a:hover {
    color: #93c5fd;
}

.site-header {
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
}

.brand img {
    width: 44px;
    height: auto;
    border-radius: 8px;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    align-items: center;
    justify-content: flex-end;
}

.site-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.88rem;
}

.site-nav a:hover {
    color: #fff;
}

.site-nav a[aria-current="page"] {
    color: #60a5fa;
    font-weight: 600;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.25rem 3rem;
}

.hero {
    text-align: center;
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.hero .sub {
    color: #94a3b8;
    font-size: 1.05rem;
    max-width: 42rem;
    margin: 0 auto 1.25rem;
}

.hero-badges {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.phone-link,
.btn-phone {
    display: inline-block;
    background: #dc2626;
    color: #fff !important;
    text-decoration: none;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: background 0.2s;
}

.phone-link:hover,
.btn-phone:hover {
    background: #b91c1c;
}

.section {
    margin-bottom: 2.25rem;
}

.section h2 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.section h3 {
    font-size: 1.05rem;
    color: #3b82f6;
    margin: 1rem 0 0.5rem;
}

.section p,
.section li {
    color: #94a3b8;
    font-size: 0.95rem;
}

.section ul {
    margin: 0.5rem 0 0 1.25rem;
}

.section ul li {
    margin-bottom: 0.35rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.service-tile {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
}

.service-tile h3 {
    margin-top: 0;
    color: #dc2626;
    font-size: 1.05rem;
}

.service-tile p {
    margin-bottom: 0.75rem;
}

.service-tile a.more {
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-list {
    list-style: none;
    margin: 0.5rem 0 0 !important;
    padding: 0;
}

.trust-list li {
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.4rem;
}

.trust-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
}

.cta-band {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin: 2rem 0;
}

.cta-band p {
    color: #e8e8e8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.faq details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 0.65rem;
    padding: 0.85rem 1rem;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.faq details p {
    margin-top: 0.65rem;
    font-size: 0.92rem;
}

.service-area {
    padding: 1.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-top: 2rem;
}

.service-area h2 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.75rem;
    text-align: center;
}

.service-area-intro {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.55;
    text-align: center;
    margin-bottom: 1.25rem;
}

.service-area-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-area-region h3 {
    font-size: 0.95rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.service-area-region ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.site-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: #64748b;
    font-size: 0.88rem;
}

.site-footer a {
    color: #94a3b8;
}

/* Inner pages */
.page-hero {
    margin-bottom: 1.75rem;
}

.page-hero h1 {
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    color: #fff;
    margin-bottom: 0.65rem;
    line-height: 1.2;
}

.prose p {
    margin-bottom: 0.85rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.prose h2 {
    font-size: 1.15rem;
    color: #fff;
    margin: 1.35rem 0 0.5rem;
}

.prose ol {
    margin: 0.5rem 0 0.85rem 1.25rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.prose ol li {
    margin-bottom: 0.35rem;
}

.page-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.page-cta p {
    margin-bottom: 0.85rem;
    color: #cbd5e1;
}

@media (max-width: 700px) {
    .service-area-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        justify-content: flex-start;
    }
}
