﻿:root {
  --navy: #001226;
  --navy-deep: #000b18;
  --brand-blue: #144368;
  --brand-blue-deep: #0f3655;
  --brand-blue-soft: #1e5f93;
  --gold: #d7a33a;
  --gold-bright: #f1bd4a;
  --white: #ffffff;
  --soft-white: rgba(255, 255, 255, 0.86);
  --muted-white: rgba(255, 255, 255, 0.68);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--navy-deep);
  font-family: Arial, Helvetica, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.page-container {
  max-width: 1240px;
  margin: 0 auto;
  padding-right: 31px;
  padding-left: 31px;
}

.hero-section {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 14, 31, 0.98) 0%, rgba(0, 14, 31, 0.9) 34%, rgba(0, 14, 31, 0.38) 67%, rgba(0, 14, 31, 0.18) 100%),
    url("assets/banner.jpeg") center center / cover no-repeat,
    #000e1f;
}

.hero-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.02) 28%, rgba(0, 0, 0, 0.1)),
    radial-gradient(circle at 93% 32%, rgba(10, 117, 204, 0.26), transparent 22%);
  pointer-events: none;
}

.site-navbar {
  position: relative;
  z-index: 30;
  min-height: 76px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.90);
  border-bottom: 1px solid rgba(220, 227, 236, 0.8);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 8px 26px rgba(9, 22, 40, 0.08);
  transition: padding 260ms ease, background-color 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.site-navbar.is-scrolled {
  padding: 6px 0;
  background: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(205, 216, 230, 0.95);
  box-shadow: 0 10px 30px rgba(7, 24, 45, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.brand-logo {
  display: block;
  width: 132px;
  max-width: 100%;
  height: auto;
  transition: width 260ms ease;
}

.site-navbar.is-scrolled .brand-logo {
  width: 118px;
}

.brand-icon {
  position: relative;
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--gold-bright);
  border: 4px solid var(--gold-bright);
  border-right-width: 3px;
  border-radius: 0 50% 50% 0;
  font-weight: 900;
  line-height: 1;
}

.brand-icon::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
  width: 23px;
  content: "";
  border: 3px solid var(--gold-bright);
  border-left-width: 4px;
  border-radius: 0 50% 50% 0;
}

.brand-d {
  position: absolute;
  left: 10px;
  color: transparent;
}

.brand-text {
  display: grid;
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.brand-text strong {
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
}

.brand-text small {
  color: var(--soft-white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.105em;
}

.navbar-nav {
  gap: 34px;
  margin-right: 31px;
}

.site-navbar .nav-link {
  position: relative;
  padding: 18px 0 19px;
  color: #1f2c3f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-navbar.is-scrolled .nav-link {
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-navbar .nav-link,
.site-navbar .nav-cta {
  transition: color 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active {
  color: var(--brand-blue-soft);
}

.site-navbar .nav-link.active::after {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand-blue-soft);
  box-shadow: 0 5px 0 rgba(30, 95, 147, 0.18);
}

.nav-cta {
  min-width: 127px;
  padding: 12px 18px;
  font-size: 12px;
}

.nav-cta,
.btn-gold,
.btn-outline-gold {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0% 100%, auto;
}

.site-navbar .nav-cta {
  color: var(--brand-blue);
  border: 2px solid rgba(20, 67, 104, 0.75);
  background:
    linear-gradient(to right, var(--brand-blue-soft) 0 0) left / 0% 100% no-repeat,
    rgba(255, 255, 255, 0.9);
}

.site-navbar .nav-cta:hover,
.site-navbar .nav-cta:focus {
  color: #ffffff;
  background-size: 100% 100%, auto;
  border-color: var(--brand-blue-soft);
  box-shadow: 0 14px 26px rgba(15, 53, 85, 0.18);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 560ms ease, transform 560ms ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-section {
  color: #101827;
  background: #f8fafd;
  padding: 56px 0 58px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.about-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-copy h2 {
  margin: 0 0 14px;
  color: #071326;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.about-copy p {
  max-width: 680px;
  margin: 0 0 12px;
  color: #2a3445;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.about-highlights {
  margin: 18px 0 0;
  padding-left: 20px;
}

.about-highlights li {
  margin-bottom: 8px;
  color: #243043;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.about-card {
  align-self: center;
  padding: 28px 30px;
  border: 1px solid #dee6f1;
  border-radius: 8px;
  background:
    linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: 0 12px 28px rgba(22, 38, 62, 0.08);
}

.about-card h3 {
  margin: 0 0 18px;
  color: #0f1f34;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.about-metrics {
  display: grid;
  gap: 14px;
}

.about-metrics article {
  padding: 12px 14px;
  border-left: 3px solid rgba(215, 163, 58, 0.92);
  background: rgba(255, 255, 255, 0.78);
}

.about-metrics strong {
  display: block;
  margin-bottom: 3px;
  color: #10233a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.about-metrics span {
  color: #415168;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.what-we-do-card.reveal-on-scroll:nth-child(2),
.industry-card.reveal-on-scroll:nth-child(2),
.approach-step.reveal-on-scroll:nth-child(3),
.leadership-point.reveal-on-scroll:nth-child(2),
.perspective-card.reveal-on-scroll:nth-child(2) {
  transition-delay: 80ms;
}

.what-we-do-card.reveal-on-scroll:nth-child(3),
.industry-card.reveal-on-scroll:nth-child(3),
.approach-step.reveal-on-scroll:nth-child(5),
.leadership-point.reveal-on-scroll:nth-child(3),
.perspective-card.reveal-on-scroll:nth-child(3) {
  transition-delay: 140ms;
}

.what-we-do-card.reveal-on-scroll:nth-child(4),
.industry-card.reveal-on-scroll:nth-child(4),
.approach-step.reveal-on-scroll:nth-child(7),
.leadership-point.reveal-on-scroll:nth-child(4) {
  transition-delay: 200ms;
}

.hero-content h1 {
  max-width: 565px;
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4.25vw, 42px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.24);
}

.title-rule {
  display: block;
  width: 49px;
  height: 3px;
  margin: 21px 0 21px;
  background: var(--gold);
}

.hero-content p {
  max-width: 516px;
  margin: 0 0 25px;
  color: var(--soft-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.btn {
  border-radius: 0;
  text-transform: uppercase;
}

.btn-gold,
.btn-outline-gold {
  display: inline-flex;
  min-width: 186px;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 31px;
  padding: 12px 22px;
  border: 2px solid rgba(20, 67, 104, 0.75);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: color 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease, background-size 320ms ease, filter 260ms ease;
}

.btn-gold {
  color: #ffffff;
  background:
    linear-gradient(to right, var(--brand-blue-soft) 0 0) left / 0% 100% no-repeat,
    linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  box-shadow: 0 10px 20px rgba(20, 67, 104, 0.18);
}

.btn-outline-gold {
  color: var(--brand-blue);
  background:
    linear-gradient(to right, rgba(20, 67, 104, 0.96) 0 0) left / 0% 100% no-repeat,
    rgba(255, 255, 255, 0.88);
}

.btn-gold:hover,
.btn-gold:focus {
  color: #ffffff;
  background-size: 100% 100%, auto;
  border-color: var(--brand-blue-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(15, 53, 85, 0.24);
  filter: brightness(1.02);
  animation: buttonGlow 1.6s ease-in-out infinite;
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
  color: #ffffff;
  background-size: 100% 100%, auto;
  border-color: var(--brand-blue-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(15, 53, 85, 0.18);
  filter: brightness(1.02);
  animation: buttonGlow 1.6s ease-in-out infinite;
}

@keyframes buttonGlow {
  0%,
  100% {
    box-shadow: 0 14px 26px rgba(15, 53, 85, 0.18);
  }

  50% {
    box-shadow: 0 0 0 0 rgba(30, 95, 147, 0.26), 0 18px 30px rgba(15, 53, 85, 0.24);
  }
}

.what-we-do-card,
.industry-card,
.approach-step,
.leadership-point,
.perspective-card,
.about-card,
.conversation-panel,
.footer-column,
.footer-brand-block {
  transition: transform 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}

.what-we-do-card:hover,
.industry-card:hover,
.approach-step:hover,
.leadership-point:hover,
.perspective-card:hover,
.about-card:hover {
  transform: translateY(-5px);
}

.about-card:hover,
.perspective-card:hover,
.conversation-panel:hover {
  box-shadow: 0 14px 30px rgba(19, 55, 86, 0.14);
}

.btn span {
  font-size: 27px;
  font-weight: 400;
  line-height: 0.6;
}

.navbar-toggler {
  border-color: rgba(183, 129, 23, 0.5);
  border-radius: 0;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(215, 163, 58, 0.35);
}


.what-we-do-section {
  color: #101827;
  background: #ffffff;
  padding: 56px 0 58px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 4px 0 0;
  color: #071326;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.what-we-do-card {
  min-height: 168px;
  padding: 0 27px;
  text-align: center;
  border-left: 1px solid #e7e8eb;
}

.what-we-do-card:first-child {
  border-left: 0;
}

.what-we-do-card i {
  display: block;
  height: 48px;
  margin-bottom: 12px;
  color: #111827;
  font-size: 45px;
  line-height: 1;
  -webkit-text-stroke: 0.25px #111827;
}

.what-we-do-card h3 {
  margin: 0 0 12px;
  color: #121a2a;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}

.what-we-do-card p {
  max-width: 155px;
  margin: 0 auto;
  color: #202938;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.58;
}

.industries-section {
  color: #101827;
  background: #f4f6fa;
  padding: 52px 0 56px;
}

.industries-heading {
  margin-bottom: 18px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.industry-card {
  min-height: 76px;
  padding: 0 26px;
  text-align: center;
  border-left: 1px solid #e2e5eb;
}

.industry-card:first-child {
  border-left: 0;
}

.industry-card i {
  display: block;
  height: 38px;
  margin-bottom: 7px;
  color: #111827;
  font-size: 39px;
  line-height: 1;
  -webkit-text-stroke: 0.25px #111827;
}

.industry-card h3 {
  margin: 0;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.24;
}

.approach-section {
  color: #101827;
  background: #ffffff;
  padding: 52px 0 58px;
}

.approach-heading {
  margin-bottom: 15px;
}

.approach-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.approach-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}

.step-number {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  background: #001226;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 0 2px rgba(0, 18, 38, 0.08);
}

.step-copy h3 {
  margin: 5px 0 8px;
  color: #101827;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.step-copy p {
  margin: 0;
  color: #202938;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.step-arrow {
  display: grid;
  min-height: 48px;
  place-items: center;
  color: var(--gold);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.leadership-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 35%, rgba(17, 79, 133, 0.26), transparent 28%),
    linear-gradient(90deg, #001226 0%, #00152e 45%, #000d1d 100%);
  padding: 56px 0 58px;
}

.leadership-layout {
  display: grid;
  grid-template-columns: 1fr 260px 1.25fr;
  gap: 54px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.leadership-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1.1;
  text-transform: uppercase;
}

.leadership-copy h2 {
  margin: 0 0 13px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.leadership-copy p {
  max-width: 300px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.leadership-btn {
  min-width: 241px;
  min-height: 30px;
  padding: 7px 14px;
  font-size: 10px;
  gap: 0;
}

.leadership-photo-wrap {
  display: grid;
  width: 216px;
  height: 216px;
  place-items: center;
  border: 2px solid rgba(215, 163, 58, 0.74);
  border-radius: 50%;
  overflow: hidden;
  justify-self: center;
  background: #0e2740;
  box-shadow: 0 0 42px rgba(11, 70, 126, 0.3);
}

.leadership-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.leadership-points {
  display: grid;
  gap: 18px;
}

.leadership-point {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
}

.leadership-point i {
  color: var(--gold-bright);
  font-size: 31px;
  line-height: 1;
  -webkit-text-stroke: 0.25px var(--gold-bright);
}

.leadership-point p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.leadership-point strong {
  color: #ffffff;
  font-weight: 900;
}

.perspectives-section {
  color: #101827;
  background: #ffffff;
  padding: 56px 0 58px;
}

.perspectives-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
}

.perspectives-top h2 {
  margin: 0;
  color: #071326;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-align: center;
}

.view-insights-link {
  position: absolute;
  right: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #101827;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.view-insights-link span {
  color: var(--gold);
  font-size: 25px;
  font-weight: 400;
  line-height: 0.8;
}

.perspectives-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.perspective-card {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 18px;
  min-height: 169px;
  padding: 0 26px;
  border-left: 1px solid #e2e5eb;
}

.perspective-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.perspective-card:last-child {
  padding-right: 0;
}

.perspective-thumb {
  display: block;
  width: 176px;
  height: 169px;
  object-fit: cover;
  border-radius: 4px;
}

.perspective-copy {
  min-width: 0;
  padding-top: 17px;
}

.perspective-copy span {
  display: block;
  margin: 0 0 8px;
  color: #222b3b;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1.25;
  text-transform: uppercase;
}

.perspective-copy h3 {
  max-width: 230px;
  margin: 0 0 10px;
  color: #071326;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.18;
}

.perspective-copy p {
  max-width: 232px;
  margin: 0 0 13px;
  color: #202938;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.perspective-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.perspective-copy a span {
  margin: 0;
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}

.conversation-section {
  color: #ffffff;
  background: #ffffff;
  padding: 44px 0 56px;
}

.conversation-panel {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 115px;
  padding: 28px 230px 28px 118px;
  overflow: hidden;
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(0, 31, 67, 0.96), rgba(0, 39, 82, 0.91)),
    #002650;
}

.conversation-panel::before,
.conversation-panel::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.conversation-panel::before {
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 11, 24, 0.72), transparent 46%),
    radial-gradient(circle at 83% 38%, rgba(55, 127, 194, 0.28), transparent 28%);
}

.conversation-panel::after {
  right: 82px;
  bottom: 0;
  width: 410px;
  height: 88px;
  opacity: 0.28;
  background:
    linear-gradient(to top, rgba(0, 7, 15, 0.72), rgba(0, 7, 15, 0.72)) 0 52px / 32px 36px no-repeat,
    linear-gradient(to top, rgba(0, 7, 15, 0.72), rgba(0, 7, 15, 0.72)) 38px 35px / 22px 53px no-repeat,
    linear-gradient(to top, rgba(0, 7, 15, 0.72), rgba(0, 7, 15, 0.72)) 70px 48px / 44px 40px no-repeat,
    linear-gradient(to top, rgba(0, 7, 15, 0.72), rgba(0, 7, 15, 0.72)) 124px 18px / 20px 70px no-repeat,
    linear-gradient(to top, rgba(0, 7, 15, 0.72), rgba(0, 7, 15, 0.72)) 154px 43px / 36px 45px no-repeat,
    linear-gradient(to top, rgba(0, 7, 15, 0.72), rgba(0, 7, 15, 0.72)) 205px 8px / 26px 80px no-repeat,
    linear-gradient(to top, rgba(0, 7, 15, 0.72), rgba(0, 7, 15, 0.72)) 242px 31px / 46px 57px no-repeat,
    linear-gradient(to top, rgba(0, 7, 15, 0.72), rgba(0, 7, 15, 0.72)) 302px 47px / 70px 41px no-repeat;
}

.conversation-icon,
.conversation-copy,
.conversation-btn {
  position: relative;
  z-index: 1;
}

.conversation-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--gold-bright);
  font-size: 44px;
  line-height: 1;
}

.conversation-copy h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.conversation-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.conversation-btn {
  min-width: 218px;
  min-height: 43px;
  gap: 29px;
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366 0%, #158f45 100%);
  border: 3px solid rgba(20, 67, 104, 0.3);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(21, 143, 69, 0.34), 0 0 0 0 rgba(30, 95, 147, 0.28), 0 0 18px rgba(36, 211, 102, 0.32);
  animation: whatsappPulse 2.4s ease-in-out infinite;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.whatsapp-float i {
  font-size: 32px;
  line-height: 1;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 34px rgba(21, 143, 69, 0.4), 0 0 0 14px rgba(30, 95, 147, 0.18), 0 0 24px rgba(36, 211, 102, 0.38);
  filter: saturate(1.05);
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 14px 28px rgba(21, 143, 69, 0.34), 0 0 0 0 rgba(30, 95, 147, 0.28), 0 0 18px rgba(36, 211, 102, 0.32);
  }

  50% {
    box-shadow: 0 18px 34px rgba(21, 143, 69, 0.46), 0 0 0 16px rgba(30, 95, 147, 0.12), 0 0 28px rgba(36, 211, 102, 0.44);
  }
}

.site-footer {
  color: #101827;
  background: #ffffff;
  border-top: 1px solid #e7ecf3;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 1.1fr 1.2fr;
  min-height: 155px;
  border-top: 0;
}

.footer-brand-block,
.footer-column {
  padding: 20px 46px 19px;
  border-left: 1px solid #e2e8f0;
}

.footer-brand-block {
  padding-left: 0;
  border-left: 0;
}

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

.footer-brand .brand-logo {
  width: 214px;
}

.footer-brand-block p,
.footer-column p,
.footer-column a {
  color: #3a4557;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.footer-brand-block p {
  max-width: 282px;
  margin: 0;
}

.footer-column h2 {
  margin: 0 0 13px;
  color: #0f1f34;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-connect a,
.footer-subscribe p,
.footer-subscribe label,
.footer-subscribe input,
.footer-subscribe button {
  color: #1b2638;
}

.footer-column nav {
  display: grid;
  gap: 5px;
}

.footer-column a {
  display: inline-flex;
  width: fit-content;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus {
  color: var(--gold-bright);
}

.footer-connect {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-connect h2 {
  margin-bottom: 3px;
}

.footer-connect p {
  display: flex;
  gap: 12px;
  margin: 0;
}

.footer-connect i {
  color: #4e5d75;
  font-size: 16px;
  line-height: 1.2;
}

.footer-subscribe p {
  max-width: 278px;
  margin: 0 0 14px;
}

.subscribe-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 43px;
  max-width: 248px;
  min-height: 39px;
  border: 1px solid rgba(183, 129, 23, 0.35);
  background: #f8fafc;
}

.subscribe-form input {
  min-width: 0;
  color: #101827;
  background: transparent;
  border: 0;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 600;
  outline: none;
}

.subscribe-form input::placeholder {
  color: #6b7280;
}

.subscribe-form button {
  display: grid;
  place-items: center;
  color: #061221;
  background: var(--gold-bright);
  border: 0;
  font-size: 30px;
  line-height: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 14px 0 16px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span {
  margin: 0;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-bottom p {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .navbar-nav {
    gap: 22px;
    margin-right: 22px;
  }
}

@media (max-width: 991.98px) {
  .about-section {
    padding: 50px 0 54px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-copy h2 {
    font-size: 28px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block,
  .footer-column {
    padding: 26px 24px;
  }

  .footer-brand-block {
    border-left: 0;
  }

  .footer-column:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #e2e8f0;
  }

  .footer-column:nth-child(4) {
    border-top: 1px solid #e2e8f0;
  }


  .conversation-panel {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 28px 34px;
  }

  .conversation-btn {
    grid-column: 2;
    justify-self: start;
  }


  .perspectives-section {
    padding: 48px 0;
  }

  .perspectives-top {
    display: grid;
    gap: 14px;
  }

  .view-insights-link {
    position: static;
    justify-self: center;
  }

  .perspectives-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 680px;
    margin: 0 auto;
  }

  .perspective-card,
  .perspective-card:first-child,
  .perspective-card:last-child {
    grid-template-columns: 200px minmax(0, 1fr);
    padding: 0;
    border-left: 0;
  }

  .perspective-thumb {
    width: 200px;
    height: 170px;
  }


  .leadership-section {
    padding: 52px 0;
  }

  .leadership-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .leadership-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .leadership-points {
    max-width: 420px;
    margin: 0 auto;
    text-align: left;
  }


  .approach-section {
    padding: 42px 0 46px;
  }

  .approach-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 34px;
    max-width: 720px;
  }

  .step-arrow {
    display: none;
  }


  .industries-section {
    padding: 36px 0 40px;
  }

  .industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .industry-card:nth-child(3n + 1) {
    border-left: 0;
  }


  .what-we-do-section {
    padding: 50px 0 54px;
  }

  .what-we-do-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .what-we-do-card:nth-child(3n + 1) {
    border-left: 0;
  }

  .hero-section {
    min-height: 700px;
  }

  .site-navbar {
    min-height: auto;
  }

  .navbar-collapse {
    margin-top: 18px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
  }

  .navbar-nav {
    gap: 0;
    margin-right: 0;
  }

  .site-navbar .nav-link {
    padding: 12px 0;
  }

  .site-navbar .nav-link.active::after {
    bottom: 5px;
    width: 40px;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .hero-content {
    padding-top: 58px;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    min-height: 620px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float i {
    font-size: 28px;
  }

  .about-copy h2 {
    font-size: 25px;
  }

  .about-copy p,
  .about-highlights li {
    font-size: 13px;
  }

  .about-card {
    padding: 22px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand-block,
  .footer-column,
  .footer-column:nth-child(4) {
    border-left: 0;
    border-top: 1px solid #e2e8f0;
    padding: 24px 0;
    text-align: center;
  }

  .footer-brand-block {
    border-top: 0;
  }

  .footer-main,
  .footer-brand-block,
  .footer-column,
  .footer-connect,
  .footer-subscribe,
  .footer-bottom {
    justify-items: center;
  }

  .footer-brand,
  .footer-column a,
  .footer-connect p,
  .subscribe-form {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-connect,
  .footer-subscribe,
  .footer-column nav {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 16px 0;
  }


  .conversation-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 24px;
    text-align: center;
  }

  .conversation-icon {
    margin: 0 auto;
  }

  .conversation-btn {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
    justify-content: space-between;
  }


  .perspective-card {
    grid-template-columns: 1fr;
  }

  .perspective-thumb {
    width: 100%;
    height: 210px;
  }

  .perspective-copy {
    padding-top: 0;
  }

  .perspective-copy h3,
  .perspective-copy p {
    max-width: none;
  }

  .leadership-copy h2 {
    font-size: 27px;
  }

  .leadership-photo-wrap {
    width: 190px;
    height: 190px;
  }

  .leadership-btn {
    width: 100%;
    min-width: 0;
  }


  .approach-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .approach-step {
    max-width: 320px;
    margin: 0 auto;
  }


  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 26px;
  }

  .industry-card {
    padding: 0 18px;
  }

  .industry-card:nth-child(odd) {
    border-left: 0;
  }

  .industry-card:nth-child(3n + 1):not(:first-child) {
    border-left: 1px solid #e2e5eb;
  }


  .section-heading h2 {
    font-size: 24px;
  }

  .what-we-do-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
  }

  .what-we-do-card {
    padding: 0 18px;
  }

  .what-we-do-card:nth-child(odd) {
    border-left: 0;
  }

  .what-we-do-card:nth-child(3n + 1):not(:first-child) {
    border-left: 1px solid #e7e8eb;
  }

  .page-container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand-icon {
    display: none;
  }

  .brand-logo {
    width: 116px;
  }

  .footer-brand .brand-logo {
    width: 176px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-actions {
    gap: 14px;
  }

  .btn-gold,
  .btn-outline-gold {
    width: 100%;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-navbar,
  .brand-logo,
  .reveal-on-scroll,
  .btn-gold,
  .btn-outline-gold,
  .nav-cta,
  .what-we-do-card,
  .industry-card,
  .approach-step,
  .leadership-point,
  .perspective-card,
  .about-card,
  .conversation-panel,
  .footer-column,
  .footer-brand-block,
  .whatsapp-float {
    transition: none;
    animation: none;
  }
}
