:root {
  --navy: #0c2067;
  --navy-deep: #071543;
  --orange: #ed5700;
  --orange-hover: #d94e00;
  --white: #ffffff;
  --ink: #0b1226;
  --muted: rgba(255,255,255,0.82);
  --shadow: 0 10px 30px rgba(11, 18, 38, 0.12);
  --shadow-lg: 0 20px 50px rgba(11, 18, 38, 0.14);
  --radius: 14px;
  --radius-lg: 20px;
  --max: 1260px;
  --font-heading: 'Source Serif 4', 'Georgia', serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  background: #f5f6fa;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute; left: -999px; top: 10px;
  background: var(--white); color: var(--navy);
  padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { left: 12px; z-index: 9999; }

header.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar{ background: transparent; }
.menubar{ background: rgba(255,255,255,0.03); border-top: 1px solid rgba(255,255,255,0.06); }

.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.header-actions{
  display:flex; align-items:center; gap:10px; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.brand img {
  height: 56px;
  width: auto;
  display: block;
}

/* Subtle separator so logo + name read as a single "lockup" */
.brand .brand-text {
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,.14);
}

/* Stronger brand hierarchy (desktop) */
.brand .name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.1;
}

.brand .tag {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.2;
}

@media (max-width: 720px) {
  .topbar-inner { padding: 12px 0; }
  .brand { gap: 10px; }
  .brand img { height: 48px; }
  .brand .brand-text { padding-left: 0; border-left: 0; }
  .brand .name { font-size: 18px; }
  .brand .tag { font-size: 12px; }
}


.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  color: var(--white);
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.88;
  padding: 10px 16px;
  border-radius: 8px;
  background: transparent;
  border: none;
  line-height: 1;
  transition: opacity .15s ease, background .15s ease;
  letter-spacing: 0.2px;
}

.nav a:hover {
  opacity: 1;
  background: rgba(255,255,255,0.08);
}

.nav a.active {
  opacity: 1;
  background: rgba(237,87,0,0.15);
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid var(--orange);
  border-radius: 8px 8px 0 0;
}

/* Desktop nav polish */
@media (min-width: 881px){
  .nav{ gap: 2px; padding: 0; }
  .nav a{ font-size: 15px; padding: 14px 22px; }

  .menubar .nav{
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    gap: 0;
  }
  .menubar .nav a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 22px;
  }
}

@media (max-width: 1100px) {
  .brand .tag { display: none; }
  .nav { justify-content: center; }
}

.header-cta {
  display: flex; align-items: center; gap: 6px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease, border .15s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn:active { transform: translateY(1px); }
.btn.primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(237,87,0,0.22);
}
.btn.primary:hover { background: var(--orange-hover); box-shadow: 0 8px 22px rgba(237,87,0,0.30); }
.btn.ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
}
.btn.ghost:hover { background: rgba(255,255,255,0.12); }

/* Ghost button variant for light backgrounds (e.g., home "How it works" call button) */
.btn.ghost.ghost-on-light{
  background:#ffffff;
  color:var(--navy);
  border-color: rgba(11,22,45,0.22);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}
.btn.ghost.ghost-on-light:hover{
  background: rgba(11,22,45,0.06);
  border-color: rgba(11,22,45,0.30);
}
.btn.ghost.ghost-on-light strong{ color: var(--orange); }

.burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.hero {
  background: 
    radial-gradient(ellipse 80% 60% at 15% 50%, rgba(237,87,0,0.12), transparent 50%),
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(255,255,255,0.06), transparent 50%),
    radial-gradient(ellipse 40% 50% at 70% 80%, rgba(237,87,0,0.06), transparent 50%),
    linear-gradient(170deg, #0a1850 0%, var(--navy-deep) 35%, #060e30 100%);
  color: var(--white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
/* Geometric grid pattern overlay */
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Subtle diagonal accent line */
.hero::before{
  content: "";
  position: absolute;
  top: -20%;
  left: 55%;
  width: 1px;
  height: 140%;
  background: linear-gradient(180deg, transparent 0%, rgba(237,87,0,0.15) 30%, rgba(237,87,0,0.08) 60%, transparent 100%);
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 0;
}
.hero .container{ position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 26px;
  align-items: start;
}
.hero h1 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.3px;
  font-weight: 700;
}
.hero p.lede {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  max-width: 62ch;
}
.hero .pill-row {
  display: flex; flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 22px;
}
.pill-row {
  display: flex; flex-wrap: wrap;
  gap: 8px;
}
.pill {
  background: rgba(12,32,103,0.06);
  border: 1px solid rgba(12,32,103,0.10);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(17,24,39,0.75);
  letter-spacing: 0.2px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.card.navy {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: none;
}

.section {
  padding: 54px 0;
}
.section h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.3px;
  font-weight: 700;
  line-height: 1.2;
}
.section p.sub {
  margin: 0 0 22px;
  color: rgba(11,18,38,0.72);
  max-width: 70ch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature {
  border: 1px solid rgba(11,18,38,0.10);
}
.feature h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
}
.feature p {
  margin: 0;
  color: rgba(11,18,38,0.72);
}
.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 8px;
}

.rich ul {
  margin: 12px 0 0;
  padding-left: 18px;
}
.rich li {
  margin: 8px 0;
  color: rgba(11,18,38,0.82);
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial {
  border: 1px solid rgba(11,18,38,0.10);
}
.testimonial blockquote {
  margin: 0;
  font-size: 15px;
  color: rgba(11,18,38,0.78);
}
.testimonial .who {
  margin-top: 12px;
  font-weight: 700;
}
.testimonial .meta {
  font-size: 12px;
  color: rgba(11,18,38,0.55);
}

/* Profile */
.profile {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: start;
}
.profile img {
  width: 180px;
  border-radius: 18px;
  border: 1px solid rgba(11,18,38,0.10);
  box-shadow: var(--shadow);
}

.cta-band {
  background: linear-gradient(135deg, var(--navy), #061039);
  color: var(--white);
  padding: 32px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}
.cta-inner h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
}
.cta-inner p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.85);
}

.form {
  display: grid;
  gap: 12px;
}
.input, textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(11,18,38,0.14);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  background: #fff;
}
textarea { min-height: 110px; resize: vertical; }
.input:focus, textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12,32,103,0.10);
}
.small {
  font-size: 13px;
  color: rgba(11,18,38,0.60);
}

footer {
  background: #050d2d;
  color: rgba(255,255,255,0.86);
  padding: 48px 0 32px;
}
footer a { color: rgba(255,255,255,0.92); transition: color .15s ease; }
footer a:hover { color: var(--orange); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
.footer-grid h4 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}
.footer-grid p { margin: 0 0 8px; color: rgba(255,255,255,0.75); font-size: 14px; }

/* --- Footer quick links 2-column layout --- */
.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 24px;
}
.footer-links-grid p {
  margin: 0 0 8px;
}
.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: space-between;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  font-size: 12px;
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .menubar .nav { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .header-cta { display: none; }

  .menubar { position: relative; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .profile { grid-template-columns: 1fr; }
  .profile img { width: min(260px, 100%); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
}


/* --- Meet Our Team --- */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.team-card{
  display:block;
  color: inherit;
  text-decoration:none;
  transition: transform .10s ease, box-shadow .15s ease, border-color .15s ease;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,var(--watermark-opacity));
}
.team-card:hover{ transform: translateY(-2px); border-color: rgba(237,87,0,0.35); box-shadow: 0 14px 34px rgba(0,0,0,var(--watermark-opacity)); }
.team-photo{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display:block;
}
.team-body{ padding: 16px 16px 18px; }
.team-role{
  margin: 6px 0 10px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.team-bio{ color: rgba(255,255,255,0.88); }
.team-cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
@media (max-width: 980px){
  .team-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .team-grid{ grid-template-columns: 1fr; }
}

/* Meet Our Team — list style (similar to modern firm “profile rows”) */
.team-tabs{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 18px;
}
/* NOTE: Scope “pill” styling for team tabs so it doesn't override the generic
   pills used in the hero/profile areas (which sit on light backgrounds). */
.team-tabs .pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration:none;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 700;
  letter-spacing: .2px;
}
.team-tabs .pill:hover{ border-color: rgba(237,87,0,0.5); transform: translateY(-1px); }
.team-tabs .pill.active{ background: rgba(237,87,0,0.16); border-color: rgba(237,87,0,0.55); }


/* Meet Our Team — inviting photo cards */
.team-grid{
  display:grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
}
.team-card{
  display:flex;
  flex-direction: column;
  text-decoration:none;
  color: inherit;
  border-radius: 22px;
  overflow:hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 40px rgba(0,0,0,var(--watermark-opacity));
  transition: transform .12s ease, box-shadow .15s ease, border-color .15s ease;
}
.team-card:hover{
  transform: translateY(-3px);
  border-color: rgba(237,87,0,0.40);
  box-shadow: 0 20px 55px rgba(0,0,0,var(--watermark-opacity));
}
.team-card-media{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: rgba(0,0,0,var(--watermark-opacity));
}
.team-card-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.team-card-body{ padding: 16px 16px 18px; }
.team-card-name{ font-size: 22px; font-weight: 950; letter-spacing: .2px; }
.team-card-role{ margin-top: 6px; font-weight: 850; color: rgba(255,255,255,0.86); }
.team-card-blurb{ margin: 10px 0 12px; color: rgba(255,255,255,0.88); }
.team-card-link{ display:inline-block; font-weight: 950; color: #ed5700; }

@media (max-width: 980px){
  .team-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .team-grid{ grid-template-columns: 1fr; }
  .team-card-media{ aspect-ratio: 1 / 1; }
}

/* Team directory (Meet Our Team) - light theme readability */
.page-team .team-card{
  background: #ffffff;
  border: 1px solid rgba(11,18,38,0.10);
  box-shadow: 0 14px 40px rgba(11,18,38,0.10);
}
.page-team .team-card:hover{
  border-color: rgba(237,87,0,0.40);
  box-shadow: 0 20px 55px rgba(11,18,38,0.14);
}
.page-team .team-card-role{ color: rgba(11,18,38,0.70); }
.page-team .team-card-blurb{ color: rgba(11,18,38,0.82); }

.team-list{ display:flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.team-row{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  text-decoration:none;
  color: inherit;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,var(--watermark-opacity));
  transition: transform .10s ease, box-shadow .15s ease, border-color .15s ease;
}
.team-row:hover{ transform: translateY(-2px); border-color: rgba(237,87,0,0.35); box-shadow: 0 16px 40px rgba(0,0,0,var(--watermark-opacity)); }
.team-row-photo{
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
}
.team-row-name{ font-size: 20px; font-weight: 900; letter-spacing: .2px; }
.team-row-role{ margin-top: 4px; font-weight: 800; color: rgba(255,255,255,0.86); }
.team-row-blurb{ margin: 10px 0 10px; color: rgba(255,255,255,0.88); }
.team-row-link{ display:inline-block; font-weight: 900; color: #ed5700; }

@media (max-width: 700px){
  .team-row{ grid-template-columns: 1fr; }
  .team-row-photo{ width: min(320px, 100%); height: auto; aspect-ratio: 1/1; }
}

/* Team directory (Meet Our Team) - light theme readability */
.page-team .team-row{
  background: #ffffff;
  border: 1px solid rgba(11,18,38,0.10);
  box-shadow: 0 10px 28px rgba(11,18,38,0.08);
}
.page-team .team-row:hover{
  border-color: rgba(237,87,0,0.35);
  box-shadow: 0 16px 40px rgba(11,18,38,0.12);
}
.page-team .team-row-photo{
  border: 1px solid rgba(11,18,38,0.10);
}
.page-team .team-row-role{ color: rgba(11,18,38,0.72); }
.page-team .team-row-blurb{ color: rgba(11,18,38,0.82); }
.page-team .team-tabs .pill{
  background: rgba(11,18,38,0.06);
  border: 1px solid rgba(11,18,38,0.12);
  color: rgba(11,18,38,0.82);
}
.page-team .team-tabs .pill:hover{ border-color: rgba(237,87,0,0.35); }
.page-team .team-tabs .pill.active{
  background: rgba(237,87,0,0.12);
  border-color: rgba(237,87,0,0.40);
  color: rgba(11,18,38,0.92);
}

/* Subtle logo watermark (add class="watermark-bg" to <body> on pages you want it) */
body.watermark-bg{ position: relative; }
body.watermark-bg::before{
  content:"";
  position: fixed;
  inset: 0;
  background-image: url("assets/claimhublegal-watermark.png");
  background-position: center;
  background-repeat: no-repeat;
  /* Larger watermark while staying responsive on mobile */
  background-size: var(--watermark-size);
opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
body.watermark-bg header,
body.watermark-bg main,
body.watermark-bg footer{
  position: relative;
  z-index: 1;
}

/* Header phone */
.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}
.header-phone{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  line-height:1;
  white-space:nowrap;
}
.header-phone .label{
  font-size:12px;
  font-weight:800;
  color: var(--orange);
  text-transform:uppercase;
  letter-spacing:0.08em;
}
.header-phone a{
  color: var(--white);
  font-weight:800;
  text-decoration:none;
}
.header-phone a:hover{
  text-decoration:underline;
}
@media (max-width: 880px){
  .header-phone{ display:flex; } /* keep header clean on small screens; can enable if you want */
}

/* Watermark controls (per-page) */
:root{
  --watermark-opacity: 0.07;
  --watermark-size: min(920px, 85vw);
  --watermark-y: 52%;
}
body.watermark-soft{ --watermark-opacity: 0.05; }
body.watermark-strong{ --watermark-opacity: 0.09; }
body.watermark-top{ --watermark-y: 38%; }

/* Nav hierarchy */
.menubar .nav a{
  font-weight: 700;
  letter-spacing: 0.2px;
}
.menubar .nav a.active{
  font-weight: 800;
}
.menubar{
  backdrop-filter: blur(8px);
}
@media (max-width: 880px){
  .menubar .nav a{ padding: 12px 14px; }
}

/* Header phone mobile tweaks */
@media (max-width: 880px){
  .header-actions{ gap:10px; flex-wrap:wrap; justify-content:flex-end; }
  .header-phone{ padding:8px 10px; }
  .header-phone .label{ font-size:12px; }
  .header-phone a{ font-size:14px; }
}

/* Mobile call bar */
.mobile-callbar{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 9999;
  display: none;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(10,10,12,0.88);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
}
.mobile-callbar a{
  color: var(--white);
  text-decoration:none;
  font-weight: 800;
}
.mobile-callbar .pill-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration:none;
  white-space: nowrap;
}
.mobile-callbar .pill-btn.call{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
}
.mobile-callbar .pill-btn.claim{
  background: var(--orange);
  color: #111;
}
@media (max-width: 880px){
  .mobile-callbar{ display:flex; }
  body{ padding-bottom: 92px; } /* make room for bar */
}

/* Slide-in CTA */
.cta-pop{
  position: fixed;
  right: 14px;
  bottom: 110px;
  z-index: 9998;
  width: min(360px, calc(100vw - 28px));
  display:none;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 55px rgba(0,0,0,0.18);
}
.cta-pop .x{
  position:absolute;
  top:10px; right:10px;
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.85);
  cursor:pointer;
}
.cta-pop h4{ margin: 0 44px 6px 0; font-size: 16px; }
.cta-pop p{ margin: 0 0 10px 0; color: rgba(0,0,0,0.75); font-size: 14px; }
.cta-pop .row{ display:flex; gap:10px; flex-wrap:wrap; }
.cta-pop .row a{ flex: 1; text-align:center; }
@media (max-width: 880px){
  .cta-pop{ display:none; }
}
/* Subtle reveals */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Fast assessment form */
.fast-form{
  display:grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}
.fast-form .grid{
  display:grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.fast-form input, .fast-form select, .fast-form textarea{
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.10);
  color: var(--white);
}
.fast-form input::placeholder, .fast-form textarea::placeholder{ color: rgba(255,255,255,0.7); }
.fast-form label{ font-weight: 800; font-size: 13px; color: rgba(255,255,255,0.92); }
.fast-form .actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 4px; }
.fast-form .note{ font-size: 13px; color: rgba(255,255,255,0.78); margin: 2px 0 0 0; }
@media (max-width: 880px){
  .fast-form .grid{ grid-template-columns: 1fr; }
}

/* Team placeholders */
.team-card-media{ position:relative; overflow:hidden; }
.soon-badge{
  position:absolute;
  left: 14px;
  top: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(237,87,0,0.92);
  color: #111;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.team-card.is-placeholder{ opacity: 0.92; }
.team-card.is-placeholder:hover{ transform: translateY(-2px); }

/* Fast assessment form (light cards) */
.card .fast-form{
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.08);
}
.card .fast-form input,
.card .fast-form select,
.card .fast-form textarea{
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.90);
}
.card .fast-form input::placeholder,
.card .fast-form textarea::placeholder{
  color: rgba(0,0,0,0.55);
}
.card .fast-form label{
  color: rgba(0,0,0,0.85);
}
.card .fast-form .note{
  color: rgba(0,0,0,0.65);
}

/* Hero responsive grid fix */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-grid > div{ width: 100%; }
}

/* Anchor offset so #contact-form doesn't sit under the header */
#contact-form{
  scroll-margin-top: 120px;
}

/* Claim check page */
.claim-type-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.claim-type{
  text-align:left;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.96);
  cursor:pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.claim-type .t{ font-weight: 900; font-size: 16px; margin-bottom: 4px; }
.claim-type .s{ color: rgba(0,0,0,0.68); font-size: 13px; }
.claim-type:hover{ transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.10); border-color: rgba(237,87,0,0.45); }
.claim-type.is-selected{ border-color: rgba(237,87,0,0.85); box-shadow: 0 16px 55px rgba(237,87,0,0.14); }
@media (max-width: 980px){
  .claim-type-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .claim-type-grid{ grid-template-columns: 1fr; }
}

/* Claim check wizard */
.wizard{ display:grid; gap:16px; }
.wizard-top{ display:flex; align-items:center; justify-content:flex-start; gap:16px; margin-bottom: 8px; }

.wizard-progress{ width:100%; display:flex; flex-direction:column; gap:10px; }
.wizard-progress-meta{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.wizard-progress-title{ font-weight: 900; font-size: 14px; }
.wstep > h3{ display: none; } /* Already shown in progress bar title */
.wizard-progress-count{ font-weight: 800; font-size: 13px; color: rgba(0,0,0,0.68); }
.wizard-progress-bar{ height: 10px; border-radius: 999px; background: rgba(0,0,0,0.08); overflow:hidden; border: 1px solid rgba(0,0,0,0.06); }
.wizard-progress-fill{ display:block; height:100%; width:25%; background: var(--orange); transition: width 200ms ease; }
.wizard-steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
}
.ws{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
}
.ws span{
  width: 28px; height: 28px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  background: rgba(0,0,0,0.06);
}
.ws div{ font-weight: 900; font-size: 13px; }
.ws.is-active{
  border-color: rgba(237,87,0,0.55);
  background: rgba(237,87,0,0.08);
}
.ws.is-active span{
  background: var(--orange);
  color: #111;
}
.wstep{ display:none; }
.wstep.is-active{ display:block; }
.w-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }
.w-dynamic{ margin-top: 8px; }
.q-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.q-btn{
  text-align:left;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.96);
  cursor:pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.q-btn strong{ display:block; font-size: 14px; margin-bottom: 4px; }
.q-btn span{ display:block; font-size: 12px; color: rgba(0,0,0,0.65); }
.q-btn:hover{ transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.10); border-color: rgba(237,87,0,0.45); }
.q-btn.is-selected{ border-color: rgba(237,87,0,0.85); box-shadow: 0 16px 55px rgba(237,87,0,0.14); }
@media (max-width: 980px){
  .wizard-steps{ grid-template-columns: 1fr 1fr; }
  .q-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .q-grid{ grid-template-columns: 1fr; }
}

/* Contrast fixes */
:root{
  --text-dark: rgba(0,0,0,0.88);
  --text-muted: rgba(0,0,0,0.68);
}

/* Any text inside light cards should not inherit white */
.card,
.card *{
  color: var(--text-dark);
}
.card p,
.card .lead,
.card .small,
.card li{
  color: var(--text-muted);
}
.card h1,.card h2,.card h3,.card h4,
.card .team-card-name,
.card .name{
  color: var(--text-dark);
}

/* Buttons inside cards keep their styling */
.card .btn.primary{ color: #111 !important; }
.card .btn.ghost{ color: var(--text-dark) !important; }
.card .btn.ghost{ background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.14); }
.card .btn.ghost:hover{ background: rgba(0,0,0,0.06); }

/* Team cards (on white background) */
.team-card-body p{ color: var(--text-muted); }
.team-card-role{ color: var(--text-muted); }

/* Wizard elements */
.q-btn strong{ color: var(--text-dark); }
.q-btn span{ color: var(--text-muted); }
.ws div{ color: var(--text-dark); }

/* Footer links */
.site-footer a{ color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.site-footer a:hover{ opacity: 0.9; }

/* Forms on light backgrounds */
.card .fast-form input,
.card .fast-form select,
.card .fast-form textarea{
  color: var(--text-dark);
}

/* High visibility phone number (homepage How it works) */
.hi-vis-call{
  color: var(--orange);
  font-weight: 900;
  font-size: 1.05em;
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
}

/* Home services tiles */
.services-tiles{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.service-tile{
  display:block;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.98);
  text-decoration:none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  color: rgba(0,0,0,0.88);
}
.service-icon{
  width: 44px; height: 44px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 14px;
  background: rgba(237,87,0,0.10);
  border: 1px solid rgba(237,87,0,0.18);
  font-size: 20px;
}
.service-title{
  margin-top: 10px;
  font-weight: 900;
  font-size: 16px;
}
.service-text{
  margin-top: 6px;
  color: rgba(0,0,0,0.68);
  font-size: 13px;
  line-height: 1.45;
}
.service-tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.10);
  border-color: rgba(237,87,0,0.45);
}

.services-badges{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.badge{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(237,87,0,0.10);
  border: 1px solid rgba(237,87,0,0.18);
  font-weight: 900;
  color: rgba(0,0,0,0.82);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.services-cta{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 16px;
}

@media (max-width: 980px){
  .services-tiles{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .services-tiles{ grid-template-columns: 1fr; }
  .service-tile{ padding: 14px; }
}

/* Footer fixes */
.site-footer img{
  max-width: 160px;
  height: auto;
  width: 100%;
  object-fit: contain;
}

/* Footer location / availability text */
.site-footer .footer-small,
.site-footer .footer-meta,
.site-footer p{
  color: rgba(255,255,255,0.78);
}

/* Footer smart polish */
.site-footer{
  background: linear-gradient(180deg, rgba(10,10,10,0.98), rgba(5,5,5,1));
}

.site-footer .footer-grid{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
}

.site-footer .footer-brand{
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 6px;
}

.site-footer p{
  line-height: 1.55;
}

.site-footer .footer-title{
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.site-footer a{
  display:inline-block;
  margin-bottom: 6px;
}

.site-footer a:hover{
  color: var(--orange);
}

.site-footer .footer-divider{
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 18px 0;
}

.site-footer .footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.site-footer .footer-bottom small{
  color: rgba(255,255,255,0.6);
}

.site-footer .footer-phone{
  font-size: 16px;
  font-weight: 900;
}

.site-footer .footer-phone a{
  color: var(--orange);
}

/* Mobile footer */
@media (max-width: 880px){
  .site-footer .footer-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .site-footer{
    text-align:center;
  }
  .site-footer .footer-bottom{
    justify-content:center;
  }
}

/* Interaction polish */
.service-tile, .team-card, .q-btn, .claim-type, .btn{
  -webkit-tap-highlight-color: transparent;
}
.service-tile:active,
.team-card:active,
.q-btn:active,
.claim-type:active{
  transform: translateY(0) scale(0.99);
}
.btn{
  transition: transform 140ms ease, box-shadow 180ms ease, opacity 180ms ease;
}
.btn:active{
  transform: translateY(1px);
}

/* Mobile usability sweep */
.btn{
  min-height: 48px;
}
.btn.primary, .btn.ghost{
  padding: 12px 16px;
}
.nav a{
  min-height: 44px;
}
input, select, textarea{
  font-size: 16px; /* prevents iOS zoom */
}
@media (max-width: 880px){
  .pill{ padding: 10px 12px; }
  .pill-row .pill{ padding: 6px 12px; font-size: 12px; }
  .burger{ min-width: 44px; min-height: 44px; }
  .header-cta .btn{ min-height: 46px; }
  .mobile-callbar .pill-btn{ min-height: 50px; }
  .section{ padding-top: 44px; padding-bottom: 44px; }
}

/* Trust strip */
.trust-strip{
  background: rgba(0,0,0,0.92);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.trust-strip .container{
  padding-top: 18px;
  padding-bottom: 18px;
}
.trust-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.trust-item{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.trust-icon{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(237,87,0,0.14);
  border: 1px solid rgba(237,87,0,0.20);
  flex: 0 0 auto;
  font-size: 16px;
}
.trust-item strong{
  display:block;
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  margin-bottom: 3px;
}
.trust-item span{
  display:block;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  line-height: 1.45;
}
@media (max-width: 880px){
  .trust-grid{ grid-template-columns: 1fr; }
  .trust-item{ padding: 14px; }
}

/* Footer logo/meta fixes (legacy footer) */
footer .footer-logo{
  height: 54px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display:block;
}
footer .footer-meta{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap:8px;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  border-left: 3px solid #ed5700;
  padding-left: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2px;
  font-size: 12px;
  letter-spacing: 0.02em;
}
footer .footer-meta::before{
  content: "•";
  color: var(--orange);
  font-weight: 900;
}

/* Wizard back button */
.wstep[data-step="4"] .actions{
  justify-content: flex-start;
}

/* Wizard checkbox alignment */
.wstep .consent{
  display: flex;
  align-items: center;
  gap: 10px;
}
.wstep .consent input[type="checkbox"]{
  margin: 0;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.wstep .consent label{
  margin: 0;
  line-height: 1.4;
  cursor: pointer;
}

/* Keep 'Coming soon' badge in place */
.soon-badge{
  z-index: 2;
  pointer-events: none;
}
.team-card-media img{ display:block; width:100%; height:auto; }

/* Footer layout tidy */
footer{
  background: linear-gradient(180deg, rgba(10,10,10,0.98), rgba(5,5,5,1));
}
footer .container{
  max-width: 1120px;
}
footer .footer-grid{
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}
/* Prevent the first column from stretching oddly */
footer .footer-grid > div{
  min-width: 0;
}
/* Balance bottom row so it doesn't leave a big empty right edge */
footer .footer-bottom{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 10px;
}
@media (min-width: 980px){
  footer .footer-bottom{
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  footer .footer-bottom > div:last-child{
    justify-self: end;
    text-align: right;
    max-width: 560px;
  }
}
@media (max-width: 980px){
  footer .footer-bottom{
    text-align: center;
  }
}

/* WorkCover page redesign */
.wc-hero{ padding: 56px 0 48px; }
.wc-hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.wc-points{
  margin-top: 14px;
  display:grid;
  gap: 8px;
}
.wc-point{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 10px 12px;
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  font-size: 13px;
}
.wc-hero-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 16px;
}
.wc-disclaimer{ margin-top: 12px; color: rgba(255,255,255,0.75); }
.wc-side{ position: relative; }
.wc-side-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.wc-side-divider{ height:1px; background: rgba(0,0,0,0.08); margin: 14px 0; }
.wc-mini ul{ margin: 10px 0 0 0; padding-left: 18px; }
.wc-mini li{ margin: 6px 0; }

.wc-steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.wc-callout{
  margin-top: 16px;
  border-radius: 18px;
  border: 1px solid rgba(237,87,0,0.25);
  background: rgba(237,87,0,0.10);
  padding: 14px;
}
.wc-callout-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}
.wc-callout strong{ color: rgba(0,0,0,0.86); }
.wc-callout span{ color: rgba(0,0,0,0.68); display:block; margin-top: 2px; }

/* reuse service tiles but allow on this page */
.wc-tiles{ margin-top: 18px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

/* FAQ */
.faq details{
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  padding: 12px 14px;
  margin-bottom: 10px;
}
.faq summary{
  cursor:pointer;
  font-weight: 900;
  color: rgba(0,0,0,0.86);
  list-style: none;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary:after{
  content: "+";
  float:right;
  font-weight: 900;
  color: rgba(0,0,0,0.60);
}
.faq details[open] summary:after{ content: "–"; }
.faq-body{ margin-top: 10px; color: rgba(0,0,0,0.72); }
.wc-final-cta{ margin-top: 18px; }

@media (max-width: 980px){
  .wc-hero-grid{ grid-template-columns: 1fr; }
  .wc-steps{ grid-template-columns: 1fr; }
  .wc-tiles{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .wc-tiles{ grid-template-columns: 1fr; }
}

/* Process timeline */
.process-timeline{
  display:grid;
  gap: 12px;
  margin-top: 16px;
}
.pt-step{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.96);
}
.pt-num{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  background: rgba(237,87,0,0.10);
  border: 1px solid rgba(237,87,0,0.18);
}
.pt-body h3{ margin: 0 0 4px 0; }
.pt-body p{ margin: 0; color: rgba(0,0,0,0.72); }



/* === Mobile call bar polish (prevents bleed-through) === */
@media (max-width: 880px){
  /* Reserve space so content doesn't sit under the fixed bar */
  body{ padding-bottom: 110px; }

  .mobile-callbar{
    background: #0b0b12 !important;   /* opaque so text behind doesn't show through */
    border: 1px solid rgba(255,255,255,0.14) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45) !important;
  }
  .mobile-callbar .pill-btn.call{
    background: rgba(255,255,255,0.10) !important;
    border: 1px solid rgba(255,255,255,0.16) !important;
  }
}

/* Mobile callbar disabled (mobile only) */
@media (max-width: 880px){
  .mobile-callbar{ display:none !important; }
  .mobile-pop{ display:none !important; }
}


/* Hide mobile drawer on desktop (drawer is mobile-only) */
.drawer-backdrop,
.nav-drawer{
  display: none;
}
body.drawer-open .drawer-backdrop,
body.drawer-open .nav-drawer{
  display: block;
}

/* Mobile-only Shine-style nav drawer (does not affect desktop) */
@media (max-width: 820px){
  .drawer-backdrop{
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
    z-index: 9998;
  }
  .nav-drawer{
    position: fixed;
    top: 0; right: 0;
    width: min(420px, 92vw);
    height: 100vh;
    background: #0b1f4d;
    color: #fff;
    transform: translateX(102%);
    transition: transform .22s ease;
    z-index: 9999;
    box-shadow: -20px 0 60px rgba(0,0,0,0.35);
    display:flex;
    flex-direction: column;
    padding: 18px 16px 16px;
    overflow: hidden;
  }
  body.drawer-open .drawer-backdrop{
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  body.drawer-open .nav-drawer{
    transform: translateX(0);
  }
  body.drawer-open{ overflow:hidden; }

  .drawer-top{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .drawer-brand{ display:flex; align-items:center; gap: 10px; }
  .drawer-brand img{ border-radius: 12px; }
  .drawer-name{ font-weight: 900; letter-spacing: -0.02em; }
  .drawer-tag{ font-size: 13px; opacity: .82; margin-top: 2px; }

  .drawer-close{
    width: 44px; height: 44px; border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    color:#fff;
    font-size: 16px;
  }

  .drawer-actions{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 0 8px;
    width: 100%;
  }
  .drawer-call{
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 6px;
    padding: 12px 6px;
    min-height: 52px;
    font-size: 14px;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.18);
    background: linear-gradient(180deg, #0b1f4d 0%, #08173a 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
    font-weight: 900;
    text-decoration: none;
    color:#fff;
    white-space: nowrap;
    min-width: 0;
  }
  .drawer-call .word{
    color: var(--orange);
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .drawer-call .num{
    font-size: 13px;
    letter-spacing: 0.01em;
  }
  .drawer-cta{
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 12px 6px;
    min-height: 52px;
    font-size: 14px;
    border-radius: 16px;
    background: var(--orange);
    color:#fff;
    font-weight: 900;
    text-decoration:none;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }

  .drawer-nav{
    display:flex;
    flex-direction: column;
    /* Match spacing used in the expanded “More” section so all buttons feel consistent */
    gap: 9px;
    padding: 6px 0;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .drawer-nav a,
.drawer-link{
    display:flex;
    align-items:center;
    justify-content: space-between;
    /* Standardise sizing across primary links + “More” links */
    width: 100%;
    box-sizing: border-box;
    /* Thumb-friendly but compact targets on mobile */
    padding: 15px 16px;
    min-height: 50px;
    font-size: 16px;
    border-radius: 14px;
    color:#fff;
    text-decoration:none;
    font-weight: 800;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .drawer-nav a:hover,
.drawer-link:hover{ background: rgba(255,255,255,0.10); }
  .drawer-nav a.active,
.drawer-link.active{
    border-color: rgba(255,255,255,0.24);
    background: rgba(255,255,255,0.10);
  }

  

/* Drawer "More" grouping */
.drawer-more{margin-top:12px;display:flex;flex-direction:column;}
/* The "More" toggle is a <button>, so it needs a little extra reset to match the other drawer links */
.drawer-more-toggle{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font: inherit;
  /* Match the normal drawer-link sizing */
  line-height: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.drawer-chevron{display:inline-block;transition:transform .2s ease;}
.drawer-more-toggle[aria-expanded="true"] .drawer-chevron{transform:rotate(180deg);}
.drawer-more-panel{margin-top:10px;display:flex;flex-direction:column;gap:12px;padding-left:0;}
.drawer-more-panel .drawer-link{opacity:.95;}
/* Ensure the JS `panel.hidden = true/false` actually hides/shows the panel.
   Author styles can override the browser default `[hidden]{display:none}`, so re-assert it here. */
.drawer-more-panel[hidden]{display:none !important;}

.drawer-footer{
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.10);
    display:flex;
    gap: 10px;
    justify-content:center;
    font-size: 13px;
    opacity: .85;
  }
  .drawer-footer a{ color:#fff; }
}

/* Disable slide-in CTA pop (mobile) */
.cta-pop{ display:none !important; }


/* Mobile drawer polish */
@media (max-width: 820px){
  .nav-drawer{
    padding: 16px 14px 14px;
  }
  .drawer-top{
    padding-bottom: 10px;
  }
  .drawer-brand{
    gap: 12px;
  }
  .drawer-name{
    font-size: 16px;
    line-height: 1.1;
  }
  .drawer-tag{
    font-size: 12px;
    opacity: .78;
  }
  .drawer-close{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 20px;
    line-height: 1;
  }

  /* Reduce any accidental horizontal overflow */
  .nav-drawer *{ box-sizing: border-box; }
}



/* Fees page layout (Shine-style in-page navigation) */
.fees-hero-grid{ align-items: start; }
.fees-side .fees-nav{ display:flex; flex-direction: column; gap: 8px; margin: 10px 0 14px; }
.fees-side .fees-nav a{
  color:#fff; text-decoration:none; font-weight: 800;
  padding: 10px 12px; border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.fees-side .fees-nav a:hover{ background: rgba(255,255,255,0.10); }
.fees-side-cta{ display:flex; gap: 10px; margin-top: 6px; }

.fees-layout{ display:block; }
.fees-content{ max-width: 920px; }
.fees-block{ padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.fees-block h2{ margin: 0 0 10px; }
.bullets{ margin: 10px 0 0; padding-left: 18px; }
.note{ margin-top: 10px; opacity: .88; }
.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 12px; }
.faq-list{ display:grid; gap: 10px; margin-top: 12px; }
.faq-item{ border-radius: 16px; border: 1px solid rgba(0,0,0,0.08); background: rgba(255,255,255,0.85); overflow:hidden; }
.faq-item summary{ cursor:pointer; padding: 14px 14px; font-weight: 900; }
.faq-body{ padding: 0 14px 14px; }
.fees-bottom-cta{ display:flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }

@media (max-width: 900px){
  .grid-2{ grid-template-columns: 1fr; }
}


/* Fix: Fees page 'On this page' links were invisible on light card background */
.fees-side .fees-nav a{
  color: #0b1b3a;
  background: rgba(11,27,58,0.06);
  border: 1px solid rgba(11,27,58,0.12);
}
.fees-side .fees-nav a:hover{ background: rgba(11,27,58,0.10); }
.fees-side .kicker, .fees-side .small{ color: rgba(11,27,58,0.82); }




/* Fix: Burger icon bars layout (stack vertically like other pages) */
.burger{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}
.burger span{
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.20);
}

/* Standardise burger icon markup (used across all pages) */
.burger{
  font-size: 0; /* prevents glyph sizing differences when older pages used ☰ */
}
.burger span{
  pointer-events: none;
}




/* === Bio pages: ensure ghost buttons (e.g. CALL) have readable contrast on light hero background === */
.page-hero .btn.ghost{
  color: var(--text-dark) !important;
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.14);
}
.page-hero .btn.ghost:hover{
  background: rgba(0,0,0,0.06);
}


/* === Contrast fix: pill badges on dark hero sections === */
.hero .pill{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
}
.hero .pill:hover{
  background: rgba(255,255,255,0.12);
}


/* === Fix: Meet Our Team CTA ghost button contrast on light background === */
.page-team .team-cta .btn.ghost{
  background: rgba(0,0,0,0.03);
  color: var(--text-dark);
  border-color: rgba(0,0,0,0.14);
}
.page-team .team-cta .btn.ghost:hover{
  background: rgba(0,0,0,0.06);
}


/* ===== Premium Offices Card Grid (Contact page) ===== */
.offices-premium{ background: linear-gradient(180deg, #f7f8fb 0%, #fff 100%); padding: 56px 0; }
.offices-header{ text-align: center; margin-bottom: 36px; }
.offices-header h2{ margin: 0 0 8px; }
.offices-header .lede{ color: rgba(11,18,38,0.60); max-width: 52ch; margin: 0 auto; }

.offices-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.office-card{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
  border: 1px solid rgba(15,23,42,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.office-card:hover{
  box-shadow: 0 8px 40px rgba(15,23,42,0.12), 0 2px 8px rgba(15,23,42,0.06);
  transform: translateY(-3px);
}
.office-card--featured{
  border-color: rgba(237,87,0,0.18);
  box-shadow: 0 2px 20px rgba(237,87,0,0.08), 0 1px 3px rgba(15,23,42,0.04);
}
.office-card-map{
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #eef0f5;
}
.office-card-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.office-card-badge{
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 6px;
  z-index: 2;
}
.office-card-body{
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.office-card-city{
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(237,87,0,0.12);
}
.office-card-detail{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(11,18,38,0.72);
  line-height: 1.5;
}
.office-card-detail svg{
  flex: 0 0 16px;
  margin-top: 2px;
  color: var(--orange);
}
.office-card-detail a{
  color: var(--navy-deep);
  font-weight: 600;
  text-decoration: none;
}
.office-card-detail a:hover{ color: var(--orange); text-decoration: underline; }
.office-card-detail .sep{
  color: rgba(11,18,38,0.2);
  margin: 0 3px;
}
.office-card-actions{
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  gap: 8px;
}
.office-card-actions .btn{
  flex: 1;
  justify-content: center;
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 10px;
}

/* Shared contact bar below cards */
.offices-shared-bar{
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 18px 24px;
  background: rgba(7,15,43,0.03);
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.05);
}
.offices-shared-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(11,18,38,0.65);
}
.offices-shared-item svg{
  color: var(--orange);
  flex: 0 0 18px;
}
.offices-shared-item a{
  color: var(--navy-deep);
  font-weight: 600;
  text-decoration: none;
}
.offices-shared-item a:hover{ text-decoration: underline; }
.offices-shared-item .sep{
  color: rgba(11,18,38,0.2);
  margin: 0 3px;
}

@media (max-width: 1024px){
  .offices-grid{ grid-template-columns: 1fr 1fr; }
  .offices-grid .office-card:last-child{ grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 680px){
  .offices-grid{ grid-template-columns: 1fr; }
  .offices-grid .office-card:last-child{ max-width: none; }
  .offices-shared-bar{ flex-direction: column; gap: 12px; text-align: center; justify-content: flex-start; }
  .offices-shared-item{ justify-content: center; }
}


/* Inline links used in contact cards */
.inline-link{
  color: rgba(11,55,110,0.96);
  text-decoration: none;
  font-weight: 700;
}
.inline-link:hover{ text-decoration: underline; }

/* Desktop: hide hamburger/burger button (mobile drawer only) */
@media (min-width: 821px){
  .burger{ display: none !important; }
}


/* ===============================
   Hero backgrounds — clean gradient with geometric accent
   =============================== */

/* Base hero handled at line ~222. Page-specific tints only: */
body[data-page="workcover"] .hero{
  background: 
    radial-gradient(ellipse 70% 60% at 20% 40%, rgba(237,87,0,0.10), transparent 50%),
    linear-gradient(170deg, #0a1850 0%, var(--navy-deep) 40%, #060e30 100%);
}
body[data-page="about"] .hero{
  background: 
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(255,255,255,0.05), transparent 50%),
    linear-gradient(170deg, #0a1850 0%, var(--navy-deep) 40%, #060e30 100%);
}
body[data-page="contact"] .hero{
  background: 
    radial-gradient(ellipse 50% 50% at 30% 60%, rgba(237,87,0,0.08), transparent 50%),
    linear-gradient(170deg, #0a1850 0%, var(--navy-deep) 40%, #060e30 100%);
}









/* Wider, more premium layout on large screens */
@media (min-width: 900px){
  .nav{
    justify-content: space-between;
    gap: 12px;
  }
  .nav a{
    padding: 12px 16px;
    font-size: 14.5px;
  }
}
/* Slightly reduce boxed feel by increasing side padding on very large screens */
@media (min-width: 1400px){
  .container{
    width: min(var(--max), calc(100% - 80px));
  }
}


/* Trust strip */
.trust-strip {
  background: #f6f8fb;
  padding: 16px 0;
}
.trust-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  font-weight: 600;
  color: #0b2a5a;
}

/* Hero z-index management */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Trust strip */
.trust-band{
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(11,18,38,0.08);
  color: var(--white);
}
.trust-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px 0;
}
.trust-item{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(7,21,67,0.28);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}
.trust-icon{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(243,107,10,0.16);
  border: 1px solid rgba(243,107,10,0.24);
}
.trust-icon svg{ fill: #fff; opacity: 0.95; }
.trust-title{ font-weight: 800; font-size: 14px; line-height: 1.15; }
.trust-sub{ font-size: 12px; opacity: 0.9; margin-top: 2px; }
.trust-sub a{ color: #fff; }
@media (max-width: 980px){
  .trust-row{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .trust-row{ grid-template-columns: 1fr; }
  .trust-item{ padding: 12px; }
}

/* Center header title: No Win, No Fee */
.topbar-inner{
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
}
.header-center-title{
  text-align:center;
  font-family: var(--font-heading);
  font-weight:700;
  letter-spacing:1px;
  color:#ffffff;
  opacity:0.90;
  font-size:17px;
  font-style: italic;
}
@media (max-width: 900px){
  .header-center-title{
    display:none;
  }
}

/* Premium Why Us */
.kicker{ letter-spacing: 2px; text-transform: uppercase; opacity: .75; }
.section .card.feature.rich{ border: 1px solid rgba(255,255,255,0.08); }
.section .grid-2{ gap: 22px; align-items: stretch; }
.section .card.feature.rich{
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(10,18,40,0.10);
}
.section .card.feature.rich h3{
  font-size: 18px;
  margin-bottom: 14px;
}
.icon-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.icon-li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(10,40,90,0.04);
  border: 1px solid rgba(10,40,90,0.06);
}
.icon-li .icon{
  width:34px; height:34px;
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(243,107,10,0.12);
  border: 1px solid rgba(243,107,10,0.18);
  flex: 0 0 34px;
  margin-top:2px;
}
.icon-li .icon svg{ width:18px; height:18px; fill: rgba(10,18,40,0.88); }
.icon-li .txt{ line-height:1.35; }
.mini-trust{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:10px;
  margin-bottom: 18px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  max-width: fit-content;
}
.mini-trust strong{ font-weight:800; }
.mini-trust .dot{ opacity:.55; }
.testimonials .card.testimonial{
  background: rgba(10,18,40,0.04);
  border: 1px solid rgba(10,18,40,0.06);
  border-radius: 16px;
  box-shadow: none;
}
.testimonials blockquote{
  font-size: 15px;
  line-height: 1.5;
}

/* Premium Client Feedback */
.whyus-grid{ display:grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.whyus-grid > *{ min-height: 100%; }
.client-feedback-card{ height: 100%; display:flex; flex-direction:column; }
.client-feedback-card .feedback-head{ margin-top: 6px; margin-bottom: 14px; }
.client-feedback-card .stars{
  display:flex; align-items:center; gap:6px;
  font-weight: 800;
  letter-spacing: .2px;
}
.client-feedback-card .stars .star{
  font-size: 14px;
  line-height: 1;
  opacity: .95;
}
.client-feedback-card .stars .rating-text{
  margin-left: 8px;
  font-size: 14px;
  opacity: .85;
  font-weight: 700;
}
.client-feedback-card .feedback-sub{
  font-size: 13px;
  opacity: .75;
  margin-top: 6px;
}
.client-feedback-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.90));
  border: 1px solid rgba(10,18,40,0.08);
}
.client-feedback-card .card.testimonial{
  position: relative;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(10,18,40,0.06);
  border-radius: 16px;
  padding: 18px 18px 16px 18px;
}
.client-feedback-card .card.testimonial + .card.testimonial{ margin-top: 14px; }
.client-feedback-card .quote-mark{
  position:absolute;
  top: 10px;
  right: 14px;
  font-size: 42px;
  line-height: 1;
  opacity: .12;
  font-weight: 900;
}
.client-feedback-card .mini-stars{
  display:flex;
  gap:4px;
  font-size: 12px;
  opacity: .8;
  margin-bottom: 10px;
}
.client-feedback-card blockquote{
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 12px 0;
}
.client-feedback-card .meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(10,18,40,0.06);
}
@media (max-width: 900px){
  .whyus-grid{ grid-template-columns: 1fr; }
  .client-feedback-card{ margin-top: 18px; }
}


/* v2: reduce feedback column height + add premium colour accents */
.client-feedback-card {
  height: auto !important;
  align-self: start;
  border-top: 3px solid rgba(255,122,24,0.75);
  background:
    radial-gradient(1200px 500px at 0% 0%, rgba(255,122,24,0.10), rgba(255,255,255,0.0) 55%),
    radial-gradient(900px 450px at 100% 0%, rgba(10,35,90,0.10), rgba(255,255,255,0.0) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.90));
}

.client-feedback-card .stars .star,
.client-feedback-card .mini-stars span {
  color: #F4C84B;
  text-shadow: 0 1px 0 rgba(0,0,0,0.10);
}

.client-feedback-card .quote-mark {
  color: rgba(10,18,40,0.22);
  opacity: .18;
}

.client-feedback-card .card.testimonial {
  background: rgba(255,255,255,0.82);
}

.client-feedback-card .feedback-sub {
  max-width: 40ch;
}

/* Keep the whole section from stretching to the taller column */
.whyus-grid { align-items: start !important; }

/* Testimonials are displayed in an auto-scrolling list (do not hide items). */

/* Add a soft divider line between columns for polish */
@media (min-width: 901px) {
  .whyus-grid::before {
    content:"";
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:1px;
    background: rgba(10,18,40,0.05);
    transform: translateX(-0.5px);
    pointer-events:none;
  }
  .whyus-grid { position: relative; }
}

/* Client Feedback Scroll */
.client-feedback-card{ position: relative; }
.client-feedback-scroll{
  overflow-y: auto;
  padding-right: 6px;
  margin-top: 10px;
  /* Height tuned to match the left 'Why choose' panel on desktop */
  max-height: 520px;
}
/* Subtle scrollbar styling (webkit browsers) */
.client-feedback-scroll::-webkit-scrollbar{ width: 10px; }
.client-feedback-scroll::-webkit-scrollbar-track{ background: rgba(10,18,40,0.06); border-radius: 999px; }
.client-feedback-scroll::-webkit-scrollbar-thumb{ background: rgba(10,18,40,0.18); border-radius: 999px; }
.client-feedback-scroll::-webkit-scrollbar-thumb:hover{ background: rgba(10,18,40,0.26); }

/* Stars in gold */
.client-feedback-card .stars .star,
.client-feedback-card .mini-stars span{
  color: #f6c343; /* warm gold */
  text-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* Keep scroll natural on mobile */
@media (max-width: 900px){
  .client-feedback-scroll{ height: auto; max-height: none; overflow: visible; padding-right: 0; }
}

/* Client Feedback AutoScroll */
.client-feedback-scroll{
  height: 520px;
  overflow: hidden; /* hide scrollbar; auto scroll */
  position: relative;
}
.client-feedback-track{
  display: flex;
  flex-direction: column;
  gap: 16px; /* ensures even spacing and seamless looping */
  padding: 0;
  margin: 0;
  will-change: transform;
}

/* Remove stacked margin spacing when using flex+gap */
.client-feedback-card .card.testimonial{ margin: 0; }
.client-feedback-card .card.testimonial + .card.testimonial{ margin-top: 0; }
/* Pause animation on hover (optional) */
.client-feedback-scroll:hover .client-feedback-track{
  animation-play-state: paused;
}
@media (max-width: 900px){
  .client-feedback-scroll{ height: auto; max-height: none; overflow: visible; }
  .client-feedback-track{ animation: none !important; transform: none !important; }
}

/* === PROFESSIONAL POLISH (v2 upgrade) === */

/* Credential badges in footer */
.footer-credentials{
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
}
.credential-badges{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.credential-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.3px;
}

/* Heading font applied globally to h1-h4 */
h1, h2, h3 {
  font-family: var(--font-heading);
}

/* Section heading polish */
.section-head h2,
.section h2 {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Page hero heading */
.page-hero h1{
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Form select styling */
select {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(11,18,38,0.14);
  background: #fff;
  outline: none;
  width: 100%;
  transition: border-color .15s ease;
}
select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12,32,103,0.10);
}

/* Smoother card transitions */
.card {
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover {
  box-shadow: var(--shadow-lg);
}

/* Feature card border refinement */
.feature {
  border: 1px solid rgba(11,18,38,0.08);
  border-radius: var(--radius);
}

/* Inline link styling */
.inline-link {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .15s ease;
}
.inline-link:hover {
  color: var(--orange-hover);
}

/* Trust band refinement */
.trust-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
}

/* Professional hero pill (on dark bg) */
.hero .pill-row .pill{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
}

/* Section background alternation */
.credentials-section{
  background: #fff;
}

/* Team card names use heading font */
.team-card-name{
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Drawer styling update */
.drawer-name{
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Smooth link underline on hover for footer */
footer a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* Better checklist styling */
.checklist {
  list-style: none;
  padding-left: 0 !important;
}
.checklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.90);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Services tile heading */
.service-title{
  font-family: var(--font-heading);
  font-weight: 700;
}

/* CTA band polish */
.cta-band h3{
  font-family: var(--font-heading);
}

/* Wizard headings */
.wizard h3,
.wizard-progress-title{
  font-family: var(--font-heading);
}

/* =========================================
   V3 PROFESSIONAL UPGRADE
   ========================================= */

/* --- Stats Band --- */
.stats-band{
  background: linear-gradient(135deg, var(--navy) 0%, #0a1a55 100%);
  color: #fff;
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before{
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,87,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.stats-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item{
  text-align: center;
  padding: 12px 40px;
  flex: 0 0 auto;
}
.stat-number{
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--orange);
}
.stat-label{
  font-size: 13px;
  opacity: 0.80;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.stat-divider{
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 700px){
  .stats-row{ flex-wrap: wrap; gap: 4px; }
  .stat-item{ padding: 10px 20px; flex: 1 0 40%; }
  .stat-divider{ display: none; }
}

/* --- Timeline Steps --- */
.how-section{ background: #fff; }
.timeline-steps{
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 680px;
  margin: 24px auto 0;
}
.timeline-steps::before{
  content: "";
  position: absolute;
  left: 23px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange) 0%, rgba(237,87,0,0.15) 100%);
  z-index: 0;
}
.timeline-step{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding: 8px 0;
}
.timeline-marker{
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(237,87,0,0.25), 0 0 0 5px rgba(237,87,0,0.08);
}
.timeline-content{
  flex: 1;
  padding: 20px 24px !important;
  position: relative;
}
.timeline-content h3{
  margin: 0 0 6px;
  font-size: 18px;
}
.timeline-content p{
  margin: 0;
  color: rgba(11,18,38,0.70);
}
.timeline-icon{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  opacity: 0.45;
}
@media (max-width: 600px){
  .timeline-steps::before{ left: 19px; }
  .timeline-marker{ width: 40px; height: 40px; font-size: 15px; }
  .timeline-content{ padding: 16px !important; }
  .timeline-icon{ display: none; }
}

/* --- Meet Your Lawyer --- */
.meet-section{
  background: linear-gradient(180deg, #f5f6fa 0%, #eef0f6 100%);
  padding: 64px 0;
}
.meet-grid{
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
}
.meet-photo{
  position: relative;
}
.meet-photo img{
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}
.meet-photo::before{
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid rgba(237,87,0,0.20);
  border-radius: calc(var(--radius-lg) + 4px);
  z-index: -1;
}
.meet-photo-caption{
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(0deg, rgba(5,13,45,0.92) 0%, rgba(5,13,45,0.0) 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.meet-photo-caption strong{
  font-family: var(--font-heading);
  font-size: 18px;
}
.meet-photo-caption span{
  font-size: 13px;
  opacity: 0.85;
}
.meet-content h2{
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 14px;
}
.meet-content p{
  color: rgba(11,18,38,0.75);
  line-height: 1.65;
  margin: 0 0 12px;
}
.meet-quote{
  margin: 20px 0 0;
  padding: 20px 24px;
  border-left: 3px solid var(--orange);
  background: rgba(255,255,255,0.80);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.meet-quote p{
  font-family: var(--font-heading);
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}
.meet-quote cite{
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  margin-top: 10px;
}
@media (max-width: 820px){
  .meet-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .meet-photo{
    max-width: 340px;
    margin: 0 auto;
  }
  .meet-photo::before{ display: none; }
}

/* --- Professional SVG Service Icons --- */
.service-icon-pro{
  width: 56px;
  height: 56px;
  padding: 8px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(12,32,103,0.06) 0%, rgba(237,87,0,0.06) 100%);
  border: 1px solid rgba(12,32,103,0.08);
  margin-bottom: 14px;
  color: var(--navy);
  transition: transform 0.2s ease, background 0.2s ease;
}
.service-tile:hover .service-icon-pro{
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(12,32,103,0.10) 0%, rgba(237,87,0,0.10) 100%);
}
.service-icon-pro svg{
  width: 100%;
  height: 100%;
}

/* --- Improved Reveal Animations --- */
@keyframes fadeSlideUp{
  from{ opacity: 0; transform: translateY(24px); }
  to{ opacity: 1; transform: translateY(0); }
}
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.timeline-step:nth-child(2) .reveal,
.grid-3 > :nth-child(2).reveal,
.stats-row > :nth-child(2).reveal{ transition-delay: 0.1s; }
.timeline-step:nth-child(3) .reveal,
.grid-3 > :nth-child(3).reveal,
.stats-row > :nth-child(3).reveal{ transition-delay: 0.2s; }

/* --- Decorative section accent --- */
.meet-section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(237,87,0,0.0) 60%);
}
.meet-section{ position: relative; }

/* --- Card hover lift --- */
.service-tile{
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-tile:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* --- General visual polish --- */
.section-head .sub,
.section-head p{
  color: rgba(11,18,38,0.65);
  max-width: 56ch;
}

/* About snapshot section */
#about-snapshot{
  background: linear-gradient(180deg, #f5f6fa 0%, #fff 100%);
}

/* Improved ghost-on-light buttons */
.btn.ghost.ghost-on-light{
  background:#ffffff;
  color: var(--navy);
  border-color: rgba(11,22,45,0.16);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border-radius: 10px;
}
.btn.ghost.ghost-on-light:hover{
  background: #fafbfd;
  border-color: rgba(11,22,45,0.24);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Better focus states for accessibility */
.btn:focus-visible,
a:focus-visible{
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* Smoother page section transitions */
.section + .section{
  border-top: 1px solid rgba(11,18,38,0.04);
}

/* --- FAQ Accordion --- */
.faq-section{
  padding: 64px 0;
}
.faq-list{
  max-width: 760px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item{
  background: #fff;
  border: 1px solid rgba(11,18,38,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open]{
  border-color: rgba(237,87,0,0.20);
  box-shadow: 0 4px 16px rgba(237,87,0,0.06);
}
.faq-q{
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  transition: color 0.15s ease;
  user-select: none;
}
.faq-q::-webkit-details-marker{ display: none; }
.faq-q::after{
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-top: -3px;
}
.faq-item[open] .faq-q::after{
  transform: rotate(-135deg);
  margin-top: 3px;
}
.faq-q:hover{
  color: var(--orange);
}
.faq-a{
  padding: 0 24px 20px;
  color: rgba(11,18,38,0.70);
  line-height: 1.65;
}
.faq-a p{
  margin: 0;
}

/* --- Team Photos Row on Homepage --- */
/* team-preview: styles moved to bottom of file */

/* --- Hero Visual Enhancement --- */
.hero{
  position: relative;
  overflow: hidden;
}
.hero .container{
  position: relative;
  z-index: 2;
}
/* Decorative scales of justice silhouette in hero */
.hero-deco{
  position: absolute;
  right: -40px;
  bottom: -30px;
  width: 320px;
  height: 320px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 920px){
  .hero-deco{ display: none; }
}

/* --- Contact page improvement --- */
/* ===== Contact Page: Premium aligned grid ===== */
.contact-hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.contact-info-card,
.contact-form-card{
  background: #fff;
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 2px 20px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
  border: 1px solid rgba(15,23,42,0.06);
  display: flex;
  flex-direction: column;
}
.contact-info-card h2,
.contact-form-card h2{
  font-size: 24px;
  margin-bottom: 20px;
}
.contact-info-rows{ display: flex; flex-direction: column; gap: 0; }
.contact-info-row{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15,23,42,0.06);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(11,18,38,0.80);
}
.contact-info-row:last-child{ border-bottom: none; }
.contact-info-row svg{
  flex: 0 0 18px;
  margin-top: 2px;
  color: var(--orange);
}
.contact-info-label{
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(17,24,39,0.45);
  margin-bottom: 2px;
}
.contact-info-row a{ color: var(--navy-deep); font-weight: 600; }
.contact-info-row a:hover{ color: var(--orange); }

.contact-form-card .form{ flex: 1; display: flex; flex-direction: column; }
.contact-form-card textarea{ flex: 1; min-height: 100px; }

@media(max-width:768px){
  .contact-hero-grid{ grid-template-columns: 1fr; }
}

.contact-principal{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  margin-top: 16px;
  background: rgba(12,32,103,0.03);
  border: 1px solid rgba(12,32,103,0.06);
  border-radius: var(--radius);
}
.contact-principal img{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.contact-principal-info strong{
  font-family: var(--font-heading);
  display: block;
  font-size: 15px;
}
.contact-principal-info span{
  font-size: 13px;
  color: rgba(11,18,38,0.55);
}

/* --- Improved Services Section --- */
.services-tiles{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px){
  .services-tiles{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .services-tiles{ grid-template-columns: 1fr; }
}
.service-tile{
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(11,18,38,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  text-decoration: none;
  color: inherit;
}
.service-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
}
.service-text{
  color: rgba(11,18,38,0.65);
  font-size: 14px;
  line-height: 1.55;
}

/* --- WorkCover page improvements --- */
.wc-hero h1{
  font-family: var(--font-heading);
}
.wc-point{
  font-size: 15px;
}

/* --- Page hero refinement --- */
.page-hero{
  position: relative;
}
.page-hero h1{
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
}

/* --- CTA band accent line --- */
.cta-band{
  position: relative;
}
.cta-band::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(237,87,0,0.0) 50%);
}

/* --- Footer brand improvement --- */
footer .brand .name{
  font-family: var(--font-heading);
}

/* --- Final Polish --- */

/* Smooth section transitions with subtle backgrounds */
.how-section{
  position: relative;
}
.how-section::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 90% 50%, rgba(237,87,0,0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* FAQ section background */
.faq-section{
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%) !important;
}

/* Better card feature border on hover */
.card.feature:hover{
  border-color: rgba(237,87,0,0.15);
}

/* Warm gradient on about section */
#about-snapshot .card.feature.rich{
  background: linear-gradient(160deg, rgba(255,255,255,0.98), rgba(248,249,252,0.95));
  border: 1px solid rgba(11,18,38,0.06);
}

/* Team card improvements for about page */
.team-card{
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
}
.team-card-body{
  padding: 20px !important;
}
.team-card-name{
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}
.team-card-link{
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
}

/* Improve blockquote styling throughout */
blockquote{
  font-family: var(--font-heading);
  font-style: italic;
}

/* Services badge refinement */
.services-badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.services-badges .badge{
  background: rgba(12,32,103,0.04);
  border-color: rgba(12,32,103,0.08);
  color: var(--ink);
  font-weight: 500;
  border-radius: 8px;
  font-size: 13px;
  padding: 8px 14px;
}

/* Make mini-trust bar on light bg more refined */
.mini-trust{
  border-radius: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(12,32,103,0.08);
  background: rgba(255,255,255,0.85);
}

/* Wizard progress bar refinement */
.wizard-progress-bar{
  border-radius: 8px;
  overflow: hidden;
}
.wizard-progress-fill{
  background: var(--orange) !important;
  border-radius: 8px;
}

/* Ghost button text-color fix on dark backgrounds */
.hero .btn.ghost,
.cta-band .btn.ghost{
  color: #fff;
  border-color: rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.08);
}
.hero .btn.ghost:hover,
.cta-band .btn.ghost:hover{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.30);
}

/* Smooth image loading */
img{
  transition: opacity 0.3s ease;
}

/* Print-friendly basics */
@media print{
  .hero-deco,
  .stats-band::before,
  .cta-band::before,
  .meet-section::before{ display: none; }
  .hero{ background: var(--navy) !important; }
  .btn{ border: 1px solid #333 !important; }
}

/* =========================================
   V4 PREMIUM OVERHAUL
   ========================================= */

/* --- Hero form card — premium glass effect --- */
.hero .card.feature.rich{
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 16px;
  box-shadow: 
    0 20px 60px rgba(0,0,0,0.20),
    0 4px 16px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.50);
  color: var(--ink);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hero .card.feature.rich::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(237,87,0,0.30));
  border-radius: 16px 16px 0 0;
}
.hero .card.feature.rich h3{
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.2px;
}
.hero .card.feature.rich .small{
  color: rgba(11,18,38,0.60);
}

/* --- Hero pills — refined transparent chips --- */
.hero .pill-row{
  margin: 0 0 24px;
  gap: 8px;
}
.hero .pill-row .pill{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.80);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  letter-spacing: 0.3px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.hero .pill-row .pill:first-child{
  background: rgba(237,87,0,0.12);
  border-color: rgba(237,87,0,0.25);
  color: rgba(255,255,255,0.92);
}

/* --- Hero heading refinement --- */
.hero h1{
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.5px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.15);
}
.hero p.lede{
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
  line-height: 1.6;
}

/* --- Hero checklist refinement --- */
.hero .checklist{
  margin: 18px 0 0 !important;
  padding: 0 !important;
  list-style: none;
}
.hero .checklist li{
  padding-left: 26px;
  position: relative;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 500;
}
.hero .checklist li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(237,87,0,0.15);
  border: 1.5px solid var(--orange);
}
.hero .checklist li::after{
  content: "✓";
  position: absolute;
  left: 3px;
  top: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
}

/* --- Hero CTAs refinement --- */
.hero .btn.primary{
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(237,87,0,0.30);
}
.hero .btn.ghost{
  padding: 14px 24px;
  font-size: 15px;
  border-radius: 10px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero .btn.ghost:hover{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
}

/* --- Hero grid spacing --- */
.hero-grid{
  gap: 36px;
  align-items: center;
}

/* --- Header "NO WIN, NO FEE" polish --- */
.header-center-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  font-style: italic;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}

/* --- Header phone pill refinement --- */
.header-phone{
  border-radius: 10px;
  padding: 8px 14px;
  background: rgba(237,87,0,0.10);
  border: 1px solid rgba(237,87,0,0.25);
}
.header-phone .label{
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.header-phone a{
  font-size: 14px;
  font-weight: 700;
}

/* --- Header CTA buttons compact --- */
.header-cta .btn{
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 8px;
}
.header-cta .btn.primary{
  box-shadow: 0 4px 12px rgba(237,87,0,0.25);
}

/* --- Trust band refinement --- */
.trust-band{
  background: linear-gradient(135deg, #0a1a55, var(--navy-deep));
  border-top: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 2px 0;
}
.trust-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}
.trust-icon{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(237,87,0,0.12);
  border: 1px solid rgba(237,87,0,0.20);
  flex-shrink: 0;
}
.trust-icon svg{
  fill: var(--orange);
}
.trust-title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.trust-sub{
  font-size: 12px;
  color: rgba(255,255,255,0.60);
}

/* --- Stats band glow --- */
.stats-band{
  background: linear-gradient(135deg, #0a1a55 0%, var(--navy-deep) 50%, #0a1a55 100%);
}

/* --- Brand logo size reduction for compactness --- */
.brand img{
  height: 48px;
}

/* --- Nav active state refinement --- */
.nav a.active{
  background: rgba(237,87,0,0.08);
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid var(--orange);
  border-radius: 8px 8px 2px 2px;
  opacity: 1;
}

/* --- Smooth bottom edge on hero --- */
.hero{
  border-bottom: none;
}

/* --- Remove old hero-deco SVG (too faint, not adding value) --- */
.hero-deco{
  display: none !important;
}

/* --- Better hero bottom fade transition --- */
body[data-page="home"] .hero{
  padding-bottom: 60px;
}

/* --- Form inputs inside hero card: darker text --- */
.hero .card .fast-form input,
.hero .card .fast-form select{
  background: #fff;
  border: 1px solid rgba(11,18,38,0.12);
  color: var(--ink);
  font-family: var(--font-body);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.hero .card .fast-form input:focus,
.hero .card .fast-form select:focus{
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12,32,103,0.08);
  outline: none;
}
.hero .card .fast-form input::placeholder{
  color: rgba(11,18,38,0.40);
}
.hero .card .fast-form label{
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
}
.hero .card .fast-form .note{
  color: rgba(11,18,38,0.55);
  font-size: 12px;
}
.hero .card .fast-form .note strong{
  color: var(--orange);
}

/* Override old note/strong color in form */
.hero .card .fast-form .actions .btn.ghost{
  color: var(--navy);
  border-color: rgba(11,18,38,0.16);
  background: rgba(11,18,38,0.04);
}
.hero .card .fast-form .actions .btn.ghost:hover{
  background: rgba(11,18,38,0.08);
}
.hero .card .fast-form .actions .btn.primary{
  box-shadow: 0 4px 16px rgba(237,87,0,0.25);
}

/* --- "Call helper" text at bottom of hero --- */
.hero > .container > div:first-child > .small{
  color: rgba(255,255,255,0.50);
  font-size: 13px;
}

/* Call label in hero */
.call-label{
  font-weight: 800;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-right: 4px;
}

/* =========================================
   NAV FIX — Ensure header is always clickable
   ========================================= */

/* Force header above everything */
header.site-header{
  z-index: 1000 !important;
  position: sticky;
  top: 0;
}

/* Main content sits below header */
main{
  position: relative;
  z-index: 1;
}

/* Drawer sits above header when open */
.drawer-backdrop{
  z-index: 1100 !important;
}
.nav-drawer{
  z-index: 1200 !important;
}

/* Nav link click area — ensure links have proper padding and are clickable */
.nav a{
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

/* Menubar: ensure it doesn't collapse or get hidden */
.menubar{
  position: relative;
  z-index: 2;
}
.menubar .container{
  position: relative;
  z-index: 2;
}

/* =========================================
   V5 IMAGE & VISUAL INTEGRATION
   ========================================= */

/* --- Section illustrations --- */
.section-illustration{
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* --- No Win No Fee layout --- */
.nwnf-layout{
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.nwnf-sidebar{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nwnf-sidebar .section-illustration{
  border-radius: 16px;
}
.nwnf-callout{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(12,32,103,0.03);
  border: 1px solid rgba(12,32,103,0.06);
  border-radius: 14px;
}
.nwnf-avatar{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  flex-shrink: 0;
}
@media (max-width: 820px){
  .nwnf-layout{
    grid-template-columns: 1fr;
  }
  .nwnf-sidebar{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .nwnf-sidebar .section-illustration{
    max-width: 280px;
  }
}

/* --- Reassurance banner --- */
.reassurance-banner{
  position: relative;
  overflow: hidden;
}
.reassurance-banner::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent 60%);
}
.reassurance-grid{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: center;
}
.reassurance-photo{
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
@media (max-width: 600px){
  .reassurance-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .reassurance-photo{
    margin: 0 auto;
    width: 110px;
    height: 110px;
  }
}

/* --- About page two-col illustration layout --- */
@media (max-width: 820px){
  .container[style*="grid-template-columns:1fr 1fr"]{
    grid-template-columns: 1fr !important;
  }
}

/* --- Image card corners and shadows --- */
.section-illustration,
.reassurance-photo,
.meet-photo img{
  transition: transform 0.3s ease;
}

/* --- Process illustration container --- */
.how-illustration{
  margin-bottom: 16px;
}
.how-illustration img{
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

/* --- Warm visual accents between sections --- */
.credentials-section{
  position: relative;
  overflow: hidden;
}
.credentials-section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(237,87,0,0.15), transparent);
}

/* --- Icon list in about section --- */
.icon-list{
  list-style: none;
  padding: 0 !important;
  margin: 16px 0 0;
}
.icon-li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(11,18,38,0.05);
}
.icon-li:last-child{
  border-bottom: none;
}
.icon-li .icon{
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: rgba(237,87,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.icon-li .icon svg{
  fill: var(--orange);
  width: 100%;
  height: 100%;
}
.icon-li .txt{
  font-size: 14px;
  line-height: 1.55;
  color: rgba(11,18,38,0.75);
}
.icon-li .txt strong{
  color: var(--ink);
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

/* =========================================
   V4.1 IMAGE & VISUAL OVERHAUL
   ========================================= */

/* --- Hero background image (proper layering) --- */
.hero-bg-image{
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
body[data-page="home"] .hero-bg-image{
  background-image: url('assets/site-images/brisbane-boardroom.jpg');
  opacity: 0.12;
  filter: saturate(0.6) brightness(0.8);
}
body[data-page="workcover"] .hero-bg-image{
  background-image: url('assets/site-images/signing-injury.jpg');
  opacity: 0.10;
  filter: saturate(0.5) brightness(0.7);
}
body[data-page="about"] .hero-bg-image{
  background-image: url('assets/site-images/viktoria-confident.jpg');
  opacity: 0.10;
  filter: saturate(0.5) brightness(0.7);
}
body[data-page="contact"] .hero-bg-image{
  background-image: url('assets/site-images/brisbane-boardroom.jpg');
  opacity: 0.10;
  filter: saturate(0.5) brightness(0.7);
}
body[data-page="free-claim-check"] .hero-bg-image{
  background-image: url('assets/site-images/courts-building.jpg');
  opacity: 0.08;
  filter: saturate(0.4) brightness(0.7);
}

/* --- Full-width image banner section --- */
.image-banner{
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.image-banner-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  pointer-events: none;
}
.image-banner-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,15,43,0.88) 0%, rgba(7,15,43,0.70) 50%, rgba(7,15,43,0.40) 100%);
  pointer-events: none;
}
.image-banner-content{
  position: relative;
  z-index: 2;
  padding: 56px 0;
}
.image-banner-text{
  max-width: 540px;
}
.image-banner-text h2{
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.3px;
}
@media (max-width: 700px){
  .image-banner{
    min-height: 320px;
  }
  .image-banner-overlay{
    background: linear-gradient(180deg, rgba(7,15,43,0.85) 0%, rgba(7,15,43,0.75) 100%);
  }
}

/* --- Section photos (inside cards) --- */
.section-photo{
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid rgba(11,18,38,0.06);
}

/* --- Inline page photos (for content pages) --- */
.page-photo{
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border: 1px solid rgba(11,18,38,0.06);
  aspect-ratio: 16/10;
  object-fit: cover;
}
.page-photo-caption{
  font-size: 12px;
  color: rgba(11,18,38,0.50);
  margin-top: 8px;
  text-align: center;
  font-style: italic;
}

/* --- Split section (image + content side by side) --- */
.split-section{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.split-section.reversed{
  direction: rtl;
}
.split-section.reversed > *{
  direction: ltr;
}
.split-image{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(11,18,38,0.06);
  position: relative;
}
.split-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}
.split-image::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10);
  pointer-events: none;
}
.split-content{
  padding: 8px 0;
}
@media (max-width: 800px){
  .split-section,
  .split-section.reversed{
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
  }
  .split-image img{
    min-height: 220px;
    max-height: 300px;
  }
}

/* --- Office/team photo strip --- */
.photo-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.photo-strip img{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid rgba(11,18,38,0.06);
}
@media (max-width: 600px){
  .photo-strip{
    grid-template-columns: 1fr;
  }
  .photo-strip img:nth-child(n+3){
    display: none;
  }
}

/* --- Google Reviews badge --- */
.google-review-badge svg{
  flex-shrink: 0;
}

/* =========================================
   V5 IMAGE & VISUAL INTEGRATION
   ========================================= */

/* --- Client stories grid --- */
.client-stories-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 900px){
  .client-stories-grid{ grid-template-columns: 1fr; }
}
.client-story{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.client-story h3{
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.client-story p{
  color: rgba(11,18,38,0.70);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}
.story-type-badge{
  display: inline-block;
  background: rgba(237,87,0,0.08);
  border: 1px solid rgba(237,87,0,0.15);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  width: fit-content;
}
.story-outcome{
  margin-top: auto;
  padding: 12px 14px;
  background: rgba(12,32,103,0.04);
  border-radius: 10px;
  border: 1px solid rgba(12,32,103,0.08);
}
.outcome-label{
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 4px;
}
.outcome-text{
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* --- "What to expect" list --- */
.expect-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.expect-list li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: rgba(11,18,38,0.72);
  font-size: 15px;
  line-height: 1.55;
}
.expect-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(237,87,0,0.10);
  border: 1.5px solid var(--orange);
}
.expect-list li::after{
  content: "✓";
  position: absolute;
  left: 3.5px;
  top: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
}

/* =========================================
   V4.2 MOBILE FIXES + LOGO REFINEMENT
   ========================================= */

/* --- Logo sizing — remove blue background box, show circular badge --- */
.brand img{
  height: 48px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
}

/* --- Mobile header fix: prevent overlap --- */
@media (max-width: 640px){
  .topbar-inner{
    padding: 10px 0;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .brand{
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
  }
  .brand img{
    height: 40px;
    flex-shrink: 0;
  }
  .brand .name{
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand .tag{
    display: none;
  }
  .header-actions{
    flex-shrink: 0;
    gap: 6px;
  }
  .header-phone{
    padding: 6px 10px;
    font-size: 12px;
  }
  .header-phone .label{
    display: none;
  }
  .header-phone a{
    font-size: 13px;
    letter-spacing: -0.3px;
  }
  .header-cta{
    display: none !important;
  }
  .burger{
    width: 40px;
    height: 40px;
  }
}

/* Very small screens: further compress */
@media (max-width: 400px){
  .brand .name{
    font-size: 14px;
  }
  .brand img{
    height: 36px;
  }
  .header-phone{
    padding: 5px 8px;
  }
  .header-phone a{
    font-size: 12px;
  }
}

/* --- Mobile footer fix: force single column --- */
@media (max-width: 820px){
  .footer-grid,
  .site-footer .footer-grid,
  footer .footer-grid{
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  footer .footer-bottom{
    grid-template-columns: 1fr !important;
  }
}

/* Also catch the intermediate range */
@media (max-width: 880px){
  footer .footer-grid{
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* --- Footer logo: also make circular/transparent --- */
.footer-logo{
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
  height: 56px !important;
  width: auto !important;
}

/* --- Team preview: accommodate 5 members --- */
.team-preview-row{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  justify-items: center;
}
.team-preview-card{
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease;
  width: 100%;
}
.team-preview-card:hover{
  transform: translateY(-3px);
}
.team-preview-avatar{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(11,18,38,0.08);
  transition: border-color 0.2s ease;
}
.team-preview-card:hover .team-preview-avatar{
  border-color: var(--orange);
}
.team-preview-name{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  margin-top: 6px;
}
.team-preview-role{
  font-size: 12px;
  color: rgba(11,18,38,0.55);
}

/* Mobile: team preview wraps properly */
@media (max-width: 560px){
  .team-preview-row{
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 4px;
    justify-items: center;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .team-preview-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .team-preview-avatar{
    width: 68px;
    height: 68px;
  }
  .team-preview-name{
    font-size: 13px;
    margin-top: 6px;
  }
  .team-preview-role{
    font-size: 11px;
  }
  /* Limit testimonials on mobile — show only first 4 */
  .client-feedback-track .card.testimonial:nth-child(n+5){
    display: none;
  }
}

/* --- Brand logo (header) --- */
.brand-logo{
  height: 48px;
  width: auto;
  display: block;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
}

/* --- Drawer logo --- */
.drawer-logo{
  height: 40px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
}

/* --- Footer logo override --- */
footer .footer-logo,
.site-footer .footer-logo{
  height: 52px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
  display: block;
  margin-bottom: 10px;
}

/* ===== Client Resources page ===== */
.resources-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.resource-card{
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 2px 20px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
  border: 1px solid rgba(15,23,42,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.resource-card:hover{
  box-shadow: 0 8px 40px rgba(15,23,42,0.10);
  transform: translateY(-2px);
}
.resource-icon{
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(237,87,0,0.06);
  border-radius: 14px;
  color: var(--orange);
  margin-bottom: 16px;
}
.resource-card h2{
  font-size: 20px;
  margin: 0 0 12px;
  line-height: 1.3;
}
.resource-card p{
  font-size: 15px;
  line-height: 1.65;
  color: rgba(11,18,38,0.72);
  margin-bottom: 12px;
}
.resource-card a{ color: var(--orange); font-weight: 600; }
.resource-cta{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.resource-cta .btn{ font-size: 13px; padding: 10px 16px; }
@media(max-width:768px){
  .resources-grid{ grid-template-columns: 1fr; }
}

/* ===== Premium Process Timeline ===== */
.process-timeline{
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-step{
  display: grid;
  grid-template-columns: 56px 1fr 48px;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(15,23,42,0.06);
  position: relative;
}
.process-step:last-child{ border-bottom: none; }
.process-num{
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #0c1d3a, #1a3568);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(12,29,58,0.20);
}
.process-num span{
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
}
/* Connecting line between circles */
.process-step:not(:last-child) .process-num::after{
  content: "";
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 24px);
  background: linear-gradient(to bottom, rgba(12,29,58,0.20), rgba(12,29,58,0.06));
  z-index: 1;
}
.process-step:not(:last-child){
  padding-bottom: 24px;
}
.process-content h3{
  font-size: 18px;
  margin: 4px 0 6px;
  color: var(--navy-deep);
}
.process-content p{
  font-size: 15px;
  line-height: 1.6;
  color: rgba(11,18,38,0.65);
  margin: 0;
}
.process-icon{
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(237,87,0,0.07);
  border-radius: 12px;
  color: var(--orange);
  flex: 0 0 42px;
  margin-top: 2px;
}
@media(max-width:600px){
  .process-step{
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }
  .process-num{ width: 40px; height: 40px; }
  .process-num span{ font-size: 16px; }
  .process-icon{ display: none; }
  .process-step:not(:last-child) .process-num::after{
    top: 40px;
  }
}

/* ===== Homepage boxes equal height ===== */
.section .grid-2{ align-items: stretch; }
.section .grid-2 > .card{ display: flex; flex-direction: column; }
.section .grid-2 > .card > :last-child{ margin-top: auto; }

/* Fix: Why Choose / Client Feedback should align to top, not stretch */

/* ===== Costs Explained page ===== */
.fee-highlight{
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: linear-gradient(135deg, rgba(12,29,58,0.03), rgba(12,29,58,0.06));
  border-radius: 18px;
  border: 1px solid rgba(12,29,58,0.06);
  margin-bottom: 36px;
}
.fee-highlight-icon{
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(237,87,0,0.08);
  border-radius: 14px;
  color: var(--orange);
  flex: 0 0 56px;
}
.fee-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.fee-card{
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
  border: 1px solid rgba(15,23,42,0.06);
}
.fee-card-icon{
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  margin-bottom: 12px;
}
.fee-card h3{ font-size: 17px; margin: 0 0 6px; }
.fee-card p{ font-size: 14px; line-height: 1.6; color: rgba(11,18,38,0.65); margin: 0; }
@media(max-width:600px){
  .fee-grid{ grid-template-columns: 1fr; }
  .fee-highlight{ flex-direction: column; }
}

/* ===== Client Reviews page ===== */
.reviews-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-card{
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(15,23,42,0.05);
  border: 1px solid rgba(15,23,42,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.review-card:hover{
  box-shadow: 0 6px 28px rgba(15,23,42,0.09);
  transform: translateY(-2px);
}
.review-card .mini-stars{
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-card blockquote{
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(11,18,38,0.80);
  margin: 0 0 14px;
  padding: 0;
  border: none;
}
.review-who{
  font-size: 13px;
  color: rgba(11,18,38,0.50);
}
@media(max-width:600px){
  .reviews-grid{ grid-template-columns: 1fr; }
}

/* Fix: Why Choose grid - no stretch, no auto-margin pushing content down */
.whyus-grid{ align-items: start !important; }
.whyus-grid > .card{ display: block !important; }
.whyus-grid > .card > :last-child{ margin-top: 0 !important; }

/* Fix: CTA phone button text visible on light backgrounds */
.cta .btn.ghost{
  color: var(--navy-deep) !important;
  border-color: rgba(15,23,42,0.18);
  background: rgba(15,23,42,0.04);
}
.cta .btn.ghost:hover{
  background: rgba(15,23,42,0.08);
}

/* Fix: How-it-works CTA buttons layout */
.how-cta{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media(max-width:600px){
  .how-cta{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 8px;
  }
  .how-cta .btn{
    text-align: center;
    width: 100%;
  }
}
