/* ==========================================================================
   YourWorkRights.uk — Global Design System
   Palette: Navy #0d1f3c · Navy Mid #162d54 · Amber #e8a020 ·
            Amber Light #f5c060 · Cream #f9f5ef · White #ffffff · Grey #6b7280
   Type: Playfair Display (headings) + DM Sans (body)
   ========================================================================== */

:root {
  --navy: #0d1f3c;
  --navy-mid: #162d54;
  --navy-deep: #0a1830;
  --amber: #e8a020;
  --amber-light: #f5c060;
  --amber-tint: #fdf3e0;
  --cream: #f9f5ef;
  --white: #ffffff;
  --grey: #6b7280;
  --grey-light: #9ca3af;
  --green: #1e7d4f;
  --green-tint: #eef7f1;
  --red: #b3362b;
  --red-tint: #fbf0ee;
  --border: #e6dfd2;
  --border-navy: rgba(22, 45, 84, 0.14);
  --shadow-sm: 0 1px 3px rgba(13, 31, 60, 0.08);
  --shadow-md: 0 8px 24px rgba(13, 31, 60, 0.1);
  --shadow-lg: 0 20px 48px rgba(13, 31, 60, 0.16);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --header-h: 64px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.drawer-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.08rem; margin-bottom: 0.4rem; }
p { margin-bottom: 1rem; }
.lead { font-size: 1.15rem; color: var(--grey); line-height: 1.7; }

/* Thin-line italicised amber highlight inside H1s */
.hl {
  font-style: italic;
  color: var(--amber);
  border-bottom: 1.5px solid var(--amber);
  padding-bottom: 2px;
}
.on-navy .hl { color: var(--amber-light); border-bottom-color: var(--amber-light); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.9rem;
}
.smallcaps {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-mid);
}
.muted { color: var(--grey); }

/* ---------- Layout utilities ---------- */
.container { width: min(1140px, 92%); margin-inline: auto; }
.section { padding: 5rem 0; }
.section-alt { background: var(--white); }
.section-navy { background: var(--navy); color: rgba(255, 255, 255, 0.86); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-head { max-width: 680px; margin-bottom: 2.8rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--amber); color: var(--navy); box-shadow: 0 6px 18px rgba(232, 160, 32, 0.35); }
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(232, 160, 32, 0.42); }
.btn-outline { border: 1.5px solid var(--navy-mid); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-ghost-light { border: 1.5px solid rgba(255, 255, 255, 0.45); color: var(--white); }
.btn-ghost-light:hover { border-color: var(--amber-light); color: var(--amber-light); }

/* ---------- Header / Sticky Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(10, 24, 48, 0.45); }
.nav-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; color: var(--white); }
.brand svg { width: 28px; height: 28px; color: var(--amber); }
.brand-name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; letter-spacing: 0.01em; }
.brand-name em { color: var(--amber); font-style: normal; }
.nav-desktop { display: flex; align-items: center; gap: 0.25rem; }
.nav-desktop > a, .nav-drop > button {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.55rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-desktop > a:hover, .nav-drop > button:hover { color: var(--amber-light); background: rgba(255, 255, 255, 0.06); }
.nav-desktop > a.active { color: var(--amber-light); }
.nav-drop { position: relative; }
.nav-drop button svg { width: 15px; height: 15px; transition: transform 0.2s; }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop:hover button svg { transform: rotate(180deg); }
.nav-drop-menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
}
.nav-drop-menu a small { color: var(--grey); font-weight: 400; font-size: 0.78rem; }
.nav-drop-menu a:hover { background: var(--amber-tint); }
.nav-cta { margin-left: 0.5rem; }
.nav-cta .btn { padding: 0.55rem 1.25rem; font-size: 0.9rem; }

/* Hamburger */
.nav-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; color: var(--white); border-radius: 8px; }
.nav-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile drawer */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 24, 48, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 110;
}
.drawer-overlay.active { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 86vw);
  height: 100dvh;
  background: var(--navy);
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.drawer.active { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.25rem;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.drawer-close { color: var(--white); width: 40px; height: 40px; display: grid; place-items: center; border-radius: 8px; }
.drawer-close:hover { background: rgba(255, 255, 255, 0.08); }
.drawer-close svg { width: 24px; height: 24px; }
.drawer-nav { padding: 1.2rem 1.25rem 2rem; }
.drawer-group-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245, 192, 96, 0.75);
  margin: 1.3rem 0 0.4rem;
}
.drawer-nav a {
  display: block;
  padding: 0.65rem 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.drawer-nav a:hover { background: rgba(255, 255, 255, 0.07); color: var(--amber-light); }
.drawer-nav a.active { background: rgba(232, 160, 32, 0.14); color: var(--amber-light); border-left: 2px solid var(--amber); }
.drawer-nav .btn { margin-top: 1.6rem; width: 100%; justify-content: center; }

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(232, 160, 32, 0.14), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #f4edde 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; }
.hero-copy h1 { margin-bottom: 1.1rem; }
.hero-copy .lead { max-width: 520px; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.9rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-mid);
  box-shadow: var(--shadow-sm);
}
.chip svg { width: 15px; height: 15px; color: var(--amber); }

/* Hero portrait with rotated amber block + floating badge */
.hero-visual { position: relative; justify-self: end; width: min(400px, 100%); }
.amber-block {
  position: absolute;
  inset: -14px -18px auto auto;
  width: 78%;
  height: 84%;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  opacity: 0.28;
  border-radius: var(--radius-lg);
  transform: rotate(5deg);
  z-index: 0;
}
.portrait-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.float-badge {
  position: absolute;
  z-index: 2;
  left: -34px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 0.85rem 1.15rem;
  box-shadow: var(--shadow-lg);
  animation: floaty 5s ease-in-out infinite;
}
.float-badge svg { width: 26px; height: 26px; color: var(--amber-light); flex-shrink: 0; }
.float-badge strong { display: block; font-size: 0.86rem; line-height: 1.3; }
.float-badge span { display: block; font-size: 0.72rem; color: rgba(255, 255, 255, 0.65); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Credibility bar ---------- */
.cred-bar { background: var(--white); border-block: 1px solid var(--border); padding: 1.35rem 0; }
.cred-bar-inner { display: flex; justify-content: center; align-items: center; gap: 1.6rem 2.2rem; flex-wrap: wrap; }
.cred-item { display: flex; align-items: center; gap: 0.6rem; }
.cred-item svg { width: 19px; height: 19px; color: var(--amber); flex-shrink: 0; }
.cred-item span { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(232, 160, 32, 0.55); }
.card-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--amber-tint);
  border-radius: 12px;
  margin-bottom: 1rem;
  color: var(--amber);
}
.card-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }
.card h3 { margin-bottom: 0.45rem; font-size: 1.18rem; }
.card p { color: var(--grey); font-size: 0.94rem; margin-bottom: 1rem; flex: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 700; font-size: 0.9rem; color: var(--amber);
  margin-top: auto;
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Interior page hero ---------- */
.page-hero {
  background:
    radial-gradient(700px 380px at 92% -20%, rgba(232, 160, 32, 0.2), transparent 60%),
    var(--navy);
  color: var(--white);
  padding: 3.6rem 0 3.4rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.8rem; max-width: 780px; }
.page-hero .lead { color: rgba(255, 255, 255, 0.75); max-width: 640px; margin-bottom: 0; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; margin-bottom: 1.1rem; color: rgba(255, 255, 255, 0.6); flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--amber-light); }
.breadcrumb svg { width: 13px; height: 13px; }
.breadcrumb .current { color: var(--amber-light); }

/* ---------- Two-column content layout ---------- */
.layout-2col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  align-items: start;
  padding: 4rem 0 5rem;
}
.content-main > section { margin-bottom: 3.2rem; scroll-margin-top: calc(var(--header-h) + 20px); }
.content-main h2 { padding-top: 0.4rem; }
.content-main h3 { margin-top: 1.6rem; }
.content-main ul.bullet { list-style: none; margin: 0.8rem 0 1.2rem; }
.content-main ul.bullet li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  color: #33415c;
}
.content-main ul.bullet li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

/* Sticky sidebar */
.sidebar { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; gap: 1.3rem; }
.side-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}
.side-card h4 {
  font-family: var(--font-body);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.side-card h4 svg { width: 17px; height: 17px; color: var(--amber); }
.side-card ul li { margin-bottom: 0.15rem; }
.side-card ul a {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: #33415c;
  transition: background 0.2s, color 0.2s;
}
.side-card ul a:hover { background: var(--amber-tint); color: var(--navy); }
.side-card ul a svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; }
.side-card.support {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: none;
  color: rgba(255, 255, 255, 0.8);
}
.side-card.support h4 { color: var(--amber-light); }
.side-card.support h4 svg { color: var(--amber-light); }
.side-card.support p { font-size: 0.88rem; margin-bottom: 1rem; }
.side-card.support .btn { width: 100%; justify-content: center; padding: 0.65rem 1rem; font-size: 0.9rem; }

/* ---------- Warning box ---------- */
.warning-box {
  background: var(--amber-tint);
  border: 1px solid rgba(232, 160, 32, 0.4);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.4rem;
  margin: 1.4rem 0;
  display: flex;
  gap: 0.9rem;
}
.warning-box > svg { width: 24px; height: 24px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.warning-box strong { display: block; margin-bottom: 0.25rem; color: var(--navy); }
.warning-box p { font-size: 0.94rem; margin-bottom: 0.4rem; color: #4a3b1e; }
.warning-box p:last-child { margin-bottom: 0; }

/* ---------- DO / DON'T panels ---------- */
.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin: 1.6rem 0; }
.do-panel, .dont-panel {
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
}
.do-panel { border-left: 4px solid var(--green); background: var(--green-tint); }
.dont-panel { border-left: 4px solid var(--red); background: var(--red-tint); }
.do-panel h4, .dont-panel h4 {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.do-panel h4 { color: var(--green); }
.dont-panel h4 { color: var(--red); }
.do-panel h4 svg, .dont-panel h4 svg { width: 18px; height: 18px; }
.do-panel ul li, .dont-panel ul li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.93rem;
  margin-bottom: 0.55rem;
  color: #33415c;
}
.do-panel ul li::before, .dont-panel ul li::before {
  content: "";
  position: absolute; left: 0; top: 0.58em;
  width: 7px; height: 7px; border-radius: 50%;
}
.do-panel ul li::before { background: var(--green); }
.dont-panel ul li::before { background: var(--red); }

/* ---------- Numbered steps ---------- */
.steps { counter-reset: step; margin: 1.4rem 0; }
.step {
  position: relative;
  padding: 0 0 1.6rem 3.4rem;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--amber-light);
  font-weight: 700; font-size: 0.9rem;
  border-radius: 50%;
}
.step::after {
  content: "";
  position: absolute;
  left: 16px; top: 40px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--amber) 0%, var(--border) 100%);
}
.step:last-child::after { display: none; }
.step:last-child { padding-bottom: 0.4rem; }
.step h4 { font-family: var(--font-head); font-size: 1.12rem; margin-bottom: 0.3rem; }
.step p { font-size: 0.95rem; color: #33415c; margin-bottom: 0.3rem; }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin: 1.6rem 0; padding-left: 2rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--border-navy);
}
.timeline-item { position: relative; padding-bottom: 1.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--amber);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--amber);
}
.timeline-item h4 { display: flex; align-items: baseline; gap: 0.7rem; flex-wrap: wrap; }
.timeline-item .tl-when {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber);
}
.timeline-item p { font-size: 0.94rem; color: #33415c; margin-bottom: 0.2rem; }

/* ---------- Definition / statute callout ---------- */
.statute-box {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem;
  margin: 1.4rem 0;
  position: relative;
  overflow: hidden;
}
.statute-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--amber);
}
.statute-box .cite {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--amber-light);
  display: block;
  margin-bottom: 0.6rem;
}
.statute-box p { font-family: var(--font-head); font-style: italic; font-size: 1.06rem; line-height: 1.6; margin-bottom: 0.5rem; color: var(--white); }
.statute-box small { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }

/* ---------- Case-law cards ---------- */
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy-mid);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.case-card h4 { font-family: var(--font-head); font-size: 1.08rem; }
.case-card .court { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.45rem; display: block; }
.case-card p { font-size: 0.93rem; color: #33415c; margin-bottom: 0.3rem; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; margin: 1.4rem 0; border-radius: var(--radius); border: 1px solid var(--border); background: var(--white); }
table { width: 100%; border-collapse: collapse; font-size: 0.93rem; min-width: 560px; }
thead th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 0.8rem 1rem;
  font-size: 0.78rem; letter-spacing: 0.09em; text-transform: uppercase;
}
tbody td { padding: 0.85rem 1rem; border-top: 1px solid var(--border); color: #33415c; vertical-align: top; }
tbody tr:nth-child(even) { background: #fcfaf5; }
tbody td:first-child { font-weight: 600; color: var(--navy); }

/* ---------- FAQ accordion ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(232, 160, 32, 0.5); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
}
.faq-q svg { width: 20px; height: 20px; color: var(--amber); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 1.4rem 1.3rem; color: #33415c; font-size: 0.95rem; }
.faq-a-inner p { margin-bottom: 0.6rem; }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(600px 300px at 10% 120%, rgba(232, 160, 32, 0.18), transparent 60%),
    var(--navy);
  border-radius: var(--radius-lg);
  padding: 3.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--white);
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255, 255, 255, 0.72); margin-bottom: 0; max-width: 520px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.66); padding: 4rem 0 2rem; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.site-footer h4 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul li { margin-bottom: 0.55rem; }
.site-footer ul a { color: rgba(255, 255, 255, 0.66); transition: color 0.2s; }
.site-footer ul a:hover { color: var(--amber-light); }
.footer-contact { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a { display: inline-flex; align-items: center; gap: 0.55rem; color: rgba(255, 255, 255, 0.75); font-size: 0.88rem; }
.footer-contact a:hover { color: var(--amber-light); }
.footer-contact svg { width: 17px; height: 17px; color: var(--amber); flex-shrink: 0; }

/* ---------- Reassurance band (homepage) ---------- */
.reassure-band {
  background: linear-gradient(120deg, #dfe7f2 0%, #eef2f8 100%);
  padding: 4.5rem 0;
  text-align: center;
}
.reassure-band h2 { font-size: clamp(1.9rem, 4vw, 3rem); max-width: 900px; margin: 0 auto 0.9rem; }
.reassure-band p { color: var(--grey); max-width: 620px; margin: 0 auto; }

/* ---------- Contact cards ---------- */
.contact-card { display: flex; gap: 1rem; align-items: flex-start; }
.contact-card .card-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-card .contact-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 700; font-size: 0.9rem; color: var(--amber);
  margin-top: 0.4rem;
}
.contact-card .contact-link svg { width: 15px; height: 15px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.footer-disclaimer {
  background: rgba(232, 160, 32, 0.08);
  border: 1px solid rgba(232, 160, 32, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  max-width: 860px;
}

/* ---------- Misc ---------- */
.check-list li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  margin-bottom: 0.7rem;
  font-size: 0.95rem; color: #33415c;
}
.check-list svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem; font-weight: 600; color: var(--navy-mid);
}
.two-col-text { columns: 2; column-gap: 2.5rem; }
.icon-inline { display: inline-flex; vertical-align: -4px; width: 18px; height: 18px; color: var(--amber); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { gap: 2.5rem; }
  .layout-2col { grid-template-columns: minmax(0, 1fr) 280px; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1080px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 880px) {
  .hero { padding: 3.5rem 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { justify-self: center; margin-top: 1rem; }
  .float-badge { left: -8px; }
  .layout-2col { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .cred-bar-inner { gap: 1.4rem 2.2rem; }
  .cta-band { padding: 2.4rem 1.8rem; }
  .two-col-text { columns: 1; }
}
@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .section { padding: 3.4rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .do-dont { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cred-bar-inner { flex-direction: column; gap: 0.8rem; align-items: flex-start; padding-left: 4%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
