.main-navbar-2tier {
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 18px rgba(11,46,79,0.08);
  background: var(--white);
}

.navbar-top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(25,65,105,0.07);
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  overflow: hidden;
  max-height: 90px;
  opacity: 1;
  transition:
    max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s ease,
    padding 0.3s ease;
  will-change: max-height, opacity, padding;
}

.navbar-brand-center {
  transform: translateX(-350px);
  display: inline-flex;
}

.navbar-brand-center img {
  height: 65px;
}

.main-navbar-2tier.nav-collapsed .navbar-top-strip {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border-bottom: none;
  pointer-events: none;
}

.navbar-download-btn {
  position: absolute;
  right: 300px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 8px 20px;
  border-radius: 50px;
  transition: var(--transition);
}

.navbar-download-btn:hover {
  background: var(--navy);
  color: var(--white) !important;
}

.navbar-bottom-strip {
  background: var(--white);
  border-top: 1px solid #1941690d;
}

.navbar-bottom-strip .nav-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 10px 24px;
  justify-content: center;
}

.navbar-bottom-strip .nav-link {
  color: var(--navy) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.navbar-bottom-strip .nav-link:hover,
.navbar-bottom-strip .nav-link.active {
  color: var(--gold) !important;
}
.navbar-bottom-strip .nav-link::after {
  background: var(--gold) !important;
}
.navbar-bottom-strip .nav-link.nav-cta {
  color: var(--white) !important;
}
.navbar-bottom-strip .nav-link.nav-cta:hover {
  color: var(--white) !important;
}
.navbar-bottom-strip .mega-dropdown li a {
  color: var(--text-dark) !important;
  opacity: 1 !important;
}
.navbar-bottom-strip .mega-dropdown li a:hover {
  color: var(--navy) !important;
}

@media (max-width: 991px) {
  .navbar-brand-center img { transform: none; }
  .navbar-download-btn { position: static; transform: none; margin-left: auto; }
  .navbar-top-strip { flex-wrap: wrap; }
}

.bph-hero {
  position: relative;
  height: 790px;
  min-height: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.bph-slides { position: absolute; inset: 0; z-index: 1; }

.bph-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1.5s ease, transform 7s ease;
}
.bph-slide.active { opacity: 1; transform: scale(1); }

.bph-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg,
    rgba(9,26,42,0.93) 0%,
    rgba(9,26,42,0.72) 48%,
    rgba(9,26,42,0.38) 100%);
}

.bph-content {
  position: relative;
  z-index: 3;
  color: var(--white);
}

.bph-slide-captions { position: relative; min-height: 220px; }
.bph-caption {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}
.bph-caption.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.bph-content h1 {
  color: var(--white);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.bph-hero .bph-content {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 7vw !important;
  padding-right: 7vw !important;
}
.bph-content p {
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.bph-breadcrumb {
  margin-top: 22px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.bph-breadcrumb a { color: rgba(255,255,255,0.75); }
.bph-breadcrumb a:hover { color: var(--gold-light); }

.bph-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.bph-arrow:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-50%) scale(1.08); }
.bph-arrow-left { left: 28px; }
.bph-arrow-right { right: 28px; }

.bph-slide-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.bph-slide-dots .dot {
  width: 34px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.35s ease;
}
.bph-slide-dots .dot.active {
  background: var(--gold-light);
  width: 54px;
}

.bph-scroll-btn {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bph-bob 2s ease-in-out infinite;
  transition: all 0.3s ease;
}
.bph-scroll-btn:hover { background: var(--gold); border-color: var(--gold); }
@keyframes bph-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.bph-hero .bph-caption h1,
.bph-hero .bph-breadcrumb {
  font-family: 'Exo 2', sans-serif;
}
.bph-hero .bph-caption h1 {
  font-weight: 700;
  letter-spacing: 0.01em;
}
.apc-heading-section {
  background: #ffffff;
  padding: 10px 0 50px;
  text-align: center;
  overflow: hidden;
}

.apc-main-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  line-height: 1.15;
}

.apc-main-title::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 4px;
}

.char-reveal-outer {
  text-align: center;
}
.char-reveal-heading .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px) scale(0.6) rotate(6deg);
  filter: blur(6px);
  transition: opacity 0.35s cubic-bezier(0.22,1,0.36,1),
              transform 0.35s cubic-bezier(0.22,1,0.36,1),
              filter 0.35s ease;
}
.char-reveal-heading .ch.on {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  filter: blur(0);
}

.brand-cards-section {
  background: #f5f8fb;
  padding: 20px 0 110px;
}
.brand-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}
.lp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 85px;
  padding-bottom: 26px;
}
.lp-card-img-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: #eef2f6;
  border: 4px solid #ffffff;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(20,48,82,0.18);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.lp-card:hover .lp-card-img-wrap {
  transform: translateX(-50%) translateY(-10px);
  box-shadow: 0 24px 56px rgba(20,48,82,0.25), 0 0 0 3px rgba(227,184,94,0.45);
}
.lp-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-card-body {
  width: 400px;
  height: 460px;
  background: #ffffff;
  border: 1px solid #eef1f5;
  box-shadow: 0 18px 46px rgba(20,48,82,0.10);
  border-radius: 22px;
  padding: 150px 30px 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.lp-card:hover .lp-card-body { background: #ffffff; box-shadow: 0 24px 56px rgba(20,48,82,0.16); }
.lp-card-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 172px;
  height: 86px;
  background: #f5f8fb;
  border-radius: 0 0 50% 50%;
  z-index: 1;
  transition: background 0.0s;
}
.lp-card-body h3 {
  font-size: 1.50rem;
  font-weight: 1200;
  color: var(--navy-dark);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
  line-height: 1.25;
  position: relative;
  z-index: 2;
}
.lp-card-body h3 sup {
  font-size: 0.52em;
  color: var(--gold);
}
.lp-card-body p {
  font-size: 1.00rem;
  line-height: 1.8;
  color: #667284;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 0;
  overflow-y: auto;       
}

.lp-read-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 176px;
  padding: 15px 34px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white) !important;
  background: var(--navy-dark);
  border-radius: 50px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);  
  z-index: 3;
  box-shadow: 0 10px 24px rgba(20,48,82,0.3);
  transition: background 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}
.lp-read-more:hover {
  background: var(--gold);
  transform: translate(-50%, 50%) translateY(-3px);
}

.brand-cards-grid .lp-card:nth-child(2) { transition-delay: 0.12s; }
.brand-cards-grid .lp-card:nth-child(3) { transition-delay: 0.24s; }

@media (max-width: 900px) {
  .brand-cards-grid { grid-template-columns: 1fr; gap: 60px; }
  .lp-card-body { width: 100%; max-width: 400px; }
}
.apc-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  margin-top: 40px;
  margin-bottom: -50px;
}
.apc-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-ltr 18s linear infinite;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(20,41,64,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  gap: 0;
}
.apc-marquee-track span { padding: 0 8px; }
.apc-marquee-wrap:hover .apc-marquee-track { animation-play-state: paused; }

@keyframes marquee-ltr {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-about-brief {
  background: #ffffff;
  padding: 50px 0;
  text-align: center;
}
.brand-brief-text {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #5a6472;
  max-width: 1400px;
  margin: 0 auto;
}
.brand-brief-text strong { color: var(--navy-dark); }
.brand-two-boxes {
  background: #ffffff;
  padding: 90px 0;
}
.two-boxes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.tb-box {
  background: #ffffff;
  border: 1px solid rgba(15,111,92,0.08);
  box-shadow: 0 10px 30px rgba(15,111,92,0.06);
  border-radius: 24px;
  padding: 44px 38px 42px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.45s ease, border-color 0.45s ease;
}
.tb-box::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #d9e6ff, transparent 70%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.tb-box:hover {
  border-color: rgba(227,184,94,0.4);
  box-shadow: 0 26px 52px rgba(15,111,92,0.16);
  transform: translateY(-12px);
}
.tb-box:hover::after { transform: scale(1.35); }

.tb-box-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.tb-icon-img {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  box-shadow: 0 10px 26px var(--navy-dark), 0 0 0 6px rgba(227,184,94,0.12);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  -webkit-user-select: none;
  user-select: none;
}
.tb-box:hover .tb-icon-img {
  transform: scale(1.08) rotate(-1deg);
  box-shadow: 0 16px 34px var(--navy-dark), 0 0 0 6px rgba(227,184,94,0.2);
}

.tb-box h3 {
  font-size: 1.80rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 50;
  position: relative;
  z-index: 2;
}
.tb-box > p {
  font-size: 1.10rem;
  color: #667284;
  margin-bottom: 24px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

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

.brand-analytical {
  background: #eef5fb;
  border-top: 1px solid #e0edf7;
  border-bottom: 1px solid #e0edf7;
  padding: 50px 0;
}
.analytical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.analytical-content h2 {
  font-size: 3.00rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 18px;
  line-height: 1.15;
}
.analytical-content p {
  font-size: 1.35rem;
  line-height: 2.3;
  color: #5a6472;
  margin-bottom: 14px;
}

.instrument-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.instrument-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  background: #ffffff;
  border: 1px solid #dfeaf5;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(20,48,82,0.06);
  transition: all 0.3s ease;
}
.instrument-item:hover {
  border-color: rgba(227,184,94,0.5);
  box-shadow: 0 10px 26px rgba(20,48,82,0.1);
  transform: translateX(6px);
}
.inst-name {
  font-size: 1.3rem;
  font-weight: 650;
  color: var(--navy-dark);
}

.brand-closing-cta {
  background: linear-gradient(135deg, #eef5fb 0%, #eef5fb 50%, #eef5fb 100%);
  padding: 80px 80px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.brand-closing-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,149,47,0.14), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.closing-cta-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.closing-cta-text {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.3;
  margin-bottom: 18px;
}
.closing-cta-text sup { font-size: 0.55em; color: var(--gold); }
.closing-cta-sub {
  font-size: 1.05rem;
  color: #667284;
  line-height: 2.00;
  margin-bottom: 36px;
}
.closing-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-outline-closing {
  border: 1.5px solid rgba(20,48,82,0.35);
  color: var(--navy-dark) !important;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-closing:hover {
  background: var(--navy-dark);
  color: var(--white) !important;
  border-color: var(--navy-dark);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-in-center {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view,
.slide-in-center.in-view {
  opacity: 1;
  transform: none;
}

/* Stagger delay for cards */
.instrument-item:nth-child(odd)  { transition-delay: 0.05s; }
.instrument-item:nth-child(even) { transition-delay: 0.12s; }

.site-footer {
  padding: 36px 0 20px;
}
.footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-grid-v2 {
  grid-template-columns: 1fr 0.6fr 0.7fr 1.7fr;
  align-items: start;
}

.footer-offices-compact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0px 26px;
}

.foc-col-1 { grid-column: 1; }
.foc-col-2 { grid-column: 2; }

.footer-offices-compact::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.footer-offices-compact::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(30px + (100% - 30px) / 2);
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.site-footer .footer-logo {
  height: 140px;
}
.site-footer p {
  font-size: 0.82rem;
  line-height: 1.6;
}
.footer-grid-v2 h5,
.site-footer h5 {
  margin-top: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  line-height: 1.9;
  font-size: 0.85rem;
}

.foc-heading {
  font-size: 0.90rem;
  font-weight: 700;
  color: var(--gold-light);
  padding-bottom: 1px;
  margin-bottom: 10px;
}
.site-footer .footer-grid-v2 ul li {
  margin-bottom: 7px;
  line-height: 2.5;
}
.site-footer .footer-grid-v2 ul li a {
  font-size: 0.82rem;
}
.site-footer .footer-social a {
  width: 34px;
  height: 34px;
  font-size: 0.82rem;
}
.foc-item {
  padding: 18px 0;
}
.foc-item strong {
  display: block;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.foc-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 3px;
}
.foc-line:last-child { margin-bottom: 0; }
.foc-line i {
  color: rgba(227,184,94,0.75);
  font-size: 0.66rem;
  margin-top: 3px;
  width: 12px;
  text-align: center;
  flex-shrink: 0;
}
.foc-line span {
  font-size: 0.7rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.62);
}
.site-footer .footer-bottom {
  font-size: 0.76rem;
  margin-top: 18px;
  padding-top: 14px;
}
@media (max-width: 991px) {
  .bph-hero { height: 80vh; }
  .bph-content h1 { font-size: 2.8rem; }
  .brand-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .two-boxes-grid { grid-template-columns: 1fr; }
  .analytical-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid-v2 { grid-template-columns: 1fr 1fr; }
  .footer-offices-compact { grid-column: span 2; margin-top: 20px; }
}

@media (max-width: 576px) {
  .bph-hero { min-height: 100svh; }
  .bph-content h1 { font-size: 2rem; }
  .bph-arrow { width: 38px; height: 38px; }
  .bph-arrow-left { left: 12px; }
  .bph-arrow-right { right: 12px; }
  .apc-heading-section { padding: 60px 0 36px; }
  .brand-two-boxes { padding: 60px 0; }
  .brand-analytical { padding: 50px 0; }
  .brand-closing-cta { padding: 70px 0; }
  .footer-grid-v2 { grid-template-columns: 1fr; }
  .footer-offices-compact { grid-column: auto; }
  .footer-offices-compact::before,
  .footer-offices-compact::after { display: none; }
  .footer-offices-compact { grid-template-columns: 1fr 1fr; }
}
.rd-parallax {
  position: relative;
  min-height: 700px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;  
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,20,35,0.45), rgba(10,20,35,0.6));
}

.rd-parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 80px 24px;
}

.rd-parallax-content h2 {
  font-size: clamp(32px, 5.2vw, 64px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.rd-parallax-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

@media (max-width: 700px), (hover: none) and (pointer: coarse) {
  .rd-parallax {
    background-attachment: scroll;
    min-height: 380px;
  }
}