/* ============================================
   Apis Legal Services - CA & Legal Services
   Palette: purple · pink gradient (reference site)
   ============================================ */

:root {
  --primary: #222222;
  --primary-light: #444444;
  --purple: #6a5cff;
  --pink: #ff4ecd;
  --burgundy: #6a5cff;
  --burgundy-dark: #5548e6;
  --accent: #6a5cff;
  --accent-hover: #5548e6;
  --accent-light: #f0edff;
  --gradient: linear-gradient(135deg, #6a5cff, #ff4ecd);
  --gradient-h: linear-gradient(90deg, #6a5cff, #ff4ecd);
  --text: #222222;
  --text-light: #555555;
  --text-muted: #888888;
  --bg: #ffffff;
  --bg-alt: #f8f9ff;
  --bg-dark: #1f1b33;
  --border: #e8eaf5;
  --shadow-sm: 0 1px 3px rgba(106, 92, 255, 0.08);
  --shadow: 0 4px 24px rgba(106, 92, 255, 0.12);
  --shadow-lg: 0 16px 48px rgba(106, 92, 255, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-display: 'Poppins', system-ui, -apple-system, sans-serif;
  --header-height: auto;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
}
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header p {
  color: var(--text-light);
  margin-top: 16px;
  font-size: 1.05rem;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gradient-h);
  margin: 20px auto 0;
  border-radius: 2px;
}

.section-header--left h2::after {
  margin-left: 0;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--gradient-h);
  color: #ffffff;
  border-color: transparent;
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

.btn-outline:hover {
  background: var(--gradient-h);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: var(--purple);
  border-color: #ffffff;
}

.btn-white:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--gradient-h);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: none;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar a {
  color: rgba(250, 247, 242, 0.88);
}

.top-bar a:hover {
  color: var(--accent);
}

.top-bar__contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar__contact span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar__social {
  display: flex;
  gap: 16px;
}

.top-bar__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar__cta {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.85rem;
}

/* ---- Site Header & Mega Menu ---- */
.container--header {
  max-width: 1480px;
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  box-shadow: none;
}

.site-header .mega-menu {
  top: 100%;
}

.site-header__main {
  background: var(--bg);
}

.site-header__main-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 12px;
  padding: 0 16px;
  min-height: 58px;
}

.site-header__services {
  display: none;
}

.site-nav--services {
  justify-self: end;
  min-width: 0;
  overflow: visible;
}

.nav__cta--desktop {
  flex-shrink: 0;
  padding: 11px 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1.2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
}

.logo__text {
  white-space: nowrap;
  font-size: 1.05rem;
}

.logo__brand {
  background: var(--gradient-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo__icon {
  width: 34px;
  height: 34px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.service-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.service-nav .nav-dropdown {
  flex: 1 1 0;
  min-width: 0;
}

.nav-dropdown {
  position: static;
  list-style: none;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: 58px;
  padding: 0 clamp(4px, 0.55vw, 10px);
  font-size: clamp(0.58rem, 0.44rem + 0.38vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--primary);
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.nav-dropdown__label {
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-dropdown__trigger:hover,
.nav-dropdown.is-open .nav-dropdown__trigger,
.nav-dropdown:hover .nav-dropdown__trigger {
  color: var(--burgundy);
  border-bottom-color: var(--burgundy);
  background: transparent;
}

.nav-dropdown__chevron {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--transition);
}

.nav-dropdown.is-open .nav-dropdown__chevron,
.nav-dropdown:hover .nav-dropdown__chevron {
  transform: rotate(-135deg) translateY(1px);
}

@media (max-width: 1280px) {
  .logo__text {
    font-size: 0.95rem;
  }

  .nav-dropdown__trigger {
    font-size: 0.58rem;
    letter-spacing: 0.03em;
    padding: 0 4px;
  }

  .nav__cta--desktop {
    padding: 10px 12px;
    font-size: 0.62rem;
  }
}

@media (max-width: 1100px) {
  .site-nav--services {
    display: none;
  }

  .nav__cta--desktop {
    display: none;
  }

  .site-header__main-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: flex;
  }
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 24px 0 28px;
  z-index: 1001;
}

.mega-menu[hidden] {
  display: none;
}

.mega-menu:not([hidden]) {
  display: block;
}

.mega-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.mega-menu__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--burgundy);
}

.mega-menu__view-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.mega-menu__view-all:hover {
  color: var(--burgundy);
}

.mega-menu__grid {
  display: grid;
  gap: 20px 28px;
}

.mega-menu__grid--1 { grid-template-columns: 1fr; max-width: 360px; }
.mega-menu__grid--3 { grid-template-columns: repeat(3, 1fr); }
.mega-menu__grid--4 { grid-template-columns: repeat(4, 1fr); }

.mega-menu__list {
  list-style: none;
}

.mega-menu__list li {
  margin-bottom: 6px;
}

.mega-menu__link {
  display: block;
  padding: 6px 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-light);
  transition: color var(--transition);
}

.mega-menu__link:hover {
  color: var(--burgundy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: rgba(28, 25, 23, 0.45);
  z-index: 1100;
  overflow-y: auto;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav__inner {
  width: min(420px, 92vw);
  margin-left: auto;
  min-height: 100%;
  background: var(--bg);
  padding: 72px 20px 32px;
  box-shadow: var(--shadow-lg);
}

.mobile-nav__pages {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav__page-link {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text);
}

.mobile-nav__page-link:hover,
.mobile-nav__page-link.active {
  background: var(--accent-light);
  color: var(--burgundy);
}

.mobile-nav__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.mobile-nav__section {
  border-bottom: 1px solid var(--border);
}

.mobile-nav__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  font-family: var(--font-sans);
  text-align: left;
}

.mobile-nav__toggle::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--burgundy);
}

.mobile-nav__section.is-open .mobile-nav__toggle::after {
  content: '−';
}

.mobile-nav__panel {
  padding-bottom: 12px;
}

.mobile-nav__panel[hidden] {
  display: none;
}

.mobile-nav__list {
  list-style: none;
  max-height: 240px;
  overflow-y: auto;
}

.mobile-nav__list a {
  display: block;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

.mobile-nav__list a:hover {
  color: var(--burgundy);
}

/* Legacy header alias */
.header { position: sticky; top: 0; z-index: 1000; }

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 48px 0 72px;
  background: #f3f5ff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/office.jpg') center center / cover no-repeat;
  z-index: 0;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(243, 245, 255, 0.97) 0%,
      rgba(250, 251, 255, 0.9) 38%,
      rgba(255, 255, 255, 0.78) 62%,
      rgba(248, 249, 255, 0.62) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(rgba(106, 92, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 85%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  background: #6a5cff;
  filter: blur(160px);
  opacity: 0.1;
  top: -200px;
  left: -180px;
  pointer-events: none;
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  width: 440px;
  height: 440px;
  background: #ff4ecd;
  filter: blur(150px);
  opacity: 0.08;
  bottom: -140px;
  right: -80px;
  pointer-events: none;
  z-index: 2;
}

.hero__container {
  position: relative;
  z-index: 3;
  max-width: 1240px;
}

.hero__main {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 48px 64px;
  align-items: center;
}

.hero__content {
  max-width: 580px;
}

.hero__eyebrow {
  margin-bottom: 20px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106, 92, 255, 0.1);
  color: var(--purple);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(106, 92, 255, 0.15);
}

.hero h1 {
  color: var(--primary);
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.8vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero h1 span {
  display: block;
  background: var(--gradient-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 4px;
}

.hero__lead {
  font-size: 1.08rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}

.hero__search-wrap {
  margin-bottom: 24px;
  width: 100%;
  max-width: 500px;
}

.hero__search {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(106, 92, 255, 0.18);
  border-radius: 14px;
  padding: 6px 6px 6px 16px;
  box-shadow: 0 12px 40px rgba(106, 92, 255, 0.1);
  max-width: 500px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.hero__search:focus-within {
  border-color: rgba(106, 92, 255, 0.4);
  box-shadow: 0 16px 48px rgba(106, 92, 255, 0.14);
}

.hero__search-icon {
  display: flex;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-right: 10px;
}

.hero__search input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 12px 0;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: transparent;
  outline: none;
}

.hero__search input::placeholder {
  color: var(--text-muted);
}

.hero__search button {
  background: var(--gradient-h);
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: filter var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__search button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero .btn {
  border-radius: 50px;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
}

.hero__features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero__features li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(106, 92, 255, 0.12);
  color: var(--purple);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Hero media / visual */
.hero__media {
  position: relative;
  min-height: 420px;
}

.hero__media-glow {
  position: absolute;
  inset: 8% 5% 12%;
  background: var(--gradient);
  border-radius: 32px;
  opacity: 0.15;
  filter: blur(40px);
  z-index: 0;
}

.hero__media-frame {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(106, 92, 255, 0.2);
  border: 4px solid #ffffff;
  animation: hero-float 5s ease-in-out infinite;
}

.hero__media-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}

.hero__card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(34, 34, 34, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  min-width: 200px;
}

.hero__card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--primary);
  line-height: 1.3;
}

.hero__card span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero__card-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.hero__card--gst {
  top: 12%;
  left: -24px;
  animation: hero-float 4.5s ease-in-out infinite;
}

.hero__card--company {
  bottom: 18%;
  right: -20px;
  animation: hero-float 5.5s ease-in-out infinite 0.5s;
}

.hero__rating {
  position: absolute;
  bottom: -8px;
  left: 24px;
  z-index: 3;
  background: #ffffff;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(34, 34, 34, 0.1);
  border-left: 4px solid var(--purple);
}

.hero__rating-stars {
  color: #f5a623;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.hero__rating p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

.hero__rating strong {
  color: var(--primary);
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---- Service Tags ---- */
.service-tags {
  padding: 40px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.service-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.service-tag:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.service-tag__icon {
  width: 28px;
  height: 28px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ---- Stats ---- */
.stats {
  padding: 80px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ---- About Section ---- */
.about-section {
  padding: 100px 0;
}

.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-section__images {
  position: relative;
}

.about-section__main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-section__secondary-img {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-section__experience {
  position: absolute;
  top: 30px;
  left: -30px;
  background: var(--burgundy);
  color: #f8f9ff;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-section__experience .years {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-section__experience .text {
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 4px;
}

.about-section__content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-section__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature__icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1rem;
}

.about-feature__text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

/* ---- Services Grid ---- */
.services-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(166, 125, 68, 0.35);
}

.service-card__image {
  height: 200px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 28px;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, var(--burgundy), var(--burgundy-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4ecd;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--burgundy);
}

.service-card__link:hover {
  color: var(--accent);
  gap: 10px;
}

/* ---- Why Choose Us ---- */
.why-section {
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--burgundy);
  transition: height var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
}

.why-card:hover::before {
  height: 100%;
}

.why-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

.why-card:hover .why-card__number {
  color: var(--accent-light);
}

.why-card h3 {
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ---- Testimonials ---- */
.testimonials {
  padding: 100px 0;
  background: var(--bg-alt);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.testimonial-card__stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 80px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(166, 125, 68, 0.1);
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.cta-banner__content h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ---- Page Header ---- */
.page-header {
  background: linear-gradient(155deg, #5548e6 0%, #6a5cff 50%, #ff4ecd 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/page-header.jpg') center/cover no-repeat;
  opacity: 0.08;
}

.page-header .container {
  position: relative;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--accent);
}

/* ---- About Page ---- */
.about-page {
  padding: 80px 0;
}

.about-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-page__content h2 {
  margin-bottom: 20px;
}

.about-page__content p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.mission-vision {
  padding: 80px 0;
  background: var(--bg-alt);
}

.mission-vision__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mv-card {
  background: var(--bg);
  padding: 40px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--burgundy);
  text-align: center;
}

.mv-card__icon {
  width: 64px;
  height: 64px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.mv-card h3 {
  margin-bottom: 12px;
}

.mv-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-card__image {
  height: 260px;
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__body {
  padding: 24px 20px;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

/* ---- Services Page ---- */
.services-page {
  padding: 80px 0;
}

.service-category {
  margin-bottom: 64px;
}

.service-category__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.service-category__icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-category h2 {
  font-size: 1.75rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
}

.service-list-item:hover {
  background: var(--bg);
  border-color: var(--burgundy);
  box-shadow: var(--shadow-sm);
  color: var(--burgundy);
}

.service-list-item::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
}

/* ---- Contact Page ---- */
.contact-page {
  padding: 80px 0;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info__card {
  background: linear-gradient(160deg, var(--burgundy-dark), var(--primary));
  color: #f8f9ff;
  padding: 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}

.contact-info__card h3 {
  color: #fff;
  margin-bottom: 24px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info__item:last-child {
  margin-bottom: 0;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: rgba(166, 125, 68, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info__value a {
  color: rgba(255, 255, 255, 0.9);
}

.contact-info__value a:hover {
  color: var(--accent);
}

.office-card {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.office-card h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.office-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-form {
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form h3 {
  margin-bottom: 8px;
}

.contact-form > p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--bg-alt);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  background: var(--bg);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* ---- Blog Page ---- */
.blog-page {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card__image {
  height: 220px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 28px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card__category {
  color: var(--accent);
  font-weight: 600;
}

.blog-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  transition: color var(--transition);
}

.blog-card:hover h3 {
  color: var(--burgundy);
}

.blog-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.blog-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.blog-card__link:hover {
  color: var(--burgundy);
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--burgundy);
  color: #f8f9ff;
}

.footer h4 {
  font-family: var(--font-sans);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition);
}

.footer__links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer__contact-item span:first-child {
  color: var(--accent);
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a:hover {
  color: var(--accent);
}

.footer__disclaimer {
  padding: 24px 0 40px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ---- Service detail pages ---- */
.service-page {
  --service-bar: #f7f7f8;
  --service-bar-solid: #1a1a2e;
  --service-accent: #6a5cff;
  background: #ffffff;
}

/* Hero */
.service-hero--legaldev {
  padding: 28px 0 80px;
  background: #ffffff;
  position: relative;
  border-bottom: 1px solid #ebebef;
}

.service-hero--legaldev .container {
  max-width: 1180px;
}

.service-hero--legaldev .service-breadcrumb {
  color: #666;
  margin-bottom: 28px;
  font-size: 0.82rem;
}

.service-hero--legaldev .service-breadcrumb a {
  color: #444;
  transition: color var(--transition);
}

.service-hero--legaldev .service-breadcrumb a:hover {
  color: #111111;
}

.service-hero--legaldev .service-breadcrumb span:last-child {
  color: #111111;
  font-weight: 600;
}

.service-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.service-hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555555;
  background: #f5f5f7;
  border: 1px solid #e3e3e8;
  padding: 7px 14px;
  border-radius: 50px;
}

.service-hero--legaldev h1 {
  color: #1a1a2e;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.18;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  max-width: 620px;
}

.service-hero__price-tag {
  display: inline-block;
  background: #f0fdf4;
  color: #166534;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid #bbf7d0;
}

.service-hero--legaldev .service-hero__lead {
  color: #444;
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 560px;
}

.service-hero--legaldev .service-hero__badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
  max-width: 540px;
  list-style: none;
}

.service-hero--legaldev .service-hero__badges li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: #333;
  background: #f9f9fb;
  border: 1px solid #e8e8ec;
  border-radius: 10px;
  padding: 10px 12px;
  line-height: 1.4;
  box-shadow: none;
}

.service-hero--legaldev .service-hero__badges li span {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 1px;
}

.service-hero__docs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #ffffff;
  color: #222222;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: none;
  border: 1px solid #d1d1d6;
  transition: all var(--transition);
}

.service-hero__docs-btn:hover {
  background: #1a1a2e;
  color: #ffffff;
  border-color: #1a1a2e;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.12);
}

.service-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #888888;
  animation: service-bounce 2.2s ease-in-out infinite;
}

.service-scroll-hint__circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #d1d1d6;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

@keyframes service-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.85; }
}

.service-hero__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

/* Inquiry form card */
.service-inquiry-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.service-page .service-inquiry-card {
  position: sticky;
  top: 88px;
}

.service-inquiry-card__head {
  background: #1a1a2e;
  padding: 22px 26px;
  color: #ffffff;
}

.service-inquiry-card__head h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.service-inquiry-card__head p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  margin: 0;
}

.service-inquiry-form {
  padding: 24px 26px 26px;
}

.service-page .service-inquiry-form .form-group {
  margin-bottom: 16px;
}

.service-page .service-inquiry-form .form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.service-page .service-inquiry-form .form-group input,
.service-page .service-inquiry-form .form-group textarea {
  padding: 11px 14px;
  font-size: 0.9rem;
  border-radius: 10px;
  border: 1px solid #d1d1d6;
  background: #fafafa;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.service-page .service-inquiry-form .form-group input:focus,
.service-page .service-inquiry-form .form-group textarea:focus {
  border-color: #1a1a2e;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.08);
}

.service-page .service-inquiry-form .form-group textarea {
  min-height: 80px;
}

.service-page .service-inquiry-form .btn-primary {
  margin-top: 4px;
  border-radius: 10px;
  font-size: 0.95rem;
  padding: 14px 20px;
}

/* Content sections */
.service-content {
  background: #ffffff;
}

.service-section {
  padding: 0;
}

.service-section--alt {
  background: #f9f9fb;
}

.service-section__bar {
  background: var(--service-bar);
  padding: 18px 0;
  border-bottom: 1px solid #e8e8ec;
  box-shadow: none;
}

.service-section__bar .container {
  max-width: 960px;
}

.service-section__bar h2 {
  color: #1a1a2e;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  padding-left: 16px;
  border-left: 4px solid var(--service-accent);
}

.service-section__body {
  max-width: 960px;
  margin: 0 auto;
  padding: 36px 24px 44px;
}

.service-section--faq .service-section__body {
  max-width: 960px;
  padding: 28px 24px 44px;
}

.service-article .service-section__body h3 {
  margin: 28px 0 14px;
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 2px solid #ebebef;
}

.service-article .service-section__body h3:first-child {
  margin-top: 0;
}

.service-article .service-section__body p {
  color: #444;
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 0.96rem;
}

.service-article .service-section__body a {
  color: var(--purple);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(106, 92, 255, 0.3);
  transition: color var(--transition), border-color var(--transition);
}

.service-article .service-section__body a:hover {
  color: var(--pink);
  border-color: var(--pink);
}

/* Tables */
.service-page .service-table-wrap {
  margin: 20px 0 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e8ec;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-page .service-table th {
  background: #1a1a2e;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 14px 18px;
  border: none;
}

.service-page .service-table td {
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #444;
  background: #ffffff;
  border-bottom: 1px solid #eef0f8;
}

.service-section--alt .service-page .service-table td,
.service-section--alt .service-table td {
  background: #f9f9fb;
}

.service-page .service-table tr:last-child td {
  border-bottom: none;
}

.service-page .service-table tr:hover td {
  background: #f5f5f7;
}

/* Checklists */
.service-page .service-checklist li {
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #444;
}

.service-page .service-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
  font-size: 0.65rem;
  line-height: 18px;
  text-align: center;
  font-weight: 700;
}

/* Process steps */
.service-page .service-steps {
  gap: 12px;
  margin: 20px 0 8px;
}

.service-page .service-step {
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #e8e8ec;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-section--alt .service-page .service-step {
  background: #ffffff;
}

.service-page .service-step:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.service-page .service-step span {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #1a1a2e;
  color: #ffffff;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-page .service-step h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.service-page .service-step p {
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.55;
}

/* Highlight & CTA boxes */
.service-page .service-highlight {
  border-radius: 12px;
  border-left: 4px solid #16a34a;
  background: #f0fdf4;
  padding: 20px 24px;
  margin: 24px 0;
}

.service-page .service-cta-inline {
  border-radius: 12px;
  border: 1px solid #e8e8ec;
  background: #f9f9fb;
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 0.94rem;
}

.service-page .service-cta-inline a {
  font-weight: 600;
}

/* FAQ accordion */
.service-faq-accordion {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e8ec;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-faq-item + .service-faq-item {
  border-top: 1px solid #eef0f8;
}

.service-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: none;
  background: #ffffff;
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.service-faq-item__question {
  flex: 1;
  line-height: 1.45;
}

.service-faq-item__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f0f0f2;
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  transition: background 0.25s ease, color 0.25s ease;
}

.service-faq-item.is-open .service-faq-item__trigger {
  background: #1a1a2e;
  color: #ffffff;
}

.service-faq-item.is-open .service-faq-item__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.service-faq-item__panel {
  padding: 18px 22px 22px;
  background: #f9f9fb;
  border-top: 1px solid #e8e8ec;
}

.service-faq-item__panel[hidden] {
  display: none;
}

.service-faq-item__panel p {
  margin: 0;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.75;
  font-weight: 400;
}

/* Tools section */
.service-tools {
  background: #f5f5f7;
  padding: 56px 0 64px;
  border-top: 1px solid #e8e8ec;
}

.service-tools .container {
  max-width: 960px;
}

.service-tools__title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 32px;
}

.service-tools__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: #1a1a2e;
  margin: 12px auto 0;
  border-radius: 2px;
}

.service-tools__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 24px;
}

.service-tools__list li {
  margin-bottom: 8px;
}

.service-tools__list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #333333;
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--transition), transform var(--transition);
}

.service-tools__list a::before {
  content: '›';
  color: #16a34a;
  font-weight: 700;
}

.service-tools__list a:hover {
  color: #111111;
  transform: translateX(3px);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 999;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-top:not([hidden]) {
  animation: fadeInUp 0.3s ease;
}

.scroll-top:not([hidden]):hover {
  transform: translateY(-4px);
}

.scroll-top__circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #d1d1d6;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.footer--service {
  margin-top: 0;
}

/* Legacy service hero (only when NOT using legaldev layout) */
.service-hero:not(.service-hero--legaldev) {
  padding: 48px 0 56px;
  background: linear-gradient(155deg, #5548e6 0%, #6a5cff 50%, #ff4ecd 100%);
  color: #f8f9ff;
}

.service-hero:not(.service-hero--legaldev) .service-breadcrumb {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 28px;
}

.service-hero:not(.service-hero--legaldev) .service-breadcrumb a {
  color: rgba(250, 247, 242, 0.7);
}

.service-hero:not(.service-hero--legaldev) .service-breadcrumb a:hover {
  color: #ff4ecd;
}

.service-hero:not(.service-hero--legaldev) .service-breadcrumb span:last-child {
  color: #ff4ecd;
}

.service-hero:not(.service-hero--legaldev) h1 {
  color: #f8f9ff;
  margin-bottom: 16px;
}

.service-hero:not(.service-hero--legaldev) .service-hero__lead {
  color: rgba(250, 247, 242, 0.92);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.service-hero:not(.service-hero--legaldev) .service-hero__badges {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-hero:not(.service-hero--legaldev) .service-hero__badges li {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.9);
}

.service-body {
  padding: 64px 0 80px;
}

.service-body__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.service-article h2 {
  margin: 36px 0 16px;
  font-size: 1.6rem;
}

.service-article h3 {
  margin: 24px 0 12px;
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 600;
}

.service-article h2:first-child {
  margin-top: 0;
}

.service-article p {
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.75;
}

.service-article a {
  color: var(--purple);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-article a:hover {
  color: var(--pink);
}

.service-hero__price {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.service-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.service-table th,
.service-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  vertical-align: top;
}

.service-table th {
  background: var(--bg-alt);
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
}

.service-table tr:last-child td {
  border-bottom: none;
}

.service-table tr:hover td {
  background: rgba(106, 92, 255, 0.03);
}

.service-highlight {
  background: linear-gradient(135deg, rgba(106, 92, 255, 0.08), rgba(255, 78, 205, 0.06));
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 20px 0;
}

.service-highlight strong {
  display: block;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1rem;
}

.service-highlight p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.service-cta-inline {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

.service-cta-inline a {
  color: var(--purple);
  font-weight: 600;
}

.service-sidebar__card--cta {
  background: linear-gradient(135deg, rgba(106, 92, 255, 0.06), rgba(255, 78, 205, 0.04));
  border: 1px solid rgba(106, 92, 255, 0.15);
}

.service-checklist {
  list-style: none;
  margin-bottom: 8px;
}

.service-checklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-light);
}

.service-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-weight: 700;
}

.service-steps {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.service-step {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.service-step span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.service-step h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.service-step p {
  font-size: 0.88rem;
  margin: 0;
}

.service-faq details {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 10px;
  background: var(--bg-alt);
}

.service-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
}

.service-faq p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.service-sidebar__card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 16px;
}

.service-sidebar__card h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.service-sidebar__card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.service-sidebar__category {
  font-weight: 600;
  color: var(--burgundy);
  margin: 0;
}

@media (max-width: 900px) {
  .service-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-page .service-inquiry-card {
    position: static;
    order: -1;
  }

  .service-hero--legaldev .service-hero__badges {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .service-hero--legaldev h1,
  .service-hero--legaldev .service-hero__lead {
    max-width: none;
  }

  .service-hero--legaldev {
    padding-bottom: 72px;
  }

  .service-scroll-hint {
    display: none;
  }

  .service-section__body,
  .service-section--faq .service-section__body {
    padding: 28px 16px 36px;
  }

  .service-tools__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scroll-top {
    bottom: 88px;
    right: 16px;
  }

  .service-body__grid,
  .service-hero__grid {
    grid-template-columns: 1fr;
  }
}

.tools-page {
  padding: 80px 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tool-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  min-height: 140px;
}

.tool-card:hover {
  border-color: rgba(93, 46, 62, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.tool-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.tool-card h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

.tool-card__link {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--burgundy);
}

@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero {
    padding: 40px 0 56px;
  }

  .hero__main,
  .about-section .container,
  .about-page__grid,
  .contact-page__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__content {
    max-width: none;
    text-align: center;
  }

  .hero__lead,
  .hero__search-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__search-wrap {
    width: 100%;
    max-width: 520px;
  }

  .hero__search {
    width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__features {
    justify-content: center;
  }

  .hero__media {
    max-width: 480px;
    margin: 0 auto;
    min-height: 380px;
  }

  .hero__card--gst {
    left: 0;
  }

  .hero__card--company {
    right: 0;
  }

  .services-grid,
  .why-grid,
  .testimonials__grid,
  .blog-grid,
  .mission-vision__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section__secondary-img,
  .about-section__experience {
    display: none;
  }
}

@media (max-width: 1100px) {
  .mega-menu__grid--4,
  .mega-menu__grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .top-bar {
    padding: 10px 0;
    font-size: 0.78rem;
  }

  .top-bar .container {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .top-bar__contact {
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .top-bar__contact span {
    font-size: 0.78rem;
    line-height: 1.45;
    word-break: break-word;
  }

  .top-bar__address {
    display: none;
  }

  .top-bar__actions {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .top-bar__social {
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 0.76rem;
  }

  .site-header__main-inner {
    padding: 0 max(12px, env(safe-area-inset-right)) 0 max(12px, env(safe-area-inset-left));
    min-height: 52px;
  }

  .logo__text {
    font-size: 0.88rem;
    white-space: normal;
    line-height: 1.25;
    max-width: calc(100vw - 80px);
  }

  .hero {
    overflow: visible;
    padding: 24px 0 36px;
  }

  .hero__content {
    text-align: left;
    max-width: 100%;
  }

  .hero__eyebrow {
    margin-bottom: 14px;
  }

  .hero__badge {
    font-size: 0.68rem;
    padding: 7px 14px;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6.5vw, 2rem);
    line-height: 1.22;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .hero h1 span {
    display: inline;
  }

  .hero__lead {
    font-size: 0.92rem;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    text-align: left;
    line-height: 1.65;
  }

  .hero__search-wrap {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero__search {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    gap: 8px;
    border-radius: 12px;
  }

  .hero__search-icon {
    display: none;
  }

  .hero__search input {
    width: 100%;
    padding: 11px 12px;
    font-size: 0.88rem;
    border: 1px solid #e8e8ec;
    border-radius: 8px;
    background: #fafafa;
  }

  .hero__search button {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.88rem;
    border-radius: 8px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    justify-content: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero .btn-lg {
    padding: 13px 20px;
    font-size: 0.9rem;
  }

  .hero__features {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    justify-content: flex-start;
  }

  .hero__features li {
    font-size: 0.82rem;
  }

  .hero__card--gst,
  .hero__card--company {
    display: none;
  }

  .hero__rating {
    left: 8px;
    right: 8px;
    bottom: -12px;
    padding: 10px 14px;
  }

  .hero__media {
    min-height: 260px;
    padding-bottom: 20px;
    max-width: 100%;
  }

  .hero__card {
    min-width: 0;
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .service-tags {
    padding: 24px 0;
  }

  .service-tags__list {
    justify-content: flex-start;
    gap: 8px;
  }

  .service-tag {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  .stats {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .whatsapp-float {
    bottom: max(16px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
    width: 50px;
    height: 50px;
    font-size: 1.35rem;
  }

  .scroll-top {
    bottom: 80px;
    right: max(16px, env(safe-area-inset-right));
  }

  .service-hero--legaldev {
    padding: 20px 0 56px;
  }

  .service-hero--legaldev h1 {
    font-size: clamp(1.35rem, 5.5vw, 1.85rem);
  }

  .service-section__body,
  .service-section--faq .service-section__body {
    padding: 24px 16px 32px;
  }

  .service-tools__grid {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }

  .mega-menu__grid--4,
  .mega-menu__grid--3,
  .mega-menu__grid--2 {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .why-grid,
  .testimonials__grid,
  .blog-grid,
  .mission-vision__grid,
  .team-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner {
    padding: 48px 0;
  }

  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-page,
  .about-page {
    padding: 48px 0;
  }

  .contact-info__card {
    padding: 24px 20px;
  }

  .about-section,
  .services-section,
  .why-section,
  .testimonials {
    padding: 48px 0;
  }

  .page-header {
    padding: 48px 0 36px;
  }

  .page-header h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    padding: 0 4px;
    overflow-wrap: break-word;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-section__features {
    grid-template-columns: 1fr;
  }
}

/* Legaldev service hero — high-specificity overrides (beats legacy .service-hero rules) */
.service-page .service-hero.service-hero--legaldev {
  background: #ffffff;
  color: #222222;
  border-bottom: 1px solid #ebebef;
}

.service-page .service-hero.service-hero--legaldev .service-breadcrumb {
  color: #666666;
}

.service-page .service-hero.service-hero--legaldev .service-breadcrumb a {
  color: #444444;
}

.service-page .service-hero.service-hero--legaldev .service-breadcrumb span:last-child {
  color: #111111;
  font-weight: 600;
}

.service-page .service-hero.service-hero--legaldev h1 {
  color: #1a1a2e;
}

.service-page .service-hero.service-hero--legaldev .service-hero__lead {
  color: #444444;
}

.service-page .service-hero.service-hero--legaldev .service-hero__badges li {
  color: #333333;
  background: #f9f9fb;
  border-color: #e8e8ec;
}
