:root {
  --bg: #f5f7fb;
  --ink: #0b1220;
  --muted: #64748b;
  --primary: #0f3d5e;
  --primary-2: #14517d;
  --accent: #c99a2e;
  --accent-2: #f4c86a;
  --surface: #ffffff;
  --line: rgba(15, 61, 94, 0.13);
  --shadow: 0 24px 70px rgba(15, 61, 94, 0.14);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select {
  font: inherit;
}
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding: 92px 0;
  position: relative;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 20px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    padding 0.25s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 15px 50px rgba(15, 61, 94, 0.08);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}
.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  font-weight: 900;
  letter-spacing: -0.06em;
  box-shadow: 0 14px 35px rgba(15, 61, 94, 0.25);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 70px;
  transform: rotate(34deg);
  right: -10px;
  top: -8px;
  background: rgba(244, 200, 106, 0.35);
}
.brand-copy {
  display: grid;
  line-height: 1.05;
}
.brand-copy strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.brand-copy small {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}
.primary-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #26364b;
  font-size: 14px;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.primary-nav a:hover {
  color: var(--primary);
  background: rgba(15, 61, 94, 0.08);
  transform: translateY(-1px);
}
.primary-nav .nav-cta {
  background: var(--ink);
  color: white;
  padding-inline: 18px;
}
.primary-nav .nav-cta:hover {
  background: var(--primary);
  color: white;
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--ink);
  border-radius: 14px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  margin: 5px auto;
  border-radius: 10px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 148px;
  padding-bottom: 82px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(
      circle at top left,
      rgba(244, 200, 106, 0.24),
      transparent 32%
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(20, 81, 125, 0.11),
      transparent 30%
    ),
    linear-gradient(135deg, #f8fbff 0%, #eef4fb 58%, #ffffff 100%);
}
.hero-bg span {
  position: absolute;
  pointer-events: none;
}
.orbit {
  border: 1px solid rgba(15, 61, 94, 0.12);
  border-radius: 999px;
}
.orbit-one {
  width: 720px;
  height: 720px;
  right: -260px;
  top: 80px;
  animation: float 9s ease-in-out infinite;
}
.orbit-two {
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -80px;
  animation: float 12s ease-in-out infinite reverse;
}
.grid-glow {
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 61, 94, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 61, 94, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}
.hero-panel-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(45vw, 640px);
  min-height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  z-index: 1;
  pointer-events: none;
}
.hero-panel-right img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(-28px 28px 45px rgba(15, 61, 94, 0.18));
  /* animation: heroFloat 8s ease-in-out infinite; */
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}
.eyebrow span,
.section-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(201, 154, 46, 0.12);
}
.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(40px, 6.3vw, 68px);
  line-height: 1;
  letter-spacing: -0.065em;
  /* max-width: 760px; */
}
.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  max-width: 920px;
  color: #334155;
  font-size: clamp(16px, 1.6vw, 19px);
  margin: 0 0 12px;
}
.hero-sub {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 28px;
  max-width: 690px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: 0 16px 38px rgba(15, 61, 94, 0.24);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #241800;
  box-shadow: 0 16px 38px rgba(201, 154, 46, 0.22);
}
.btn-ghost {
  color: var(--primary);
  border-color: rgba(15, 61, 94, 0.2);
  background: rgba(255, 255, 255, 0.65);
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-strip span {
  padding: 9px 13px;
  border: 1px solid rgba(15, 61, 94, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #475569;
  font-weight: 700;
  font-size: 13px;
}
.hero-mini-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.hero-mini-highlights article {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 61, 94, 0.12);
  box-shadow: 0 12px 30px rgba(15, 61, 94, 0.06);
}
.hero-mini-highlights strong {
  display: block;
  color: var(--primary);
  margin-bottom: 6px;
  font-size: 15px;
}
.hero-mini-highlights span {
  color: var(--muted);
  font-size: 14px;
}
.hero-panel {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 34px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(201, 154, 46, 0.75),
    transparent,
    rgba(15, 61, 94, 0.35)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.panel-top small,
.score-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.panel-top strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
}
.status-dot {
  color: #07553b;
  background: rgba(16, 185, 129, 0.13);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}
.score-card {
  padding: 22px;
  background: linear-gradient(135deg, #0b1220, #123c5d);
  border-radius: 24px;
  color: white;
  box-shadow: 0 18px 50px rgba(11, 18, 32, 0.22);
}
.score-card span {
  color: rgba(255, 255, 255, 0.72);
}
.score-card strong {
  display: block;
  font-size: 50px;
  line-height: 1;
  margin: 12px 0;
  letter-spacing: -0.05em;
}
.progress {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
}
.panel-metrics div {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 12px;
  background: white;
}
.panel-metrics strong {
  display: block;
  font-size: 24px;
  color: var(--primary);
  line-height: 1;
}
.panel-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}
.hero-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.hero-journey div {
  padding: 12px;
  border-radius: 18px;
  background: rgba(15, 61, 94, 0.06);
  text-align: center;
}
.hero-journey span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.hero-journey i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(15, 61, 94, 0.25));
}
.framework-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.framework-stack span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(15, 61, 94, 0.08);
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading.left {
  margin-inline: 0;
  text-align: left;
}
.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 14px 0 14px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}
.section-heading:not(.left) h2::after {
  left: 50%;
  transform: translateX(-50%);
}
.section-heading p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-grid-visual .feature-card {
  overflow: hidden;
  padding: 0;
  min-height: 100%;
}
.feature-image {
  height: 220px;
  margin-bottom: 0 !important;
  border-radius: 28px 28px 0 0 !important;
  transition: transform 0.45s ease;
}
.feature-card:hover .feature-image {
  transform: scale(1.06);
}
.feature-card-body {
  padding: 24px;
}
.feature-card,
.mini-card,
.team-card,
.training-card,
.framework-card,
.country-region,
.resource-cards article,
.careers-card,
.contact-form,
.about-card,
.values-card,
.consulting-visual-card,
.training-visual,
.industries-visual-card,
.industry-card,
.countries-visual-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 15px 50px rgba(15, 61, 94, 0.06);
}
.feature-card {
  padding: 28px;
  min-height: 300px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.feature-card:hover,
.framework-card:hover,
.training-card:hover,
.team-card:hover,
.industry-card:hover,
.country-region:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.feature-card .icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 900;
  margin-bottom: 22px;
}
h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
p {
  color: #475569;
}

.practice-section {
  background: #0b1220;
  color: white;
  overflow: hidden;
}
.practice-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(201, 154, 46, 0.22),
      transparent 32%
    ),
    radial-gradient(circle at 88% 80%, rgba(20, 81, 125, 0.55), transparent 35%);
}
.practice-section .container {
  position: relative;
}
.practice-section p,
.practice-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}
.practice-section .section-kicker,
.practice-section h2 {
  color: white;
}
.practice-section .section-heading h2::after {
  background: linear-gradient(
    90deg,
    var(--accent-2),
    rgba(255, 255, 255, 0.75)
  );
}
.practice-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 55px;
  align-items: center;
}
.practice-list {
  display: grid;
  gap: 16px;
}
.practice-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 20px;
  backdrop-filter: blur(12px);
}
.practice-item span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(244, 200, 106, 0.14);
  color: var(--accent-2);
  font-weight: 900;
}
.practice-item h3 {
  color: white;
}
.practice-item p {
  margin: 0;
}

.model-section {
  background: white;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  position: relative;
}
.timeline div {
  background: linear-gradient(180deg, #ffffff, #f7fafc);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 14px;
  text-align: center;
  position: relative;
  box-shadow: 0 14px 40px rgba(15, 61, 94, 0.06);
}
.timeline div::after {
  content: "→";
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 900;
}
.timeline div:last-child::after {
  display: none;
}
.timeline span {
  display: block;
  color: var(--accent);
  font-weight: 900;
  font-size: 13px;
}
.timeline strong {
  display: block;
  margin-top: 6px;
  color: var(--primary);
}

.about-section {
  background: linear-gradient(180deg, #f5f7fb, #ffffff);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 24px;
  align-items: stretch;
}
.about-card {
  padding: 38px;
}
.about-card h2 {
  margin: 12px 0 16px;
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.vision-grid {
  display: grid;
  gap: 20px;
}
.mini-card {
  padding: 30px;
}
.values-wrap {
  margin-top: 24px;
}
.values-card {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.values-card h3 {
  margin: 0;
  white-space: nowrap;
}
.values-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.values-list span,
.pill-grid span,
.training-badges span,
.visual-points span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(15, 61, 94, 0.08);
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
}

.team-section {
  background: white;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  padding: 30px;
  overflow: hidden;
  position: relative;
}
.team-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  top: -70px;
  background: rgba(201, 154, 46, 0.12);
  border-radius: 999px;
}
.avatar {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  font-weight: 900;
  margin-bottom: 20px;
}
ul {
  padding-left: 18px;
  margin: 14px 0 0;
  color: #475569;
}
li + li {
  margin-top: 8px;
}

.consulting-section {
  background: #f8fafc;
}
.consulting-layout {
  display: grid;
  /* grid-template-columns: 0.86fr 1.14fr; */
  gap: 24px;
  align-items: start;
}
.consulting-visual-card,
.industries-visual-card,
.countries-visual-card,
.training-visual {
  padding: 24px;
  overflow: hidden;
}
.consulting-visual-card img,
.training-visual img,
.industries-visual-card img,
.countries-visual-card img,
.feature-image,
.service-panel-image,
.training-card-image,
.country-card-image {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 18px;
  object-fit: cover;
}
.visual-copy h3 {
  margin-bottom: 8px;
}
.visual-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.consulting-content {
  min-width: 0;
}
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  justify-content: center;
}
.tab-btn {
  border: 1px solid var(--line);
  background: white;
  color: var(--primary);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.tab-btn:hover {
  transform: translateY(-1px);
}
.tab-btn.active {
  background: var(--primary);
  color: white;
}
.tab-panels {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.tab-panel {
  display: none;
  animation: fadeIn 0.35s ease;
}
.tab-panel.active {
  display: block;
}
.tab-panel h3 {
  font-size: 26px;
}
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.service-panel-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 24px;
  align-items: center;
}
.service-panel-image {
  width: 100%;
  height: 240px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #f8fbff;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(15, 61, 94, 0.08);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}
.tab-panel:hover .service-panel-image {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 26px 50px rgba(15, 61, 94, 0.14);
}
.service-panel-copy p {
  margin: 0 0 10px;
}

.training-section {
  background: linear-gradient(135deg, #0f3d5e, #0b1220);
  color: white;
  overflow: hidden;
}
.training-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  right: -180px;
  bottom: -220px;
  background: rgba(201, 154, 46, 0.18);
}
.training-section p,
.training-section li {
  color: rgba(255, 255, 255, 0.72);
}
.training-section .section-kicker,
.training-section h2 {
  color: white;
}
.training-section .section-heading h2::after {
  background: linear-gradient(
    90deg,
    var(--accent-2),
    rgba(255, 255, 255, 0.75)
  );
}
.training-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.training-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}
.training-badges span {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}
.training-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.training-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: none;
}
.training-card-image {
  width: 100%;
  height: 190px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  object-fit: cover;
  transition: transform 0.45s ease;
}
.training-card:hover .training-card-image {
  transform: scale(1.04);
}
.training-card h3 {
  color: white;
}
.card-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card-media-light {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}
.card-media-gold {
  background: rgba(244, 200, 106, 0.18);
  color: var(--accent-2);
}
.card-media-blue {
  background: rgba(76, 172, 255, 0.18);
  color: #9bd1ff;
}
.training-visual {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  position: sticky;
  top: 105px;
}

.frameworks-section {
  background: white;
}
.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.framework-card {
  padding: 26px;
  min-height: 270px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.framework-card span {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
}

.industries-section {
  background: #f8fafc;
}
.industries-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.industries-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  padding: 22px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  display: flex;
  gap: 10px;
  align-items: center;
}
.industry-card span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(15, 61, 94, 0.1),
    rgba(201, 154, 46, 0.16)
  );
  font-size: 24px;
  /* margin-bottom: 16px; */
}
.industry-card h3 {
  font-size: 17px;
  margin: 0;
}

.countries-section {
  background: linear-gradient(180deg, #ffffff, #f5f7fb);
}
.countries-showcase {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
  align-items: center;
}
.countries-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 6px;
}
.countries-stats article {
  padding: 16px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid var(--line);
  text-align: center;
}
.countries-stats strong {
  display: block;
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
}
.countries-stats span {
  display: block;
  color: var(--muted);
  margin-top: 7px;
  font-size: 12px;
  font-weight: 800;
}
.country-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.country-card {
  overflow: hidden;
  background: white;
  /* border: 1px solid var(--line); */
  border-radius: 0;
  box-shadow: 0 15px 40px rgba(15, 61, 94, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.country-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.country-card-image {
  height: 100%;
  margin-bottom: 0;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.country-card:hover .country-card-image {
  transform: scale(1.04);
}
.country-meta {
  padding: 16px 18px 18px;
}
.country-meta strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--ink);
}
.country-meta small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}
.flag-img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(15, 61, 94, 0.12);
}

.resources-section {
  background: #0b1220;
  color: white;
}
.resources-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(201, 154, 46, 0.18),
      transparent 30%
    ),
    radial-gradient(circle at 90% 90%, rgba(20, 81, 125, 0.32), transparent 35%);
}
.resources-section .container {
  position: relative;
}
.resources-section p,
.resources-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}
.resources-section h2,
.resources-section .section-kicker {
  color: white;
}
.resources-section .section-heading h2::after {
  background: linear-gradient(
    90deg,
    var(--accent-2),
    rgba(255, 255, 255, 0.75)
  );
}
.resources-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 46px;
  align-items: center;
}
.resource-cards {
  display: grid;
  gap: 14px;
}
.resource-cards article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  padding: 24px;
  box-shadow: none;
}
.resource-cards span {
  color: var(--accent-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}
.resource-cards h3 {
  color: white;
  margin-top: 8px;
}

.careers-section {
  background: #f8fafc;
}
.careers-card {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #ffffff, #eef6ff);
}
.careers-card h2 {
  margin: 12px 0;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.contact-section {
  background: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-copy h2 {
  margin: 14px 0 16px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.contact-points span {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(15, 61, 94, 0.07);
  color: var(--primary);
  font-weight: 900;
}
.contact-form {
  padding: 30px;
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}
.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 15px;
  outline: none;
  background: #f8fafc;
  color: var(--ink);
  transition:
    border 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus {
  border-color: rgba(15, 61, 94, 0.45);
  box-shadow: 0 0 0 5px rgba(15, 61, 94, 0.08);
  background: white;
}
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.form-note.success {
  color: #047857;
  font-weight: 800;
}

.site-footer {
  background: #080e1a;
  color: white;
  padding: 58px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand .brand-copy strong {
  color: white;
}
.site-footer p,
.site-footer small {
  color: rgba(255, 255, 255, 0.62);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.footer-links a {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
  border-radius: 999px;
}
.footer-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 36px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(15, 61, 94, 0.25);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 80;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.09s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.23s;
}
@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -22px, 0);
  }
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero-panel-right {
    display: none;
  }
  .primary-nav a {
    padding-inline: 9px;
    font-size: 13px;
  }
  .brand {
    min-width: unset;
  }
  .feature-grid,
  .framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline {
    grid-template-columns: repeat(4, 1fr);
  }
  .timeline div:nth-child(4)::after {
    display: none;
  }
  .consulting-layout,
  .training-showcase,
  .industries-layout,
  .countries-showcase,
  .service-panel-grid {
    grid-template-columns: 1fr;
  }
  .countries-stats,
  .industries-cards,
  .country-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .training-visual {
    position: static;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .section {
    padding: 76px 0;
  }
  .nav-toggle {
    display: block;
  }
  .primary-nav {
    position: fixed;
    inset: 82px 14px auto 14px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }
  .primary-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .primary-nav a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
  }
  .hero {
    min-height: auto;
    padding-top: 132px;
  }
  .hero-grid,
  .practice-grid,
  .resources-grid,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-panel {
    max-width: 620px;
  }
  .hero-panel-right {
    display: none;
  }
  .values-card,
  .careers-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .values-list {
    justify-content: flex-start;
  }
  .team-grid,
  .industries-cards,
  .country-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .brand-copy strong {
    font-size: 11px;
  }
  .brand-copy small {
    font-size: 11px;
  }
  .brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }
  .hero h1 {
    font-size: clamp(34px, 11vw, 46px);
  }
  .hero-actions .btn,
  .training-visual .btn {
    width: 100%;
  }
  .trust-strip span,
  .hero-mini-highlights,
  .hero-mini-highlights article {
    width: 100%;
  }
  .hero-mini-highlights {
    grid-template-columns: 1fr;
  }
  .panel-metrics,
  .feature-grid,
  .framework-grid,
  .team-grid,
  .timeline,
  .countries-stats,
  .industries-cards,
  .hero-journey,
  .training-cards,
  .practice-item {
    grid-template-columns: 1fr;
  }
  .timeline div::after {
    display: none;
  }
  .feature-card {
    min-height: unset;
  }
  .feature-image,
  .service-panel-image,
  .training-card-image,
  /* .country-card-image, */
  .consulting-visual-card img,
  .training-visual img,
  .industries-visual-card img,
  .countries-visual-card img {
    height: auto;
  }
  .section-heading {
    margin-bottom: 34px;
  }
  .tab-panels {
    padding: 22px;
    border-radius: 24px;
  }
  .tab-panel h3 {
    font-size: 22px;
  }
  .contact-form,
  .about-card,
  .values-card,
  .careers-card,
  .consulting-visual-card,
  .training-visual,
  .industries-visual-card,
  .countries-visual-card {
    padding: 24px;
  }
  .country-region p span,
  .pill-grid span,
  .values-list span,
  .visual-points span,
  .training-badges span {
    width: 100%;
  }
  .service-tabs {
    justify-content: flex-start;
  }
  .country-region,
  .industry-card,
  .training-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.consulting-visual-card img,
.training-visual img,
.industries-visual-card img,
.countries-visual-card img {
  height: 280px;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}
.consulting-visual-card:hover img,
.training-visual:hover img,
.industries-visual-card:hover img,
.countries-visual-card:hover img {
  transform: scale(1.04);
}
.consulting-visual-card,
.training-visual,
.industries-visual-card,
.countries-visual-card,
.feature-card {
  position: relative;
}
.consulting-visual-card::after,
.training-visual::after,
.industries-visual-card::after,
.countries-visual-card::after,
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 55%,
    rgba(11, 18, 32, 0.04) 100%
  );
}
.hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -100px;
  bottom: -110px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 154, 46, 0.18),
    transparent 68%
  );
  animation: pulseGlow 8s ease-in-out infinite;
}
.section-heading h2 {
  overflow: visible;
}
.feature-card,
.training-card,
.framework-card,
.industry-card,
.country-card,
.team-card,
.mini-card,
.about-card,
.values-card,
.contact-form,
.careers-card,
.tab-panels {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.feature-card:hover,
.training-card:hover,
.framework-card:hover,
.industry-card:hover,
.country-card:hover,
.team-card:hover,
.mini-card:hover,
.about-card:hover,
.values-card:hover,
.contact-form:hover,
.careers-card:hover,
.tab-panels:hover {
  box-shadow: 0 24px 60px rgba(15, 61, 94, 0.12);
}
@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}
