:root {
  --navy-950: #041122;
  --navy-900: #071b38;
  --navy-800: #0f2d5c;
  --navy-700: #183e79;
  --ink-950: #05070b;
  --ink-900: #0d1117;
  --ink-700: #2e3846;
  --slate-100: #edf2f8;
  --slate-200: #d9e1ed;
  --slate-300: #c5d0df;
  --white: #ffffff;
  --shadow-soft: 0 22px 60px rgba(4, 17, 34, 0.12);
  --shadow-card: 0 14px 38px rgba(4, 17, 34, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(15, 45, 92, 0.08), transparent 24rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 28%, #f8fafc 100%);
  overflow-x: hidden;
}

h1,
h2,
h3,
.navbar-brand strong,
.eyebrow,
.section-kicker,
.card-label,
.client-label {
  font-family: "Barlow Semi Condensed", sans-serif;
  letter-spacing: 0.01em;
}

a {
  text-decoration: none;
}

.content-section,
.hero-section {
  position: relative;
  scroll-margin-top: 6.5rem;
}

.section-shell {
  padding: 7rem 0 3rem;
}

.content-section {
  padding: 6.5rem 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(7, 27, 56, 0.03), rgba(7, 27, 56, 0.06)),
    #f6f9fd;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-700);
  margin-bottom: 1rem;
}

.section-heading .section-kicker {
  justify-content: center;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.section-title {
  font-size: clamp(2.35rem, 3.5vw, 3.9rem);
  line-height: 0.96;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.section-copy {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-700);
  max-width: 46rem;
}

.section-heading {
  max-width: 62rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 3rem;
}

.section-heading .section-copy {
  margin-right: auto;
  margin-left: auto;
}

.navbar {
  padding: 1rem 0;
  background: rgba(4, 17, 34, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(0);
  transition:
    transform 0.35s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.navbar.nav-hidden {
  transform: translateY(-110%);
}

.navbar.nav-scrolled {
  background: rgba(4, 17, 34, 0.9);
  box-shadow: 0 12px 34px rgba(4, 17, 34, 0.24);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.5rem 0.8rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  color: var(--white);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.navbar-brand:hover,
.navbar-brand:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
  outline: none;
}

.navbar-brand:visited,
.navbar-brand:active {
  color: var(--white);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--white), #c8d7ef);
  color: var(--navy-900);
  font-weight: 800;
}

.brand-copy {
  display: grid;
  /* place-items: center; */
  min-height: 1.2rem;
  line-height: 1;
  text-align: center;
}

.brand-copy strong {
  display: block;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: lowercase;
}

.brand-copy small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white);
}

.navbar-toggler {
  color: var(--white);
  font-size: 1.8rem;
}

.btn-brand {
  background: linear-gradient(145deg, var(--navy-700), var(--navy-900));
  border: none;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(15, 45, 92, 0.28);
}

.btn-brand:hover,
.btn-brand:focus {
  color: var(--white);
  background: linear-gradient(145deg, #214f98, var(--navy-900));
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 16rem),
    radial-gradient(circle at 85% 30%, rgba(24, 62, 121, 0.85), transparent 18rem),
    linear-gradient(135deg, var(--ink-950) 0%, var(--navy-950) 40%, var(--navy-900) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent);
  opacity: 0.18;
}

.hero-section h1 {
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.9;
  max-width: 10ch;
  margin-bottom: 1.35rem;
  animation: fadeUp 0.8s ease both;
}

.hero-copy {
  max-width: 42rem;
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  animation: fadeUp 0.8s 0.12s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.75rem;
  animation: fadeUp 0.8s 0.24s ease both;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeUp 0.8s 0.36s ease both;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.hero-showcase {
  position: relative;
  margin-bottom: 1.5rem;
  padding-right: 1rem;
  animation: fadeUp 0.8s 0.1s ease both;
}

.section-media-card {
  position: relative;
  margin: 0;
  min-height: 21rem;
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid rgba(15, 45, 92, 0.12);
  background: #dbe6f2;
  box-shadow: var(--shadow-card);
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-media-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(4, 17, 34, 0.82));
  z-index: 0;
}

.section-media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(4, 17, 34, 0.16);
}

.hero-image-slider {
  position: relative;
}

.hero-image-slider .section-media-card {
  margin: 0;
}

.hero-image-slider .carousel-item {
  margin: 0;
  position: relative;
  height: 100%;
  transition: transform 0.85s ease-in-out;
}

.hero-image-slider .carousel-inner {
  overflow: hidden;
}

.hero-image-slider .carousel-control-prev,
.hero-image-slider .carousel-control-next {
  width: 3.4rem;
  height: 3.4rem;
  top: 50%;
  bottom: auto;
  border-radius: 50%;
  background: rgba(4, 17, 34, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, background 0.2s ease;
}

.hero-image-slider .carousel-control-prev {
  left: 1rem;
}

.hero-image-slider .carousel-control-next {
  right: 1rem;
}

.hero-image-slider:hover .carousel-control-prev,
.hero-image-slider:hover .carousel-control-next,
.hero-image-slider:focus-within .carousel-control-prev,
.hero-image-slider:focus-within .carousel-control-next {
  opacity: 1;
}

.hero-image-slider .carousel-control-prev:hover,
.hero-image-slider .carousel-control-next:hover {
  background: rgba(4, 17, 34, 0.68);
}

.hero-image-slider .carousel-indicators {
  right: 1.1rem;
  bottom: 1rem;
  left: auto;
  z-index: 2;
  justify-content: flex-end;
  margin: 0;
  gap: 0.35rem;
}

.hero-image-slider .carousel-indicators [data-bs-target] {
  width: 0.55rem;
  height: 0.55rem;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.hero-image-slider .carousel-indicators .active {
  width: 1.6rem;
  border-radius: 999px;
  background: var(--white);
}

.section-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 21rem;
  object-fit: cover;
}

.section-media-card figcaption {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.2rem;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.section-media-card-hero .carousel-item.active figcaption {
  animation: captionRise 0.7s ease both;
}

.section-media-card-hero {
  height: clamp(22rem, 44vw, 30rem);
  min-height: 0;
}

.section-media-card-hero .carousel-item {
  height: 100%;
  min-height: 0;
}

.section-media-card-hero img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 5s ease, object-position 5s ease;
}

.section-media-card-hero .carousel-item.active img {
  animation: heroSlideDrift 5s ease forwards;
}

.section-media-card-hero .slide-workshop img {
  object-position: center center;
}

.section-media-card-hero .slide-motorcycle img {
  object-position: center 58%;
}

.section-media-card-hero .slide-two-wheeler-service img,
.section-media-card-hero .slide-two-wheeler-bays img,
.section-media-card-hero .slide-two-wheeler-advisor img {
  object-position: center center;
}

.section-media-card-hero .slide-consultation img,
.section-media-card-hero .slide-profitability img {
  object-position: center top;
}

.section-media-card-hero .slide-team img {
  object-position: center 35%;
}

.section-media-card-hero .slide-oem img {
  object-position: center 42%;
}

.section-media-card-hero .slide-structured img {
  object-position: center 45%;
}

.section-media-card-tall {
  min-height: 100%;
}

.section-media-card-tall img {
  min-height: 30rem;
}

@keyframes heroSlideDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes captionRise {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-media-badge {
  position: absolute;
  z-index: 2;
  max-width: 13rem;
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(4, 17, 34, 0.18);
}

.hero-media-badge span,
.hero-media-badge strong {
  display: block;
}

.hero-media-badge span {
  margin-bottom: 0.25rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-700);
}

.hero-media-badge strong {
  color: var(--ink-900);
  line-height: 1.25;
}

.hero-media-badge-top {
  top: 1rem;
  left: -0.65rem;
}

.hero-media-badge-bottom {
  right: 0;
  bottom: 4.8rem;
}

.hero-panel {
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  animation: fadeUp 0.8s 0.18s ease both;
}

.hero-panel-header,
.hero-panel-body {
  display: grid;
  gap: 1rem;
}

.hero-panel-header {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 1rem;
}

.panel-tag,
.panel-chip {
  border-radius: 999px;
  padding: 0.6rem 0.95rem;
  font-size: 0.88rem;
}

.panel-tag {
  background: rgba(255, 255, 255, 0.12);
}

.panel-chip {
  background: var(--white);
  color: var(--navy-900);
  font-weight: 700;
}

.hero-panel-body {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(4, 17, 34, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.metric-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.6;
}

.service-card:hover,
.reason-card:hover,
.leader-card:hover,
.client-block:hover,
.impact-card:hover,
.testimonial-card:hover,
.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(4, 17, 34, 0.12);
}

.service-card h3,
.engagement-card h3,
.reason-card h3,
.leader-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-card p,
.leader-card p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.75;
}

.glass-card,
.vision-card,
.service-card,
.approach-step,
.engagement-card,
.reason-card,
.client-block,
.leader-card {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.glass-card {
  padding: 2rem;
  border: 1px solid rgba(15, 45, 92, 0.08);
}

.about-layout {
  align-items: start;
}

.about-visual-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.about-media {
  height: 22rem;
  min-height: 22rem;
  max-height: 22rem;
}

.about-media img {
  height: 22rem;
  min-height: 22rem;
  max-height: 22rem;
}

.highlight-list {
  display: grid;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #f9fbff, #eef3fb);
}

.highlight-item i {
  color: var(--navy-700);
  font-size: 1.2rem;
}

.dark-card {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 12rem),
    linear-gradient(140deg, var(--ink-950), var(--navy-900));
  color: var(--white);
}

.light-card {
  padding: 2rem;
}

.vision-card {
  padding: 2rem;
}

.vision-card .section-title {
  font-size: clamp(1.9rem, 2.4vw, 2.8rem);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.mission-item {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #f8fbff, #eef3fb);
  font-weight: 700;
}

.mission-item i {
  color: var(--navy-700);
  font-size: 1.15rem;
}

.service-card,
.reason-card,
.leader-card {
  padding: 2rem;
  border: 1px solid rgba(15, 45, 92, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-icon,
.reason-card i {
  display: inline-grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.approach-grid {
  display: grid;
  gap: 1.65rem;
  position: relative;
  max-width: 66rem;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.approach-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--navy-700), transparent);
  transform: translateX(-50%);
}

.approach-step {
  position: relative;
  width: calc(50% - 3.2rem);
  min-height: 0;
  padding: 1.5rem 1.6rem;
  overflow: visible;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
  border: 1px solid rgba(15, 45, 92, 0.09);
  box-shadow: 0 18px 45px rgba(4, 17, 34, 0.08);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.approach-step:nth-child(odd) {
  margin-right: auto;
}

.approach-step:nth-child(even) {
  margin-left: auto;
}

.approach-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.35rem;
  border-radius: 1.35rem 0 0 1.35rem;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-700));
  opacity: 0.92;
}

.approach-step::after {
  content: "";
  position: absolute;
  top: 2.95rem;
  width: 3.2rem;
  height: 2px;
  background: rgba(24, 62, 121, 0.34);
}

.approach-step:nth-child(odd)::after {
  right: -3.2rem;
}

.approach-step:nth-child(even)::after {
  left: -3.2rem;
}

.approach-step span {
  display: inline-grid;
  place-items: center;
  position: absolute;
  top: 1.75rem;
  z-index: 2;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  margin-bottom: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border: 0.32rem solid #f6f9fd;
  box-shadow: 0 14px 26px rgba(4, 17, 34, 0.18);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.approach-step:nth-child(odd) span {
  right: -4.75rem;
}

.approach-step:nth-child(even) span {
  left: -4.75rem;
}

.approach-step small {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--navy-700);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.approach-step h3,
.approach-step p {
  width: 100%;
}

.approach-step h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 1.55vw, 1.7rem);
  line-height: 1.08;
}

.approach-step p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.65;
}

.approach-step:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 62, 121, 0.2);
  box-shadow: 0 24px 55px rgba(4, 17, 34, 0.12);
}

.approach-subsection {
  margin-top: 4.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(15, 45, 92, 0.1);
}

.approach-subsection .section-heading {
  margin-bottom: 2rem;
}

.approach-engagement {
  margin-top: 0;
}

.engagement-card {
  padding: 2rem;
  border: 1px solid rgba(15, 45, 92, 0.07);
}

.engagement-card.dark-card li,
.engagement-card.dark-card .card-label {
  color: rgba(255, 255, 255, 0.86);
}

.outcome-card {
  background: linear-gradient(180deg, #f8fbff, #eef4fb);
}

.card-label,
.client-label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-700);
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.clean-list li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.7;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: currentColor;
}

.reason-card {
  min-height: 15rem;
}

.reason-card h3 {
  margin-bottom: 0;
}

.client-block {
  padding: 2rem;
  border: 1px solid rgba(15, 45, 92, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-note {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fbff, #edf4fb);
  border: 1px solid rgba(15, 45, 92, 0.08);
  color: var(--navy-900);
  font-weight: 700;
}

.impact-note i {
  color: var(--navy-700);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.impact-card,
.testimonial-card,
.resource-card {
  height: 100%;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(15, 45, 92, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-header,
.resource-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.impact-title,
.resource-meta h3 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink-900);
}

.impact-header i,
.resource-meta i,
.quote-badge {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.impact-comparison {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.impact-state {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 45, 92, 0.08);
}

.impact-state small {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-state p,
.testimonial-card p,
.resource-meta p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.75;
}

.state-before {
  background: linear-gradient(180deg, #f7f9fc, #eef2f7);
}

.state-before small {
  color: #687284;
}

.state-after {
  background: linear-gradient(180deg, #f3f8ff, #e6f0fb);
}

.state-after small {
  color: var(--navy-700);
}

.client-tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 1rem;
}

.client-logo-card {
  display: grid;
  place-items: center;
  gap: 0;
  min-height: 6.75rem;
  padding: 1rem 0.85rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, #fbfdff, #eef4fb);
  border: 1px solid rgba(15, 45, 92, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-logo-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 30px rgba(4, 17, 34, 0.1);
}

.client-logo-frame {
  width: 100%;
  min-height: 3.2rem;
  display: grid;
  place-items: center;
}

.client-logo-image {
  display: block;
  max-width: 100%;
  max-height: 3.4rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-logo-mask {
  --logo-color: var(--navy-900);
  display: block;
  width: 100%;
  max-width: 4.2rem;
  height: 3.4rem;
  background-color: var(--logo-color);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.client-logo-mask-honda {
  --logo-color: #e40521;
  -webkit-mask-image: url("assets/logos/honda.svg");
  mask-image: url("assets/logos/honda.svg");
}

.client-logo-mask-suzuki {
  --logo-color: #e30613;
  -webkit-mask-image: url("assets/logos/suzuki.svg");
  mask-image: url("assets/logos/suzuki.svg");
}

.client-logo-mask-yamaha {
  --logo-color: #d61f26;
  -webkit-mask-image: url("assets/logos/yamaha.svg");
  mask-image: url("assets/logos/yamaha.svg");
}

.client-logo-mask-hyundai {
  --logo-color: #002c5f;
  -webkit-mask-image: url("assets/logos/hyundai.svg");
  mask-image: url("assets/logos/hyundai.svg");
}

.client-logo-mask-toyota {
  --logo-color: #eb0a1e;
  -webkit-mask-image: url("assets/logos/toyota.svg");
  mask-image: url("assets/logos/toyota.svg");
}

.client-logo-mask-skoda {
  --logo-color: #00833e;
  -webkit-mask-image: url("assets/logos/skoda.svg");
  mask-image: url("assets/logos/skoda.svg");
}

#leadership {
  background: #262c33;
  color: var(--white);
}

#leadership .section-title,
#leadership .section-copy {
  color: var(--white);
}

#leadership .section-copy {
  color: rgba(255, 255, 255, 0.76);
}

.testimonial-carousel {
  position: relative;
  max-width: 74rem;
  margin: 0 auto;
  padding: 0 4rem 3.5rem;
}

.testimonial-carousel .carousel-inner {
  overflow: visible;
  min-height: 16.8rem;
}

.testimonial-carousel .carousel-item {
  transition: opacity 0.75s ease-in-out;
}

.testimonial-hero {
  border-radius: 0.6rem;
  background: #1d2838;
  box-shadow: 0 18px 38px rgba(4, 17, 34, 0.14);
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.testimonial-hero.is-updating {
  opacity: 0.35;
}

.testimonial-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 12rem;
  align-items: center;
  gap: 1.6rem;
  height: 13.8rem;
  min-height: 13.8rem;
  padding: 2.2rem 2.6rem;
  color: var(--white);
}

.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 0.8;
  opacity: 0.96;
}

.testimonial-hero p {
  margin: 0;
  max-width: 38rem;
  min-height: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.05vw, 2rem);
  line-height: 1.18;
}

.testimonial-author {
  display: grid;
  grid-template-columns: 2.9rem minmax(0, 1fr);
  gap: 0.2rem 0.75rem;
  align-items: center;
  justify-self: end;
  min-width: 13rem;
}

.testimonial-author strong {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.testimonial-author small {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.testimonial-author img,
.mini-author img {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author img {
  grid-column: 1;
  grid-row: span 2;
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 18px rgba(4, 17, 34, 0.12);
}

.testimonial-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  align-items: stretch;
  gap: 1.4rem;
  max-width: 62rem;
  margin: 2.6rem auto 0;
}

.testimonial-mini-card {
  display: flex;
  flex-direction: column;
  min-height: 14rem;
  padding: 1.35rem;
  border-radius: 0.65rem;
  background: var(--white);
  box-shadow: 0 18px 35px rgba(4, 17, 34, 0.12);
  border: 1px solid rgba(15, 45, 92, 0.07);
}

.testimonial-mini-card h3 {
  margin-bottom: 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.05;
}

.testimonial-stars {
  display: flex;
  gap: 0.28rem;
  margin-bottom: 0.75rem;
  color: #f7b733;
  font-size: 0.85rem;
}

.testimonial-mini-card p {
  margin: 0 0 1rem;
  color: var(--ink-700);
  line-height: 1.55;
  min-height: 3.1rem;
}

.mini-author {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.35rem 0.7rem;
  align-items: center;
  margin-top: auto;
}

.mini-author img {
  grid-row: span 2;
  width: 2.25rem;
  height: 2.25rem;
}

.mini-author strong,
.mini-author span {
  display: block;
  line-height: 1.2;
}

.mini-author strong {
  color: var(--ink-900);
  font-size: 0.92rem;
}

.mini-author span {
  color: var(--ink-700);
  font-size: 0.78rem;
  font-weight: 600;
}

.mini-author span:last-child {
  width: auto;
}

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
  width: 3rem;
  height: 3rem;
  top: 22.6rem;
  bottom: auto;
  border-radius: 50%;
  background: #ece3ff;
  opacity: 1;
  color: #8a6dff;
  transform: translateY(-50%);
}

.testimonial-carousel .carousel-control-prev-icon,
.testimonial-carousel .carousel-control-next-icon {
  filter: invert(49%) sepia(72%) saturate(1754%) hue-rotate(222deg) brightness(101%) contrast(101%);
}

.testimonial-carousel .carousel-control-prev {
  left: 0;
}

.testimonial-carousel .carousel-control-next {
  right: 0;
}

.testimonial-carousel .carousel-indicators {
  position: static;
  margin: 1.35rem 0 0;
}

.testimonial-carousel .carousel-indicators [data-bs-target] {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 50%;
  background: var(--navy-900);
  opacity: 0.26;
}

.testimonial-carousel .carousel-indicators .active {
  width: 1.7rem;
  border-radius: 999px;
  opacity: 1;
}

.leadership-heading {
  margin-bottom: 2.5rem;
}

.leadership-heading .section-copy {
  max-width: 52rem;
}

.leadership-stage {
  max-width: 43rem;
  margin: 0 auto;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, 18rem);
  justify-content: center;
  gap: clamp(1.4rem, 3vw, 2.25rem);
}

.leader-card-profile {
  position: relative;
  display: grid;
  align-items: stretch;
  min-height: 0;
  padding: 0;
  max-width: 18rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem;
  box-shadow: 0 24px 55px rgba(4, 17, 34, 0.24);
  text-align: left;
}

.leader-card-profile:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(4, 17, 34, 0.3);
}

.leader-photo {
  width: 100%;
  height: 17rem;
  max-width: none;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f4f6f8, #dfe5ec);
}

.leader-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.leader-info {
  position: static;
  width: 100%;
  min-height: 0;
  padding: 1.35rem 1.45rem 1.5rem;
  border-radius: 0;
  background: var(--white);
  color: var(--ink-900);
  box-shadow: none;
  text-align: left;
  transform: none;
}

.leader-role {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--navy-700);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leader-card-profile h3 {
  margin-bottom: 0.35rem;
  color: var(--ink-900);
  font-size: clamp(1.2rem, 1.55vw, 1.45rem);
  line-height: 1;
  text-transform: uppercase;
}

.leader-card-profile p {
  max-width: none;
  min-height: 4.6rem;
  margin-bottom: 1.15rem;
  color: var(--ink-700);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.6;
}

.leader-contact-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0;
}

.leader-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 2.55rem;
  height: auto;
  padding: 0.62rem 0.78rem;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #f7faff, #edf3fc);
  border: 1px solid rgba(15, 45, 92, 0.08);
  color: var(--ink-800);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.leader-contact-link:hover,
.leader-contact-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 45, 92, 0.08);
  color: var(--navy-900);
}

.leader-copy-link.is-copied {
  background: linear-gradient(180deg, #eaf7ef, #dff1e7);
  border-color: rgba(27, 116, 65, 0.18);
  color: #17623a;
}

.leader-contact-link i {
  flex: 0 0 1.1rem;
  color: var(--navy-700);
  font-size: 1rem;
  text-align: center;
}

.leader-contact-link span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  overflow-wrap: anywhere;
}

.leader-card:not(.leader-card-profile) {
  text-align: center;
}

.leader-card-profile {
  text-align: left;
}

.section-media-card + .glass-card,
.section-copy + .section-media-card {
  margin-top: 0;
}

.testimonial-stage,
.resource-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--ink-900);
}

.testimonial-card span {
  margin-top: 0.3rem;
  color: var(--ink-700);
}

.quote-badge {
  margin-bottom: 1rem;
}

.resource-panel {
  padding: 2rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 12rem),
    linear-gradient(180deg, #ffffff, #f1f6fc);
  border: 1px solid rgba(15, 45, 92, 0.08);
  box-shadow: var(--shadow-card);
}

.resource-card .btn {
  margin-top: 1.25rem;
}

.resource-meta h3 {
  margin-bottom: 0.55rem;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1031;
  width: 3.5rem;
  height: 3.5rem;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  box-shadow: 0 18px 40px rgba(4, 17, 34, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.92);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease,
    background 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: linear-gradient(145deg, #214f98, var(--navy-900));
  color: var(--white);
}

.back-to-top i {
  font-size: 1.2rem;
}

.site-footer {
  padding: 1.6rem 5rem 1.6rem 0;
  background:
    linear-gradient(180deg, rgba(4, 17, 34, 0.96), var(--navy-950));
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .section-shell {
    padding-top: 6rem;
  }

  .content-section {
    padding: 5rem 0;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 4rem;
  }

  .hero-showcase {
    padding-right: 0;
  }

  .hero-panel-body,
  .approach-grid,
  .testimonial-hero,
  .testimonial-card-row,
  .mission-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    gap: 1rem;
    max-width: none;
    padding-left: 3.4rem;
  }

  .approach-grid::before {
    left: 1.5rem;
    transform: none;
  }

  .approach-step {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .approach-step:nth-child(odd),
  .approach-step:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
  }

  .approach-step:nth-child(odd)::after,
  .approach-step:nth-child(even)::after {
    right: auto;
    left: -1.2rem;
    width: 1.2rem;
  }

  .approach-step:nth-child(odd) span,
  .approach-step:nth-child(even) span {
    right: auto;
    left: -3.35rem;
  }

  .hero-media-badge {
    position: static;
    max-width: none;
  }

  .testimonial-carousel {
    padding-right: 0;
    padding-left: 0;
  }

  .testimonial-hero {
    height: auto;
    min-height: 0;
    gap: 1rem;
    padding: 1.5rem;
  }

  .testimonial-quote-mark {
    font-size: 4.2rem;
  }

  .testimonial-hero p {
    min-height: 0;
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .testimonial-author {
    justify-self: start;
  }

  .testimonial-card-row {
    margin-top: 1.4rem;
  }

  .testimonial-carousel .carousel-control-prev {
    left: 0.6rem;
  }

  .testimonial-carousel .carousel-control-next {
    right: 0.6rem;
  }

  .testimonial-carousel .carousel-control-prev,
  .testimonial-carousel .carousel-control-next {
    top: auto;
    bottom: 0;
  }

  .testimonial-carousel .carousel-indicators {
    margin: 1.15rem 3.8rem 0;
  }

  .hero-showcase {
    display: grid;
    gap: 0.9rem;
  }

  .section-media-card-hero,
  .section-media-card-hero img {
    height: 22rem;
    min-height: 0;
  }

  .about-media,
  .about-media img {
    height: 18rem;
    min-height: 18rem;
    max-height: 18rem;
  }

  .section-title {
    line-height: 1;
  }

  .back-to-top {
    bottom: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    padding: 0.8rem 0;
  }

  .brand-copy small {
    display: none;
  }

  .hero-section h1 {
    max-width: none;
  }

  .hero-actions,
  .hero-badges {
    flex-direction: column;
  }

  .hero-panel-header {
    grid-template-columns: 1fr;
  }

  .section-media-card,
  .section-media-card img,
  .section-media-card-tall img {
    min-height: 18rem;
  }

  .section-media-card-hero,
  .section-media-card-hero img {
    height: 18rem;
    min-height: 0;
  }

  .section-media-card figcaption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    font-size: 1rem;
  }

  .testimonial-carousel {
    padding-bottom: 3.4rem;
  }

  .testimonial-hero {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .testimonial-quote-mark {
    height: 2.4rem;
    font-size: 4.8rem;
  }

  .testimonial-author {
    min-width: 0;
    width: 100%;
  }

  .testimonial-card-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .testimonial-card-row .testimonial-mini-card:not(:first-child) {
    display: none;
  }

  .testimonial-mini-card {
    min-height: 0;
  }

  .testimonial-mini-card p {
    min-height: 0;
  }

  .testimonial-carousel .carousel-control-prev,
  .testimonial-carousel .carousel-control-next {
    width: 2.7rem;
    height: 2.7rem;
  }

  .leadership-stage {
    grid-template-columns: 1fr;
  }

  .leader-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .leader-card-profile {
    max-width: 34rem;
    margin: 0 auto;
    padding-bottom: 0;
  }

  .leader-photo {
    max-width: 100%;
  }

  .leader-info {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: 0;
    margin: 0;
    transform: none;
  }

  .leader-card-profile p {
    font-size: 0.88rem;
  }

  .client-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo-card {
    min-height: 6rem;
    padding: 0.85rem 0.65rem;
  }

  .client-logo-frame {
    min-height: 2.7rem;
  }

  .client-logo-image {
    max-height: 2.8rem;
  }

  .client-logo-mask {
    max-width: 3.6rem;
    height: 2.8rem;
  }

  .glass-card,
  .vision-card,
  .service-card,
  .approach-step,
  .engagement-card,
  .reason-card,
  .client-block,
  .leader-card,
  .impact-card,
  .testimonial-card,
  .resource-card,
  .resource-panel {
    padding: 1.5rem;
  }

  .leader-card-profile {
    padding: 0;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
  }

  .site-footer {
    padding: 1.4rem 4.5rem 1.4rem 1rem;
  }
}
