/* ════════════════════════════════════════════════════════════
   service-style.css — modern landing-page design for SEO service
   pages. Reuses the theme variables & nav/footer from legal-style.css
   (link legal-style.css FIRST, then this file).
   ════════════════════════════════════════════════════════════ */

.service-page {
    background: var(--color-bg);
    color: var(--color-text);
}

/* ── HERO ─────────────────────────────────────────────────── */
.svc-hero {
    position: relative;
    overflow: hidden;
    padding: 130px 7% 80px;
    text-align: center;
    background:
        radial-gradient(1200px 480px at 50% -10%, rgba(37,99,235,0.16), transparent 60%),
        linear-gradient(160deg, #0f1f3d 0%, #1e3a8a 48%, #2563eb 100%);
    color: #fff;
}
[data-theme="dark"] .svc-hero {
    background:
        radial-gradient(1200px 480px at 50% -10%, rgba(96,165,250,0.20), transparent 60%),
        linear-gradient(160deg, #060b18 0%, #0f2350 50%, #14306b 100%);
}
.svc-hero::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 90px;
    background: var(--color-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 38%, 0 78%);
}
.svc-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.28);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
}
.svc-hero h1 {
    font-family: var(--font-display, 'Montserrat', system-ui, sans-serif);
    font-size: clamp(2rem, 5.4vw, 3.4rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 auto 18px;
    max-width: 16ch;
    color: #fff;
}
.svc-hero .svc-sub {
    font-size: clamp(1.02rem, 2.2vw, 1.28rem);
    line-height: 1.5;
    color: rgba(255,255,255,0.86);
    max-width: 46ch;
    margin: 0 auto 34px;
}
.svc-hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 32px;
    border-radius: 32px;
    font-family: var(--font-display, 'Montserrat', sans-serif);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    cursor: pointer;
    border: none;
}
.svc-btn-primary {
    background: #fff;
    color: #1e3a8a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}
.svc-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.28); }
.svc-btn-ghost {
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.5);
    color: #fff;
}
.svc-btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* trust chips under hero */
.svc-trust {
    display: flex;
    gap: 10px 26px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px;
    position: relative;
    z-index: 2;
}
.svc-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
}
.svc-trust svg { width: 17px; height: 17px; stroke: #7dd3fc; }

/* ── CONTAINER & SECTIONS ─────────────────────────────────── */
.svc-container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}
.svc-section { padding: 46px 0; }
.svc-section + .svc-section { border-top: 1px solid var(--color-border); }

.svc-eyebrow {
    display: block;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
}
.svc-section h2 {
    font-family: var(--font-display, 'Montserrat', sans-serif);
    font-size: clamp(1.5rem, 3.4vw, 2.1rem);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 14px;
    color: var(--color-text);
}
.svc-lead {
    font-size: 1.08rem;
    line-height: 1.72;
    color: var(--color-text);
    text-align: center;
    max-width: 60ch;
    margin: 0 auto 8px;
}
.svc-section p {
    font-size: 1rem;
    line-height: 1.72;
    color: var(--color-text-light);
    margin: 0 auto 16px;
    max-width: 64ch;
}
.svc-section p:last-child { margin-bottom: 0; }
.svc-section p strong { color: var(--color-text); font-weight: 700; }
.svc-section a { color: var(--color-accent); text-decoration: none; font-weight: 600; }
.svc-section a:hover { text-decoration: underline; }
.svc-section h3 {
    font-family: var(--font-display, 'Montserrat', sans-serif);
    font-size: 1.16rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 26px 0 10px;
}

/* ── FEATURE CARDS ────────────────────────────────────────── */
.svc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    margin-top: 26px;
}
.svc-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 26px 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(37,99,235,0.12);
    border-color: var(--color-accent);
}
.svc-card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1e40af, #2563eb);
    margin-bottom: 16px;
    box-shadow: 0 6px 18px rgba(37,99,235,0.3);
}
.svc-card-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; }
.svc-card h3 { margin: 0 0 8px; font-size: 1.08rem; }
.svc-card p { font-size: 0.95rem; line-height: 1.6; margin: 0; max-width: none; }

/* ── CHECK LIST ───────────────────────────────────────────── */
.svc-checklist {
    list-style: none;
    padding: 0;
    margin: 22px auto 0;
    max-width: 60ch;
    display: grid;
    gap: 12px;
}
.svc-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--color-text);
}
.svc-checklist li::before {
    content: "";
    flex-shrink: 0;
    width: 22px; height: 22px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--color-accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.svc-checklist li strong { font-weight: 700; }

/* ── PRICE BOX ────────────────────────────────────────────── */
.svc-pricebox {
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(37,99,235,0.02));
    border: 1.5px solid var(--color-accent);
    border-radius: 20px;
    padding: 30px 28px;
    margin: 24px auto 0;
    max-width: 560px;
    text-align: center;
}
.svc-pricebox .svc-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--color-border);
    text-align: left;
}
.svc-pricebox .svc-price-row:last-of-type { border-bottom: none; }
.svc-pricebox .svc-price-label { font-weight: 600; color: var(--color-text); }
.svc-pricebox .svc-price-val { font-weight: 800; color: var(--color-accent); white-space: nowrap; font-family: var(--font-display, 'Montserrat', sans-serif); }
.svc-pricebox .svc-price-note { font-size: 0.86rem; color: var(--color-text-light); margin-top: 14px; }

/* ── FAQ ──────────────────────────────────────────────────── */
.svc-faq { margin: 24px auto 0; max-width: 64ch; }
.svc-faq-item {
    border: 1px solid var(--color-border);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--color-white);
}
.svc-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 22px;
    font-family: var(--font-display, 'Montserrat', sans-serif);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}
.svc-faq-q svg { width: 20px; height: 20px; stroke: var(--color-accent); flex-shrink: 0; transition: transform 0.25s ease; }
.svc-faq-item.open .svc-faq-q svg { transform: rotate(180deg); }
.svc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.svc-faq-a-inner { padding: 0 22px 18px; }
.svc-faq-a-inner p { font-size: 0.98rem; line-height: 1.66; color: var(--color-text-light); margin: 0; max-width: none; }

/* ── CTA BAND ─────────────────────────────────────────────── */
.svc-cta-band {
    margin: 56px auto 0;
    max-width: 920px;
    border-radius: 26px;
    padding: 48px 28px;
    text-align: center;
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #fff;
}
.svc-cta-band h2 { color: #fff; margin: 0 0 10px; }
.svc-cta-band p { color: rgba(255,255,255,0.9); max-width: 50ch; margin: 0 auto 24px; }
.svc-cta-band .svc-btn-primary { background: #fff; color: #1e3a8a; }
.svc-cta-band .svc-phone { display: block; margin-top: 16px; font-size: 0.92rem; color: rgba(255,255,255,0.86); }
.svc-cta-band .svc-phone a { color: #fff; font-weight: 700; }

/* ── RELATED SERVICE LINKS ────────────────────────────────── */
.svc-related {
    padding: 44px 24px 8px;
    max-width: 920px;
    margin: 0 auto;
}
.svc-related-title {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 16px;
}
.svc-related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.svc-related-grid a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    padding: 9px 18px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.18s ease;
}
.svc-related-grid a:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 600px) {
    .svc-hero { padding: 110px 6% 64px; }
    .svc-section { padding: 38px 0; }
    .svc-btn { padding: 14px 26px; font-size: 0.95rem; }
    .svc-cta-band { padding: 40px 22px; border-radius: 20px; }
}
