:root {
  --navy: #0a1f3a;
  --orange: #fe9601;
  --white: #ffffff;
  --gray-50: #f5f7fa;
  --gray-100: #eef2f6;
  --gray-300: #c8d0da;
  --gray-700: #333333;
  --ink: #152033;
  --muted: #667085;
  --shadow: 0 18px 45px rgba(10, 31, 58, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(10, 31, 58, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.topbar {
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy);
  font-size: 0.84rem;
}

.topbar-inner {
  width: min(100% - 32px, var(--max));
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-weight: 680;
  white-space: nowrap;
}

.topbar-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background-color: var(--orange);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.topbar-icon.icon-whatsapp {
  background-color: transparent;
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--navy);
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(10, 31, 58, 0.14);
}

.brand small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-name {
  max-width: 270px;
  line-height: 1.12;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--gray-700);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 26px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
  font-weight: 750;
  box-shadow: 0 10px 22px rgba(10, 31, 58, 0.18);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-action:hover {
  color: var(--navy);
  background: var(--orange);
  transform: translateY(-1px);
}

.nav-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-color: var(--orange);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.nav-action:hover .nav-arrow {
  background-color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--gray-300);
  background: var(--white);
  border-radius: 4px;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  min-height: calc(88vh - 74px);
  min-height: calc(88svh - 74px);
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 31, 58, 0.95) 0%, rgba(10, 31, 58, 0.8) 43%, rgba(10, 31, 58, 0.2) 100%),
    url("consulting-hero.jpg") right center / contain no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--navy), transparent);
}

.hero-inner {
  position: relative;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 86px 0 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero p {
  max-width: 750px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 2vw, 1.26rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: inherit;
  font-size: inherit;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.action-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.btn-primary {
  color: var(--navy);
  background: var(--orange);
  box-shadow: 0 15px 30px rgba(254, 150, 1, 0.24);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
}

.section {
  padding: 92px 0;
}

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

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

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.kicker {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.25;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 58px;
  align-items: start;
}

.statement {
  padding-left: 24px;
  border-left: 3px solid var(--orange);
  color: var(--navy);
  font-size: 1.38rem;
  line-height: 1.35;
  font-weight: 760;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.pill-grid li {
  padding: 9px 12px;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 720;
}

.insight-panel {
  padding: 28px;
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.insight-panel strong {
  color: var(--navy);
}

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

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(10, 31, 58, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(10, 31, 58, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 150, 1, 0.42);
  box-shadow: var(--shadow);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  font-weight: 850;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(10, 31, 58, 0.1);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(var(--navy), var(--orange));
}

.service-card p,
.card p,
.expert-card p,
.testimonial p {
  color: var(--muted);
}

.service-card h2,
.expert-body h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.service-card h2 .service-number {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h4 {
  margin: 20px 0 0;
  color: var(--navy);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card ul,
.expert-details {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.expert-details li {
  position: relative;
  padding-left: 18px;
  color: var(--gray-700);
}

.service-card li::before,
.expert-details li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 999px;
  content: "";
}

.network {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.network-item {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.dark-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 31, 58, 0.98), rgba(10, 31, 58, 0.9)),
    radial-gradient(circle at 80% 0%, rgba(254, 150, 1, 0.3), transparent 36%);
}

.dark-band h2,
.dark-band h3 {
  color: var(--white);
}

.dark-band .lede {
  color: rgba(255, 255, 255, 0.74);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.metric {
  padding: 26px;
  border-bottom: 3px solid var(--orange);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-weight: 740;
}

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

.testimonial {
  padding: 28px;
  border: 1px solid rgba(10, 31, 58, 0.1);
  border-radius: var(--radius);
  background: var(--white);
}

.testimonial cite {
  display: block;
  margin-top: 20px;
  color: var(--navy);
  font-style: normal;
  font-weight: 820;
}

.cta-band {
  padding: 70px 0;
  color: var(--white);
  background: linear-gradient(110deg, var(--navy), #00417f 72%, var(--orange));
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--white);
}

.page-hero {
  padding: 86px 0 72px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 31, 58, 0.96), rgba(10, 31, 58, 0.84)),
    url("consulting-hero.jpg") center / cover no-repeat;
}

.page-hero .container {
  max-width: 980px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 600;
  line-height: 1.08;
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
}

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

.expert-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(10, 31, 58, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(10, 31, 58, 0.06);
}

.portrait {
  height: 220px;
  overflow: hidden;
  background: var(--gray-100);
}

.expert-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.expert-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.expert-role {
  min-height: 3em;
  margin-bottom: 0;
}

.expert-details {
  flex: 1;
}

.expert-details strong {
  color: var(--navy);
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: var(--navy);
  background: rgba(254, 150, 1, 0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 921px) {
  .experts-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .expert-card {
    grid-column: span 2;
  }

  .expert-card:nth-last-child(2) {
    grid-column: 2 / span 2;
  }
}

.partner {
  padding: 22px;
  border: 1px solid rgba(10, 31, 58, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 780;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 40px;
  align-items: start;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.form-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 148px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.btn:focus,
.nav-action:focus,
.menu-toggle:focus {
  outline: 3px solid rgba(254, 150, 1, 0.34);
  outline-offset: 2px;
}

.office-card {
  padding: 30px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.office-card h2,
.office-card h3 {
  color: var(--white);
}

.office-card a {
  color: var(--white);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-underline-offset: 3px;
}

.office-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.office-list strong {
  display: block;
  color: var(--orange);
}

.site-footer {
  padding: 54px 0 32px;
  color: rgba(255, 255, 255, 0.78);
  background: #001b40;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr 0.65fr minmax(260px, 1fr);
  gap: 34px;
}

.site-footer h3 {
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
}

.footer-brand h3 {
  margin-bottom: 3px;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
}

.footer-contact a,
.footer-contact span:last-child {
  overflow-wrap: anywhere;
}

.contact-icon {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  background-color: var(--orange);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.icon-location {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-5.5 11-8 13-2.5-2-8-8-8-13a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-5.5 11-8 13-2.5-2-8-8-8-13a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.icon-email {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.icon-phone {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.69 2.8a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.33 1.85.56 2.81.69A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.69 2.8a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.33 1.85.56 2.81.69A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

.icon-mobile {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='14' height='20' x='5' y='2' rx='2'/%3E%3Cpath d='M12 18h.01'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='14' height='20' x='5' y='2' rx='2'/%3E%3Cpath d='M12 18h.01'/%3E%3C/svg%3E");
}

.icon-whatsapp {
  background-color: transparent;
  background-image: url("whatsapp-icon.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  -webkit-mask-image: none;
  mask-image: none;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 780;
}

@media (max-width: 920px) {
  .hero::before {
    background:
      linear-gradient(90deg, rgba(10, 31, 58, 0.95) 0%, rgba(10, 31, 58, 0.8) 54%, rgba(10, 31, 58, 0.3) 100%),
      url("consulting-hero.jpg") center / cover no-repeat;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: var(--white);
    border-bottom: 1px solid rgba(10, 31, 58, 0.1);
    box-shadow: var(--shadow);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 15px 4px;
  }

  .nav-links a::after {
    bottom: 8px;
  }

  .nav-action {
    display: none;
  }

  .split,
  .contact-grid,
  .footer-grid,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .cta-band .container {
    display: grid;
  }

  .card-grid,
  .experts-grid,
  .testimonials,
  .metrics,
  .network,
  .partner-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 24px, var(--max));
  }

  .brand small {
    display: none;
  }

  .brand-name {
    max-width: 214px;
    font-size: 0.9rem;
  }

  .topbar-inner {
    width: min(100% - 24px, var(--max));
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 8px 0;
  }

  .topbar-links {
    width: 100%;
    gap: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(10, 31, 58, 0.96), rgba(10, 31, 58, 0.84)),
      url("consulting-hero.jpg") center / cover no-repeat;
  }

  .hero-inner {
    width: min(100% - 24px, var(--max));
    padding: 76px 0 82px;
  }

  .container {
    width: min(100% - 24px, var(--max));
  }

  .section {
    padding: 66px 0;
  }

  .card-grid,
  .service-list,
  .experts-grid,
  .testimonials,
  .metrics,
  .network,
  .partner-row,
  .form {
    grid-template-columns: 1fr;
  }

  .network-item,
  .card,
  .service-card,
  .testimonial,
  .metric,
  .office-card {
    padding: 22px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
