@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Epilogue:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* WorkerShield SEO Pages
   Exact design tokens from index.html
   ------------------------------------------------ */

:root {
  --slate:    #1B2A4A;
  --slate2:   #243358;
  --slate3:   #2E3F6B;
  --coral:    #F05A35;
  --coral2:   #FF7A5C;
  --coral-pale: rgba(240,90,53,0.10);
  --coral-pale2: rgba(240,90,53,0.06);
  --sky:      #4A90C4;
  --white:    #FFFFFF;
  --off:      #F4F6FA;
  --ink:      #0E1624;
  --muted:    rgba(255,255,255,0.45);
  --border:   rgba(255,255,255,0.09);
  --border2:  rgba(74,144,196,0.22);
  --r:        8px;
  /* SEO extras */
  --card-bg:  rgba(255,255,255,0.04);
  --green:    #1A9E6A;
  --green-light: rgba(26,158,106,0.12);
  --red:      #DC2626;
  --amber:    #F59E0B;
}

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

body {
  font-family: 'Epilogue', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--white);
  background: var(--ink);
}

/* ── Nav — exact from index.html ── */
nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 62px;
  background: rgba(14,22,36,0.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.nav-logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav-logo-text { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em; display: flex; flex-direction: column; align-items: flex-end; line-height: 1; }
.nav-logo-text .wordmark { display: block; }
.nav-logo-text .wordmark span { color: var(--coral); }
.nav-logo-text .country { display: block; font-weight: 600; font-size: 0.5em; letter-spacing: 0.28em; color: var(--muted); text-transform: uppercase; margin-top: 3px; margin-right: 1px; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a { color: var(--muted); font-size: 0.83rem; text-decoration: none; transition: color 0.2s; font-weight: 400; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta { background: var(--coral); color: var(--white); font-size: 0.82rem; font-weight: 600; padding: 9px 20px; border-radius: var(--r); border: none; cursor: pointer; font-family: 'Epilogue', sans-serif; transition: background 0.2s, transform 0.2s; white-space: nowrap; text-decoration: none; display: inline-block; }
.nav-cta:hover { background: var(--coral2); transform: translateY(-1px); }
.nav-mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }

/* ── Breadcrumb ── */
.seo-breadcrumb-bar { border-bottom: 1px solid var(--border); padding: 10px 2.5rem; background: rgba(255,255,255,0.02); }
.seo-breadcrumb { max-width: 1100px; margin: 0 auto; display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.seo-breadcrumb a { color: var(--coral); text-decoration: none; opacity: 0.8; }
.seo-breadcrumb a:hover { opacity: 1; }
.seo-breadcrumb span { opacity: 0.4; }

/* ── Hero ── */
.seo-hero { padding: 52px 2.5rem 56px; border-bottom: 1px solid var(--border); background: radial-gradient(ellipse at 20% 50%, rgba(240,90,53,0.07) 0%, transparent 60%); }
.seo-hero-inner { max-width: 1100px; margin: 0 auto; }
.seo-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: var(--coral-pale); color: var(--coral); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 20px; margin-bottom: 18px; border: 1px solid rgba(240,90,53,0.2); }
.seo-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.02em; }
.seo-hero h1 em { color: var(--coral); font-style: normal; }
.seo-hero-intro { font-size: 1.05rem; color: var(--muted); max-width: 620px; margin-bottom: 32px; line-height: 1.7; }
.seo-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-primary { background: var(--coral); color: var(--white); padding: 12px 26px; border-radius: var(--r); font-weight: 700; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s, transform 0.2s; font-family: 'Epilogue', sans-serif; border: none; cursor: pointer; }
.cta-primary:hover { background: var(--coral2); transform: translateY(-1px); }
.cta-secondary { background: transparent; color: var(--white); border: 1.5px solid var(--border2); padding: 11px 24px; border-radius: var(--r); font-weight: 600; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: border-color 0.2s, background 0.2s; font-family: 'Epilogue', sans-serif; }
.cta-secondary:hover { border-color: var(--coral); background: var(--coral-pale); }

/* ── Page layout ── */
.seo-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 2.5rem 80px; display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: start; }
.seo-content section { margin-bottom: 52px; }
.seo-content h2 { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 22px; letter-spacing: -0.01em; }
.seo-content p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.seo-content strong { color: var(--white); font-weight: 600; }

/* ── Rights bar ── */
.rights-bar { border-left: 3px solid var(--coral); padding: 14px 18px; background: var(--card-bg); border-radius: 0 var(--r) var(--r) 0; margin-bottom: 14px; border: 1px solid var(--border); border-left: 3px solid var(--coral); }
.rights-bar-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--coral); margin-bottom: 8px; }
.rights-bar p { font-size: 14.5px; color: rgba(255,255,255,0.8); margin: 0; line-height: 1.65; }

/* ── Issue cards ── */
.issue-grid { display: flex; flex-direction: column; gap: 10px; }
.issue-card { border: 1px solid var(--border); border-radius: var(--r); padding: 14px 16px; background: var(--card-bg); border-left-width: 3px; }
.issue-card.high { border-left-color: var(--red); }
.issue-card.med  { border-left-color: var(--amber); }
.issue-card.low  { border-left-color: var(--green); }
.issue-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.issue-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.issue-card.high .issue-dot { background: var(--red); }
.issue-card.med  .issue-dot { background: var(--amber); }
.issue-card.low  .issue-dot { background: var(--green); }
.issue-title { font-weight: 700; font-size: 14px; color: var(--white); }
.issue-detail { font-size: 13.5px; color: var(--muted); margin: 0; padding-left: 18px; }

/* ── Entitlement cards ── */
.entitlement-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.entitlement-card { background: var(--green-light); border: 1px solid rgba(26,158,106,0.2); border-radius: var(--r); padding: 18px; }
.entitlement-icon { font-size: 22px; margin-bottom: 10px; }
.entitlement-title { font-weight: 700; font-size: 14px; color: var(--white); margin-bottom: 6px; }
.entitlement-card p { font-size: 13.5px; color: rgba(255,255,255,0.7); margin: 0; }

/* ── Steps ── */
.steps-list { display: flex; flex-direction: column; }
.step-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-num { width: 34px; height: 34px; border-radius: 50%; background: var(--coral); color: var(--white); font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.step-body { flex: 1; }
.step-title { font-weight: 700; font-size: 15px; color: var(--white); margin-bottom: 6px; }
.step-body p { font-size: 14px; color: var(--muted); margin: 0; }

/* ── Evidence list ── */
.evidence-list { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.evidence-list li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; background: var(--card-bg); border-radius: var(--r); border: 1px solid var(--border); font-size: 14px; color: rgba(255,255,255,0.75); }
.ev-icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q { width: 100%; background: var(--card-bg); border: none; padding: 15px 18px; text-align: left; font-size: 14.5px; font-weight: 600; color: var(--white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: 'Epilogue', sans-serif; }
.faq-q:hover { background: rgba(255,255,255,0.06); }
.faq-arrow { color: var(--coral); font-size: 16px; flex-shrink: 0; display: inline-block; transition: transform 0.2s; margin-left: auto; }
.faq-a { display: none; padding: 0 18px 16px; font-size: 14px; color: var(--muted); line-height: 1.7; background: var(--card-bg); }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ── Related ── */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.related-card { display: flex; align-items: center; gap: 12px; padding: 13px 15px; border: 1px solid var(--border); border-radius: var(--r); text-decoration: none; background: var(--card-bg); transition: border-color 0.15s, background 0.15s; }
.related-card:hover { border-color: var(--coral); background: var(--coral-pale); }
.rel-icon { font-size: 18px; flex-shrink: 0; }
.rel-text { font-size: 13.5px; font-weight: 600; color: var(--white); }
.rel-arrow { margin-left: auto; color: var(--coral); font-size: 14px; }

/* ── Sidebar ── */
.seo-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 78px; }
.sidebar-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.sidebar-card-title { background: var(--slate); padding: 11px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); }
.sidebar-niki .sidebar-card-title { background: var(--coral); color: var(--white); }
.sidebar-card-body { padding: 14px 16px; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.toc-list a { display: block; padding: 6px 8px; font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; border-radius: 6px; transition: background 0.1s, color 0.1s; }
.toc-list a:hover { background: var(--card-bg); color: var(--coral); }
.law-pill { display: inline-block; background: rgba(74,144,196,0.15); color: rgba(255,255,255,0.8); font-size: 11.5px; font-weight: 500; padding: 4px 10px; border-radius: 20px; margin: 3px 2px; border: 1px solid var(--border2); }

/* ── CTA strip ── */
.cta-strip { background: linear-gradient(135deg, rgba(240,90,53,0.12) 0%, transparent 60%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 52px 2.5rem; }
.cta-strip-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip-title { font-family: 'Syne', sans-serif; color: var(--white); font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.cta-strip-sub { color: var(--muted); font-size: 15px; }

/* ── Divider ── */
hr.section-rule { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ── Urgency badge ── */
.urgency-badge { background: rgba(220,38,38,0.12); border: 1px solid rgba(220,38,38,0.25); border-radius: var(--r); padding: 12px 16px; margin-bottom: 20px; }
.urgency-badge p { color: var(--white); font-size: 14px; margin: 0; }
.urgency-badge strong { color: #F87171; }

/* ── Footer ── */
.seo-footer { background: var(--ink); border-top: 1px solid var(--border); padding: 48px 2.5rem 32px; }
.seo-footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.seo-footer-logo { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.seo-footer-logo .c { color: var(--coral); }
.seo-footer-brand p { color: rgba(255,255,255,0.35); font-size: 13px; line-height: 1.6; max-width: 300px; }
.seo-footer-col h4 { color: rgba(255,255,255,0.35); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; }
.seo-footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13.5px; padding: 3px 0; transition: color 0.15s; }
.seo-footer-col a:hover { color: var(--white); }
.seo-footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.seo-footer-bottom p { color: rgba(255,255,255,0.25); font-size: 12px; }
.seo-footer-bottom a { color: rgba(255,255,255,0.35); font-size: 12px; text-decoration: none; }
.seo-footer-bottom a:hover { color: var(--white); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .seo-wrap { grid-template-columns: 1fr; }
  .seo-sidebar { position: static; }
  .seo-footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .entitlement-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; }
}
@media (max-width: 500px) {
  nav { padding: 0 1.2rem; }
  .seo-hero { padding: 36px 1.2rem 40px; }
  .seo-wrap { padding: 32px 1.2rem 60px; }
  .seo-hero-ctas { flex-direction: column; }
  .cta-primary, .cta-secondary { width: 100%; justify-content: center; }
}
