* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --ink: #0a0a0a;
    --paper: #f7f5f0;
    --accent: #1a4d2e;
    --accent-light: #2d7a4a;
    --muted: #6b6560;
    --border: #d4d0c8;
    --highlight: #e8f5e9;
}
body { font-family: 'DM Sans', sans-serif; background: var(--paper); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }

nav { display:flex; justify-content:space-between; align-items:center; padding:16px 40px; border-bottom:1px solid var(--border); position:sticky; top:0; background:var(--paper); z-index:50; }
nav a.logo { font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:1.1rem; color:var(--ink); text-decoration:none; display:flex; align-items:center; gap:10px; }
nav .nav-links { display:flex; gap:8px; }
nav .nav-links a { font-family:'Space Grotesk',sans-serif; font-size:0.8rem; font-weight:500; text-decoration:none; padding:6px 14px; border-radius:4px; color:var(--muted); transition:all 0.15s; }
nav .nav-links a:hover { background:var(--ink); color:var(--paper); }
nav .nav-links a.active { background:var(--ink); color:var(--paper); }
.pulse { width:8px; height:8px; background:var(--accent-light); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.breadcrumb { max-width:740px; margin:0 auto; padding:20px 40px 0; font-size:0.85rem; color:var(--muted); }
.breadcrumb a { color:var(--accent); text-decoration:none; }
.breadcrumb a:hover { text-decoration:underline; }

article { max-width:740px; margin:0 auto; padding:40px 40px 80px; }
article h1 { font-family:'Space Grotesk',sans-serif; font-size:clamp(2rem,4.5vw,2.8rem); font-weight:700; line-height:1.1; letter-spacing:-1.5px; margin-bottom:20px; }
article .subtitle { font-size:1.15rem; color:var(--muted); line-height:1.7; margin-bottom:40px; max-width:620px; }
article h2 { font-family:'Space Grotesk',sans-serif; font-size:1.5rem; font-weight:700; letter-spacing:-0.5px; margin:48px 0 16px; line-height:1.2; }
article h3 { font-family:'Space Grotesk',sans-serif; font-size:1.15rem; font-weight:600; margin:32px 0 12px; }
article p { font-size:1rem; color:var(--ink); line-height:1.75; margin-bottom:16px; }
article ul, article ol { margin:0 0 20px 24px; }
article li { font-size:1rem; line-height:1.75; margin-bottom:8px; }

.law-box { background:var(--highlight); border-left:4px solid var(--accent); padding:24px 28px; margin:28px 0; border-radius:0 6px 6px 0; }
.law-box h4 { font-family:'Space Grotesk',sans-serif; font-size:0.95rem; font-weight:600; color:var(--accent); margin-bottom:8px; text-transform:uppercase; letter-spacing:0.5px; }
.law-box p { font-size:0.95rem; color:var(--ink); margin-bottom:0; }

.checklist { background:white; border:1px solid var(--border); padding:28px; border-radius:6px; margin:28px 0; }
.checklist h4 { font-family:'Space Grotesk',sans-serif; font-size:1.05rem; font-weight:600; margin-bottom:16px; }
.checklist ul { list-style:none; margin:0; padding:0; }
.checklist li { padding:8px 0; border-bottom:1px solid var(--border); font-size:0.95rem; display:flex; align-items:flex-start; gap:10px; }
.checklist li:last-child { border-bottom:none; }
.checklist li::before { content:''; display:inline-block; width:18px; height:18px; min-width:18px; border:2px solid var(--accent); border-radius:3px; margin-top:3px; }

.timeline { margin:28px 0; padding:0; }
.timeline-step { display:flex; gap:20px; padding-bottom:28px; position:relative; }
.timeline-step:last-child { padding-bottom:0; }
.timeline-step::before { content:''; position:absolute; left:15px; top:32px; bottom:0; width:2px; background:var(--border); }
.timeline-step:last-child::before { display:none; }
.timeline-dot { width:32px; height:32px; min-width:32px; background:var(--accent); color:white; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:0.85rem; z-index:1; }
.timeline-content h4 { font-family:'Space Grotesk',sans-serif; font-size:1rem; font-weight:600; margin-bottom:4px; }
.timeline-content p { font-size:0.9rem; color:var(--muted); margin:0; }

.cta-box { background:var(--ink); color:var(--paper); padding:48px; border-radius:8px; text-align:center; margin:56px 0 0; }
.cta-box h2 { color:var(--paper); font-family:'Space Grotesk',sans-serif; font-size:1.6rem; margin-bottom:12px; letter-spacing:-0.5px; }
.cta-box p { color:rgba(247,245,240,0.7); font-size:1rem; margin-bottom:24px; }
.cta-btn { display:inline-block; background:var(--accent-light); color:white; padding:14px 36px; border-radius:6px; text-decoration:none; font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:1rem; transition:background 0.15s; }
.cta-btn:hover { background:var(--accent); }
.cta-price { font-size:0.85rem; color:rgba(247,245,240,0.5); margin-top:12px; }

.related { margin-top:56px; padding-top:40px; border-top:1px solid var(--border); }
.related h3 { font-family:'Space Grotesk',sans-serif; font-size:1.1rem; font-weight:600; margin-bottom:20px; }
.related-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.related-card { border:1px solid var(--border); padding:20px; border-radius:6px; text-decoration:none; color:var(--ink); transition:border-color 0.15s; }
.related-card:hover { border-color:var(--accent); }
.related-card h4 { font-family:'Space Grotesk',sans-serif; font-size:0.95rem; font-weight:600; margin-bottom:6px; }
.related-card p { font-size:0.85rem; color:var(--muted); margin:0; line-height:1.5; }

footer { border-top:1px solid var(--border); padding:32px 40px; text-align:center; font-size:0.8rem; color:var(--muted); }
footer span { font-family:'Space Grotesk',sans-serif; font-weight:600; color:var(--ink); }

.email-capture { background:white; border:1px solid var(--border); border-left:4px solid var(--accent-light); padding:32px 36px; border-radius:6px; margin:48px 0 0; }
.email-capture h3 { font-family:'Space Grotesk',sans-serif; font-size:1.2rem; font-weight:700; margin-bottom:8px; letter-spacing:-0.3px; }
.email-capture > p { font-size:0.95rem; color:var(--muted); margin-bottom:20px; line-height:1.6; }
.email-capture-form { display:flex; gap:10px; max-width:460px; }
.email-capture-form input[type="email"] { flex:1; padding:10px 14px; border:1px solid var(--border); border-radius:4px; font-family:'DM Sans',sans-serif; font-size:0.95rem; background:var(--paper); color:var(--ink); outline:none; transition:border-color 0.15s; }
.email-capture-form input[type="email"]:focus { border-color:var(--accent-light); }
.email-capture-form button { padding:10px 20px; background:var(--accent); color:white; border:none; border-radius:4px; font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:0.9rem; cursor:pointer; transition:background 0.15s; white-space:nowrap; }
.email-capture-form button:hover { background:var(--accent-light); }
.email-capture-msg { display:none; font-size:0.9rem; color:var(--accent); font-weight:500; margin-top:12px; }

.trust-bar { display:flex; flex-wrap:wrap; align-items:center; gap:20px; padding:14px 24px; background:#f0fdf4; border:1px solid #bbf7d0; border-radius:6px; margin:0 0 36px; }
.trust-badge { display:flex; align-items:center; gap:7px; font-family:'Space Grotesk',sans-serif; font-size:0.82rem; font-weight:600; color:#15803d; white-space:nowrap; }
.trust-badge svg { width:15px; height:15px; flex-shrink:0; }
.trust-bar-divider { width:1px; height:20px; background:#bbf7d0; }

.how-it-works { margin:48px 0; }
.how-it-works h2 { font-family:'Space Grotesk',sans-serif; font-size:1.4rem; font-weight:700; letter-spacing:-0.5px; margin-bottom:24px; }
.hiw-steps { display:flex; gap:0; }
.hiw-step { flex:1; display:flex; flex-direction:column; align-items:flex-start; padding:0 20px 0 0; position:relative; }
.hiw-step:not(:last-child)::after { content:'→'; position:absolute; right:-4px; top:16px; font-size:1.2rem; color:var(--border); }
.hiw-num { width:36px; height:36px; background:var(--accent); color:white; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:0.9rem; margin-bottom:12px; flex-shrink:0; }
.hiw-step h4 { font-family:'Space Grotesk',sans-serif; font-size:0.95rem; font-weight:600; margin-bottom:6px; line-height:1.3; }
.hiw-step p { font-size:0.85rem; color:var(--muted); margin:0; line-height:1.5; }

.solicitor-cta { background:#fff; border:1px solid var(--border); border-left:4px solid #2563eb; border-radius:0 8px 8px 0; padding:28px 32px; margin:48px 0; }
.solicitor-cta .sol-tag { font-family:'Space Grotesk',sans-serif; font-size:0.75rem; font-weight:600; letter-spacing:0.5px; text-transform:uppercase; color:#2563eb; margin-bottom:10px; }
.solicitor-cta h3 { font-family:'Space Grotesk',sans-serif; font-size:1.15rem; font-weight:700; letter-spacing:-0.3px; margin-bottom:10px; color:var(--ink); }
.solicitor-cta p { font-size:0.95rem; color:var(--muted); line-height:1.65; margin-bottom:18px; }
.solicitor-cta .sol-btn { display:inline-block; background:#2563eb; color:white; padding:12px 28px; border-radius:6px; text-decoration:none; font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:0.9rem; transition:background 0.15s; }
.solicitor-cta .sol-btn:hover { background:#1d4ed8; }
.solicitor-cta .sol-note { display:inline-block; font-size:0.8rem; color:var(--muted); margin-left:12px; }
.email-capture-headline { font-family:'Space Grotesk',sans-serif; font-size:1.2rem; font-weight:700; margin-bottom:6px; letter-spacing:-0.3px; }
.email-capture-sub { font-size:0.95rem; color:var(--muted); margin-bottom:20px; line-height:1.6; }
.email-capture-spam { font-size:0.8rem; color:var(--muted); margin-top:8px; margin-bottom:0; }

@media (max-width:640px) {
    nav { padding:16px 20px; }
    .breadcrumb { padding:16px 20px 0; }
    article { padding:28px 20px 60px; }
    .cta-box { padding:32px 24px; }
    .related-grid { grid-template-columns:1fr; }
    .email-capture { padding:24px 20px; }
    .email-capture-form { flex-direction:column; }
    .hiw-steps { flex-direction:column; gap:24px; }
    .hiw-step::after { display:none; }
    .hiw-step { padding:0; }
    .solicitor-cta { padding:24px 20px; }
    .solicitor-cta .sol-note { display:block; margin:8px 0 0; }
}