/* ============================================
   LWG CPAs & Advisors — 2026 Redesign
   Color Palette from existing brand
   ============================================ */

:root {
  /* Brand Colors */
  --navy: #002D57;
  --navy-dark: #001E3C;
  --navy-deeper: #171F2A;
  --olive: #8B8C48;
  --olive-light: #A3A45C;
  --olive-dark: #6E6F38;
  --charcoal: #232A34;
  --slate: #576882;
  --light-gray: #F7F7F7;
  --medium-gray: #E8E8E8;
  --border-gray: #D4D4D4;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-light: #8A8A8A;
  --white: #FFFFFF;

  /* Typography */
  --font-heading: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --section-pad-sm: 60px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

ul {
  list-style: none;
}

/* ============ CONTAINER ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}
.btn--accent:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ============ UTILITY BAR ============ */
.utility-bar {
  background: var(--navy-deeper);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-bar__left {
  display: flex;
  gap: 24px;
}

.utility-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
}
.utility-bar__link:hover {
  color: var(--white);
}

.utility-bar__text {
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--medium-gray);
  transition: box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}

.header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 40px;
}

.header__logo img {
  transition: height 0.3s var(--ease);
}

.header--scrolled .header__logo img {
  height: 40px;
}

/* Navigation */
.nav__list {
  display: flex;
  gap: 8px;
}

.nav__item > a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--charcoal);
  border-radius: 4px;
  transition: all 0.2s var(--ease);
}

.nav__item > a:hover,
.nav__item--active > a {
  color: var(--navy);
  background: rgba(0,45,87,0.05);
}

/* Dropdown */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease);
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.nav__dropdown li a:hover {
  color: var(--navy);
  background: var(--light-gray);
}

/* Header CTA */
.header__cta {
  padding: 10px 24px;
  font-size: 13px;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 100px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav__list a {
  display: block;
  padding: 16px 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--medium-gray);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, var(--charcoal) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(139,140,72,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(87,104,130,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(0,30,60,0.5), transparent);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: var(--section-pad) 0;
}

.hero__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--medium-gray);
  padding: 40px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.trust-bar__item {
  text-align: center;
}

.trust-bar__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.trust-bar__label {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.trust-bar__divider {
  width: 1px;
  height: 48px;
  background: var(--border-gray);
}

/* ============ SECTIONS ============ */
.section {
  padding: var(--section-pad) 0;
}

.section--gray {
  background: var(--light-gray);
}

.section--navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header--light .section__label,
.section__header--light .section__title {
  color: var(--white);
}
.section__header--light .section__label {
  color: var(--olive-light);
}

.section__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ SERVICES GRID ============ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  padding: 40px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--olive);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  border-color: var(--navy);
  box-shadow: 0 16px 48px rgba(0,45,87,0.1);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.service-card--featured::before {
  background: var(--olive-light);
  transform: scaleX(1);
}

.service-card--featured:hover {
  box-shadow: 0 16px 48px rgba(0,45,87,0.3);
}

.service-card__icon {
  color: var(--olive);
  margin-bottom: 24px;
}

.service-card--featured .service-card__icon {
  color: var(--olive-light);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
}

.service-card--featured .service-card__title {
  color: var(--white);
}

.service-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card--featured .service-card__desc {
  color: rgba(255,255,255,0.75);
}

.service-card__list {
  margin-bottom: 24px;
}

.service-card__list li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--light-gray);
  padding-left: 16px;
  position: relative;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive);
  transform: translateY(-50%);
}

.service-card--featured .service-card__list li {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.1);
}

.service-card--featured .service-card__list li::before {
  background: var(--olive-light);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.service-card__link:hover {
  color: var(--olive);
}

.service-card--featured .service-card__link {
  color: var(--olive-light);
}

.service-card--featured .service-card__link:hover {
  color: var(--white);
}

/* ============ ABOUT TEASER ============ */
.about-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-teaser__text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-teaser__highlights {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-teaser__highlights li {
  padding-left: 20px;
  border-left: 3px solid var(--olive);
}

.about-teaser__highlights strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 2px;
}

.about-teaser__highlights span {
  font-size: 14px;
  color: var(--text-secondary);
}

.about-teaser__image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-teaser__image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-teaser__badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
}

.about-teaser__badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--olive-light);
  line-height: 1;
}

.about-teaser__badge-text {
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ============ CASE STUDIES ============ */
.case-studies__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.case-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.case-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.case-card:hover .case-card__image img {
  transform: scale(1.05);
}

.case-card__tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--olive);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.case-card__body {
  padding: 28px;
}

.case-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.case-card__excerpt {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.case-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.case-card__link:hover {
  color: var(--olive);
}

/* ============ INSIGHTS (NAVY SECTION) ============ */
.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.insight-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.4s var(--ease);
}

.insight-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.insight-card__category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--olive-light);
}

.insight-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 16px 0 12px;
  line-height: 1.35;
}

.insight-card__excerpt {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.insight-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--olive-light);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.insight-card__link:hover {
  color: var(--white);
}

/* ============ NEWSLETTER ============ */
.newsletter {
  background: var(--olive);
  padding: 56px 0;
}

.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.newsletter__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.newsletter__text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

.newsletter__form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.newsletter__input {
  padding: 14px 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  width: 300px;
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.newsletter__input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter__input:focus {
  border-color: var(--white);
}

.newsletter .btn--accent {
  background: var(--navy);
  border-color: var(--navy);
}

.newsletter .btn--accent:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deeper);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__about-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: all 0.3s var(--ease);
}

.footer__social-link:hover {
  background: var(--olive);
  color: var(--white);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer__links a:hover {
  color: var(--olive-light);
}

.footer__contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.footer__contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--olive-light);
}

.footer__contact a:hover {
  color: var(--olive-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
}

.footer__bottom a:hover {
  color: var(--olive-light);
}

/* ============ SCROLL ANIMATIONS ============ */
[data-animate] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}

[data-animate].visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, var(--charcoal) 100%);
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(139,140,72,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 16px;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 560px;
}

/* ============ ABOUT INTRO ============ */
.about-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.about-intro__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-intro__image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.about-intro__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.about-intro__stat-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}

.about-intro__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--olive-light);
  line-height: 1;
  margin-bottom: 8px;
}

.about-intro__stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ============ VALUES GRID ============ */
.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  padding: 36px 32px;
  transition: all 0.3s var(--ease);
}

.value-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.value-card__number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--olive);
  opacity: 0.4;
  margin-bottom: 12px;
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============ SERVICES LIST (About page) ============ */
.services-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--light-gray);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  transition: all 0.3s var(--ease);
}

.services-list__item:hover {
  background: var(--navy);
  color: var(--white);
}

.services-list__item:hover svg {
  stroke: var(--olive-light);
}

/* ============ TEAM GRID ============ */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.team-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.team-card__image {
  height: 300px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-card__body {
  padding: 24px;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 14px;
  color: var(--olive);
  font-weight: 500;
  margin-bottom: 4px;
}

.team-card__credentials {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.team-card__email {
  font-size: 13px;
  color: var(--slate);
}

.team-card__email:hover {
  color: var(--navy);
}

/* ============ SERVICES NAV (jump links) ============ */
.services-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: -16px;
}

.services-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 40px;
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  flex: 1;
  max-width: 240px;
  text-align: center;
}

.services-nav__link:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 32px rgba(0,45,87,0.1);
  transform: translateY(-4px);
  color: var(--navy);
}

.services-nav__icon {
  color: var(--olive);
  transition: color 0.3s var(--ease);
}

.services-nav__link:hover .services-nav__icon {
  color: var(--navy);
}

/* ============ SERVICE DETAIL ============ */
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 48px;
}

.service-detail__grid--reverse .service-detail__content {
  order: 2;
}

.service-detail__grid--reverse .service-detail__sidebar {
  order: 1;
}

.service-detail__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-detail__services {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-gray);
}

.service-detail__services-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.service-detail__services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-detail__service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
}

.service-detail__image {
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.service-detail__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Nested team section within service detail */
.service-detail .team {
  padding: 48px 0 0;
}

.service-detail .team .container {
  padding: 0;
}

.service-detail .team .section__header {
  text-align: left;
  margin-bottom: 32px;
}

.service-detail .team__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-detail .team-card__image {
  height: 300px;
}

/* ============ CTA SECTION ============ */
.cta-section__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section__text {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ============ CONTACT PAGE ============ */
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 64px;
  align-items: start;
}

.contact__form-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact__form-text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field:only-child {
  margin-bottom: 20px;
}

.contact-form__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.3px;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  outline: none;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,45,87,0.08);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235A5A5A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form .btn {
  margin-top: 8px;
}

/* Contact Info Cards */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 28px;
  transition: all 0.3s var(--ease);
}

.contact-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-card__icon {
  color: var(--olive);
  margin-bottom: 12px;
}

.contact-card__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-card__text a {
  color: var(--navy);
  font-weight: 500;
}

.contact-card__text a:hover {
  color: var(--olive);
}

/* Map */
.contact-map-section {
  background: var(--light-gray);
  padding-top: 56px;
}

.contact-map__header {
  text-align: center;
  margin-bottom: 32px;
}

#contact-map {
  height: 450px;
  width: 100%;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-teaser__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-teaser__image {
    order: -1;
  }

  .insights__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .utility-bar__right {
    display: none;
  }

  .header__nav,
  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: 70vh;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    text-align: center;
    justify-content: center;
  }

  .trust-bar__inner {
    flex-wrap: wrap;
    gap: 24px;
  }

  .trust-bar__divider {
    display: none;
  }

  .trust-bar__item {
    flex: 1 1 40%;
  }

  .case-studies__grid {
    grid-template-columns: 1fr;
  }

  .insights__grid {
    grid-template-columns: 1fr;
  }

  .newsletter__inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter__form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter__input {
    width: 100%;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .about-intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .services-list__grid {
    grid-template-columns: 1fr 1fr;
  }

  .team__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .page-hero {
    padding: 80px 0 56px;
  }

  .services-nav {
    flex-direction: column;
    align-items: center;
  }

  .services-nav__link {
    max-width: 100%;
    flex-direction: row;
    padding: 20px 24px;
  }

  .service-detail__grid,
  .service-detail__grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }

  .service-detail__sidebar {
    order: -1;
  }

  .service-detail__image {
    position: static;
  }

  .service-detail__services-grid {
    grid-template-columns: 1fr;
  }

  .service-detail .team__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  #contact-map {
    height: 300px;
  }
}
