:root {
  --blue: #075bff;
  --blue-dark: #061a5c;
  --navy: #041435;
  --navy-2: #061f4c;
  --ink: #08164f;
  --text: #26345f;
  --muted: #687490;
  --line: #dce6f8;
  --soft: #f5f8ff;
  --shadow: 0 14px 34px rgba(6, 26, 92, .1);
}

@font-face {
  font-family: "Gellix";
  src: url("../fonts/Gellix-Regular.woff2") format("woff2"),
       url("../fonts/Gellix-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Gellix", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1180px;
}

.section {
  padding: 46px 0;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 24px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #75b6ff;
}

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

h1,
h2,
h3 {
  font-family: "Gellix", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.12;
}

h2 {
  font-size: clamp(1.42rem, 2.2vw, 2.05rem);
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .92rem;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 11px 22px;
  font-size: .85rem;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.btn-primary {
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  box-shadow: 0 10px 22px rgba(7, 91, 255, .22);
}

.btn-primary:hover {
  color: #fff;
  background: #0048d9;
  border-color: #0048d9;
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--ink);
}

.btn-outline:hover,
.btn-light:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.btn-light {
  color: var(--ink);
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .16);
}

.text-link {
  color: var(--blue);
  font-size: .82rem;
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #e8eef8;
  box-shadow: 0 6px 22px rgba(8, 22, 79, .06);
  backdrop-filter: blur(12px);
}

.navbar {
  min-height: 72px;
  padding: 0;
}

.brand-image img {
  width: 150px;
  max-height: 54px;
  object-fit: contain;
}

.navbar-nav {
  gap: 22px;
}

.nav-link {
  position: relative;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 0;
  height: 3px;
  background: var(--blue);
  border-radius: 999px;
  transition: width .22s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--blue);
}

.site-header .nav-link:focus,
.site-header .nav-link:focus-visible {
  outline: 0;
  box-shadow: none;
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
  width: 100%;
}

.site-header .nav-link.dropdown-toggle:hover::after,
.site-header .nav-link.dropdown-toggle.active::after {
  width: auto;
}

.nav-contact-btn {
  min-width: 206px;
  white-space: nowrap;
}

.menu-toggle-btn {
  border-color: var(--line);
  border-radius: 7px;
}

.growth-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 44px 0 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .86) 34%, rgba(255, 255, 255, .14) 58%, rgba(255, 255, 255, 0) 100%),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=85") center / cover no-repeat;
}

.growth-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 75px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .84));
}

.growth-hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  min-height: 285px;
  display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr;
  align-items: center;
  gap: 40px;
}

.hero-copy-block h1 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
  letter-spacing: 0;
}

.hero-copy-block h1 span {
  color: var(--blue);
}

.hero-copy-block p {
  max-width: 500px;
  margin-bottom: 22px;
  color: #182550;
  font-weight: 700;
}

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

.hero-note {
  justify-self: end;
  align-self: end;
  width: min(100%, 320px);
  margin-bottom: 18px;
  padding: 24px;
  color: #fff;
  background: rgba(4, 20, 53, .94);
  border-radius: 6px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .24);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1rem;
}

.hero-note span {
  color: #d9e7ff;
  font-weight: 750;
}

.hero-pill-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 760px;
  margin-top: 18px;
}

.hero-pill-row span {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 900;
}

.hero-pill-row span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #fff;
}

.card-grid {
  display: grid;
  gap: 14px;
}

.four-up {
  grid-template-columns: repeat(4, 1fr);
}

.five-up {
  grid-template-columns: repeat(5, 1fr);
}

.six-up {
  grid-template-columns: repeat(6, 1fr);
}

.eight-up {
  grid-template-columns: repeat(8, 1fr);
}

.image-card,
.outcome-card,
.story-card,
.testimonial-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(6, 26, 92, .08);
}

.image-card img {
  width: 100%;
  height: 116px;
  object-fit: cover;
}

.image-card div {
  padding: 14px;
}

.image-card h3,
.story-card h3 {
  margin-bottom: 7px;
  font-size: .92rem;
}

.image-card p,
.outcome-card p,
.story-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 650;
}

.support-section {
  padding-top: 34px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.outcome-card {
  min-height: 158px;
  padding: 22px;
}

.outcome-card span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--blue);
  background: #eef4ff;
  border: 1px solid #d4e2ff;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
}

.outcome-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.small-card img {
  height: 92px;
}

.industry-card img {
  height: 82px;
}

.section-closing {
    margin: 18px 0 2px;
    color: #020918;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
}

.underlined-note {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 10px;
  font-size: 1.12rem;
  text-align: center;
}

.underlined-note::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 62px;
  height: 3px;
  background: var(--blue);
  border-radius: 99px;
  transform: translateX(-50%);
}

.solutions-band {
  padding: 42px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(7, 91, 255, .38), transparent 26%),
    linear-gradient(135deg, #03122f 0%, #06265f 100%);
}

.before-after-section {
  background: #f7fbff;
}

.before-after-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}

.transform-column {
  min-height: 330px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.transform-column h3 {
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.transform-column ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.transform-column li {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 34px;
  color: var(--ink);
  background: #f5f8ff;
  border: 1px solid #dde8fb;
  border-radius: 7px;
  font-weight: 850;
}

.transform-column li::before {
  content: "";
  position: absolute;
  left: 13px;
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 50%;
}

.before-column li {
  background: #fff8f4;
  border-color: #f3ded1;
}

.before-column li::before {
  background: #d86d2a;
}

.after-column li {
  background: #f2fbf7;
  border-color: #cceede;
}

.after-column li::before {
  background: #15a36f;
}

.transform-arrow {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(7, 91, 255, .25);
  font-size: 2rem;
  font-weight: 900;
}

.process-subtitle {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 650;
}

@media (max-width: 991px) {
  .before-after-panel {
    grid-template-columns: 1fr;
  }

  .transform-column {
    min-height: 0;
  }

  .transform-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }
}

@media (max-width: 767px) {
  .outcome-card {
    min-height: 0;
    padding: 18px;
  }

  .transform-column {
    padding: 18px;
  }

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

.solutions-layout {
  display: grid;
  grid-template-columns: .92fr 1.18fr;
  gap: 52px;
  align-items: center;
}

.large-photo {
  width: 100%;
  aspect-ratio: 9 / 9;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .24);
}

.solutions-copy h2,
.solutions-copy h3 {
  color: #fff;
}

.solutions-copy h2 {
  max-width: 590px;
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
}

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

.solution-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.solution-list span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b9dcff;
  border: 1px solid rgba(185, 220, 255, .6);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
}

.solution-list h3 {
  margin-bottom: 3px;
  font-size: .98rem;
}

.solution-list p {
  margin-bottom: 0;
  color: #d5e5ff;
  font-size: .78rem;
  font-weight: 650;
}

.process-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 48px;
  align-items: center;
}

.process-photo {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: #cddcff;
}

.process-line article {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-line span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--blue);
  background: #eef4ff;
  border: 1px solid #d4e2ff;
  border-radius: 50%;
  font-weight: 900;
}

.process-line h3 {
  margin-bottom: 5px;
  font-size: .85rem;
}

.process-line p {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 650;
}

.stories-section {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

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

.story-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.story-card {
  padding-bottom: 16px;
}

.story-card > span,
.story-card h3,
.story-card p,
.story-card a {
  margin-right: 16px;
  margin-left: 16px;
}

.story-card > span {
  display: inline-flex;
  margin-top: 12px;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 900;
}

.story-card p {
  margin-bottom: 7px;
}

.stats-band {
  padding: 26px 0;
  background: #fff;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 80%, rgba(7, 91, 255, .28), transparent 28%),
    linear-gradient(135deg, #061a5c, #03122f);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.stats-panel div {
  padding: 26px 22px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .24);
}

.stats-panel div:last-child {
  border-right: 0;
}

.stats-panel span,
.stats-panel strong {
  display: block;
}

.stats-panel span {
  font-size: 1.9rem;
  font-weight: 950;
}

.stats-panel strong {
  color: #d7e7ff;
  font-size: .82rem;
}

.partnership-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 46px;
  align-items: center;
}

.partnership-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 650;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 850;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 15px;
  height: 15px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #fff;
}

.partnership-visual {
  position: relative;
}

.partnership-visual img {
  width: 100%;
  min-height: 430px;
  aspect-ratio: 16 / 9.2;
  object-fit: cover;
  object-position: center;
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.partnership-visual aside {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(360px, calc(100% - 56px));
  padding: 28px;
  color: #fff;
  background: rgba(4, 20, 53, .96);
  border-radius: 6px;
}

.partnership-visual h3 {
  color: #fff;
  font-size: 1.55rem;
}

.partnership-visual p {
  margin-bottom: 0;
  color: #dce9ff;
  font-size: .84rem;
  font-weight: 700;
}

.testimonials-section {
  padding-top: 26px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-grid article {
  min-height: 142px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: start;
  padding: 20px;
}

.testimonial-grid img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-grid p {
  grid-column: 2;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 650;
}

.testimonial-grid strong,
.testimonial-grid span {
  grid-column: 2;
  display: block;
  font-size: .78rem;
}

.testimonial-grid strong {
  color: var(--ink);
  font-weight: 900;
}

.testimonial-grid span {
  color: var(--muted);
  font-weight: 700;
}

.final-cta {
  padding: 40px 0 42px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(3, 18, 47, .96), rgba(6, 31, 76, .9)),
    url("https://images.unsplash.com/photo-1533750349088-cd871a92f312?auto=format&fit=crop&w=1600&q=80") center / cover no-repeat;
}

.final-cta h2 {
  max-width: 660px;
  margin: 0 auto 10px;
  color: #fff;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 18px;
  color: #dbe8ff;
  font-weight: 700;
}

.contact-section {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: .72fr 1fr .78fr;
  gap: 28px;
  align-items: start;
}

.contact-copy h2 {
  font-size: 1.34rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.contact-list span {
  display: block;
  color: var(--blue);
  font-size: .72rem;
  text-transform: uppercase;
}

.contact-form-panel {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

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

.form-grid textarea {
  grid-column: 1 / -1;
}

.form-control,
.form-select {
  min-height: 42px;
  border-color: #dce4f2;
  border-radius: 5px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 650;
}

textarea.form-control {
  min-height: 96px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7, 91, 255, .12);
}

.contact-form-panel .btn {
  margin-top: 12px;
  min-height: 38px;
  padding: 10px 24px;
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 900;
}

.contact-photo {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.site-footer {
  color: #dce8ff;
  background: #021335;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr 1fr 1.1fr;
  gap: 42px;
  padding: 34px 0 26px;
}

.footer-brand img {
  width: 145px;
  margin-bottom: 12px;
  filter: brightness(1.08);
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: .92rem;
}

.footer-grid p,
.footer-grid a {
  color: #dce8ff;
  font-size: .8rem;
  font-weight: 650;
}

.footer-grid nav a {
  display: block;
  margin-bottom: 6px;
}

.footer-grid a:hover {
  color: #73b8ff;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(115, 184, 255, .55);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-industry-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.footer-contact-title {
  margin-top: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom p {
  margin: 0;
  color: #c7d6f1;
  font-size: .78rem;
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  color: #c7d6f1;
  font-size: .78rem;
  font-weight: 700;
}

.btn:hover {
  box-shadow: 0 14px 28px rgba(7, 91, 255, .2);
}

.text-link span {
  display: inline-block;
  transition: transform .3s ease;
}

.text-link:hover {
  color: #0048d9;
}

.text-link:hover span {
  transform: translateX(4px);
}

.growth-hero {
  min-height: 432px;
  padding: 0 0 18px;
  background: #fff;
}

.growth-hero::after {
  pointer-events: none;
  z-index: 2;
}

.hero-slide {
  min-height: 410px;
  padding: 44px 0 52px;
  background-position: center;
  background-size: cover;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .88) 36%, rgba(255, 255, 255, .22) 62%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 18% 50%, rgba(7, 91, 255, .08), transparent 34%);
}

.hero-slide-growth {
  background-image: url("../images/business-growth-hero-slider.png");
}

.hero-slide-transform {
  background-image: url("../images/business-transformation-hero-slider.png");
}

.hero-slide-partner {
  background-image: url("../images/partnership-growth-hero-slider.png");
}

.hero-slide .container {
  position: relative;
  z-index: 1;
}

.hero-slide .hero-content {
  min-height: 314px;
}

.hero-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 4px 10px;
  color: #fff;
  background: #20195f;
  border-radius: 5px;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-copy-block h1,
.hero-title {
  max-width: 660px;
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Gellix", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 4.35rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-title span {
  color: var(--blue);
}

.hero-dots {
  right: auto;
  bottom: 20px;
  left: calc((100vw - min(1180px, 100vw - 24px)) / 2);
  z-index: 5;
  justify-content: flex-start;
  width: max-content;
  margin: 0;
}

.hero-dots [data-bs-target] {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background-color: rgba(8, 22, 79, .28);
}

.hero-dots .active {
  background-color: var(--blue);
}

.hero-arrow {
  top: 50%;
  bottom: auto;
  width: 35px;
  height: 35px;
  color: #fff;
  background: rgba(4, 20, 53, .82);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  opacity: 1;
  transform: translateY(-50%);
}

.hero-arrow:hover {
  background: var(--blue);
}

.hero-arrow span {
  display: block;
  margin-top: -3px;
  font-size: 2rem;
  line-height: 1;
}

.hero-arrow.carousel-control-prev {
  left: 18px;
}

.hero-arrow.carousel-control-next {
  right: 18px;
}

.hero-pill-row {
  position: relative;
  z-index: 3;
}

.lift-card,
.service-card,
.industry-slide-card,
.story-card,
.testimonial-card {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.lift-card:hover,
.service-card:hover,
.industry-slide-card:hover,
.story-card:hover,
.testimonial-card:hover {
  border-color: rgba(7, 91, 255, .38);
  box-shadow: 0 18px 42px rgba(6, 26, 92, .14);
  transform: translateY(-5px);
}

.image-card img,
.story-card img {
  transition: transform .3s ease;
}

.image-card:hover img,
.story-card:hover img {
  transform: scale(1.045);
}

.content-slider {
  --visible: 3;
  --slider-gap: 20px;
}

.content-slider[data-visible-desktop="4"] {
  --visible: 4;
}

.slider-viewport {
  overflow: hidden;
  padding: 6px 2px 18px;
}

.slider-track {
  display: flex;
  gap: var(--slider-gap);
  transform: translateX(0);
  transition: transform .42s ease;
  will-change: transform;
}

.slider-item {
  min-width: calc((100% - (var(--slider-gap) * (var(--visible) - 1))) / var(--visible));
  max-width: calc((100% - (var(--slider-gap) * (var(--visible) - 1))) / var(--visible));
}

.service-card,
.industry-slide-card,
.testimonial-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(6, 26, 92, .08);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  background: #eaf1fb;
}

.service-card .card-image-wrap {
  height: 190px;
}

.industry-slide-card .card-image-wrap {
  height: 145px;
}

.card-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(4, 20, 53, .2));
  opacity: 0;
  transition: opacity .3s ease;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.service-card:hover img,
.industry-slide-card:hover img {
  transform: scale(1.055);
}

.industry-slide-card:hover .card-image-wrap::after {
  opacity: 1;
}

.card-body {
  padding: 20px;
}

.card-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-card h3,
.industry-slide-card h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
}

.service-card p,
.industry-slide-card p {
  min-height: 76px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.55;
}

.industry-slide-card p {
  min-height: 96px;
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 2px;
}

.slider-arrow {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(6, 26, 92, .08);
  font-size: 1.7rem;
  line-height: 1;
  transition: color .3s ease, background-color .3s ease, border-color .3s ease, transform .3s ease;
}

.slider-arrow:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.slider-arrow:disabled {
  cursor: not-allowed;
  opacity: .42;
  transform: none;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #c5d3ed;
  border: 0;
  border-radius: 50%;
  transition: width .3s ease, background-color .3s ease;
}

.slider-dot.is-active {
  width: 24px;
  background: var(--blue);
  border-radius: 999px;
}

.testimonial-card {
  position: relative;
  min-height: 245px;
  padding: 28px 24px 24px;
}

.quote-mark {
  position: absolute;
  top: 10px;
  right: 22px;
  color: rgba(7, 91, 255, .12);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.testimonial-card > p {
  position: relative;
  min-height: 96px;
  margin-bottom: 22px;
  color: var(--text);
  font-size: .95rem;
  font-weight: 650;
  line-height: 1.62;
}

.testimonial-person {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: center;
}

.testimonial-person img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person strong {
  color: var(--ink);
  font-size: .9rem;
  font-weight: 900;
}

.testimonial-person span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .four-up,
  .five-up,
  .six-up,
  .eight-up {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-row,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-line::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .content-slider {
    --visible: 2;
  }

  .navbar {
    min-height: auto;
    padding: 12px 0;
  }

  .navbar-nav {
    gap: 0;
    padding: 16px 0 12px;
  }

  .site-header .nav-link::after {
    display: none;
  }

  .nav-contact-btn {
    width: 100%;
    margin-bottom: 12px;
  }

  .hero-content,
  .solutions-layout,
  .process-layout,
  .partnership-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-slide::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .9) 55%, rgba(255, 255, 255, .5) 100%),
      radial-gradient(circle at 18% 50%, rgba(7, 91, 255, .08), transparent 34%);
  }

  .hero-note {
    justify-self: start;
  }

  .hero-pill-row,
  .solution-list,
  .stats-panel,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-photo {
    max-height: 280px;
  }
}

@media (max-width: 767px) {
  .content-slider {
    --visible: 1;
    --slider-gap: 16px;
  }

  body {
    font-size: 14px;
  }

  .section {
    padding: 38px 0;
  }

  .growth-hero {
    padding-top: 34px;
  }

  .hero-slide {
    min-height: 540px;
    padding: 34px 0 84px;
    background-position: center top;
  }

  .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 55%, rgba(255, 255, 255, .76) 100%),
      radial-gradient(circle at 20% 35%, rgba(7, 91, 255, .08), transparent 34%);
  }

  .hero-content {
    min-height: auto;
  }

  .hero-copy-block h1,
  .hero-title {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-dots {
    left: 12px;
    bottom: 24px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-pill-row,
  .four-up,
  .five-up,
  .six-up,
  .eight-up,
  .solution-list,
  .process-line,
  .story-row,
  .stats-panel,
  .testimonial-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .stats-panel div:last-child {
    border-bottom: 0;
  }

  .partnership-visual aside {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .testimonial-grid article {
    grid-template-columns: auto 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Final refinement layer: consistent scale, spacing, and interaction polish. */
:root {
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --shadow-soft: 0 12px 30px rgba(6, 26, 92, .09);
  --shadow-lift: 0 22px 48px rgba(6, 26, 92, .16);
  --ease: .3s ease;
}

body {
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:focus-visible {
  outline: 3px solid rgba(7, 91, 255, .28);
  outline-offset: 3px;
}

.section {
  padding: clamp(52px, 6vw, 78px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.section-heading.compact {
  margin-bottom: clamp(24px, 3.3vw, 36px);
}

.eyebrow {
  margin-bottom: 10px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p,
.partnership-copy > p:not(.eyebrow),
.final-cta p {
  max-width: 720px;
  line-height: 1.72;
  font-size: 1rem;
}

.section-heading.centered p,
.final-cta p {
  margin-right: auto;
  margin-left: auto;
}

.btn {
  min-height: 46px;
  border-radius: var(--radius-md);
  padding: 13px 24px;
  font-size: .9rem;
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease), border-color var(--ease), color var(--ease);
}

.btn-primary {
  box-shadow: 0 12px 24px rgba(7, 91, 255, .22);
}

.btn-outline {
  color: var(--blue);
  border-color: rgba(7, 91, 255, .72);
}

.hero-actions .btn::after,
.nav-contact-btn::after,
.final-cta .btn::after,
.partnership-copy .btn::after,
.contact-form-panel .btn::after {
  content: none;
  display: none;
}

.hero-actions .btn:hover::after,
.nav-contact-btn:hover::after,
.final-cta .btn:hover::after,
.partnership-copy .btn:hover::after,
.contact-form-panel .btn:hover::after {
  transform: none;
}

.site-header {
  box-shadow: 0 8px 26px rgba(8, 22, 79, .06);
}

.navbar {
  min-height: 76px;
}

.brand-image img {
  width: 156px;
}

.nav-link {
  font-size: .82rem;
  transition: color var(--ease);
}

.growth-hero {
  min-height: 470px;
}

.hero-slide {
  min-height: 446px;
  padding: 58px 0 68px;
}

.hero-slide .hero-content {
  min-height: 322px;
  grid-template-columns: minmax(360px, 660px) 1fr;
}

.hero-copy-block h1,
.hero-title {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(3.15rem, 5vw, 4rem);
  line-height: 1.08;
  font-weight: 800;
}

.hero-copy-block p {
  max-width: 640px;
  margin-bottom: 28px;
  color: #1a2a5b;
  font-size: 1.08rem;
  line-height: 1.68;
  font-weight: 650;
}

.hero-note {
  width: min(100%, 330px);
  padding: 26px;
  border-radius: var(--radius-md);
}

.hero-note strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-note span {
  font-size: .94rem;
  line-height: 1.55;
}

.hero-pill-row {
  gap: 22px;
  max-width: 850px;
  margin-top: 22px;
}

.hero-pill-row span {
  font-size: .78rem;
  line-height: 1.35;
}

.image-card,
.story-card,
.service-card,
.industry-slide-card,
.testimonial-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.image-card {
  display: flex;
  flex-direction: column;
}

.image-card img {
  height: 132px;
}

.image-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.image-card h3,
.story-card h3,
.service-card h3,
.industry-slide-card h3 {
  line-height: 1.32;
  font-weight: 800;
}

.image-card h3 {
  min-height: 42px;
  font-size: 1rem;
}

.image-card p,
.story-card p {
  font-size: .86rem;
  line-height: 1.6;
  font-weight: 550;
}

.lift-card:hover,
.service-card:hover,
.industry-slide-card:hover,
.story-card:hover,
.testimonial-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-6px);
}

.solutions-band {
  padding: clamp(56px, 6vw, 78px) 0;
}

.solutions-layout {
  gap: clamp(36px, 5vw, 62px);
}

.solutions-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.15rem, 3.8vw, 3rem);
  line-height: 1.12;
}

.solution-list {
  gap: 22px 30px;
}

.solution-list article {
  gap: 14px;
  align-items: start;
}

.solution-list span {
  width: 38px;
  height: 38px;
  color: #fff;
  background: rgba(117, 182, 255, .13);
  border-color: rgba(185, 220, 255, .48);
}

.solution-list h3 {
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.solution-list p {
  font-size: .88rem;
  line-height: 1.62;
}

.large-photo,
.process-photo,
.partnership-visual img,
.contact-photo {
  border-radius: var(--radius-md);
}

.service-card,
.industry-slide-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card .card-image-wrap {
  height: 210px;
}

.industry-slide-card .card-image-wrap {
  height: 158px;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.card-label {
  margin-bottom: 12px;
  font-size: .72rem;
  font-weight: 800;
}

.service-card h3,
.industry-slide-card h3 {
  font-size: 1.18rem;
}

.industry-slide-card h3 {
  min-height: 62px;
}

.service-card p,
.industry-slide-card p {
  min-height: auto;
  color: #56637f;
  font-size: .94rem;
  line-height: 1.62;
  font-weight: 500;
}

.industry-slide-card p {
  min-height: 92px;
  margin-bottom: 0;
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 10px;
}

.slider-viewport {
  padding: 8px 4px 20px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  font-size: 1.9rem;
}

.slider-dot {
  width: 9px;
  height: 9px;
}

.process-layout {
  grid-template-columns: 300px 1fr;
  gap: clamp(34px, 5vw, 56px);
}

.process-photo {
  aspect-ratio: 1 / 1.05;
}

.process-line {
  gap: 18px;
  margin-top: 30px;
}

.process-line article {
  padding: 4px 2px 0;
}

.process-line span {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  font-size: .86rem;
}

.process-line i {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--blue);
}

.process-line i::before {
  content: "";
  width: 17px;
  height: 17px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.process-line article:nth-child(2) i::before,
.process-line article:nth-child(5) i::before {
  border-radius: 50%;
}

.process-line article:nth-child(3) i::before {
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(-45deg);
}

.process-line article:nth-child(4) i::before {
  border-radius: 3px;
  box-shadow: 7px 7px 0 -3px currentColor;
}

.process-line article:nth-child(6) i::before {
  width: 18px;
  height: 18px;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  transform: rotate(-135deg);
}

.process-line h3 {
  margin-bottom: 7px;
  font-size: .98rem;
  font-weight: 800;
}

.process-line p {
  font-size: .78rem;
  line-height: 1.55;
  font-weight: 500;
}

.story-row {
  gap: 22px;
}

.story-card {
  display: flex;
  flex-direction: column;
  padding-bottom: 18px;
}

.story-card img {
  height: 134px;
}

.story-card > span {
  margin-top: 16px;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.story-card h3 {
  font-size: 1.04rem;
  min-height: 44px;
}

.story-card p {
  min-height: 50px;
}

.story-card .text-link {
  margin-top: auto;
  padding-top: 8px;
}

.stats-band {
  padding: 34px 0;
}

.stats-panel {
  border-radius: var(--radius-md);
}

.stats-panel div {
  padding: 32px 24px;
}

.stats-panel span {
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  line-height: 1;
}

.stats-panel strong {
  margin-top: 8px;
  font-size: .92rem;
  line-height: 1.4;
}

.check-list {
  gap: 12px;
  margin: 24px 0 28px;
}

.check-list li {
  font-size: .96rem;
}

.partnership-visual aside {
  width: min(300px, calc(100% - 32px));
  padding: 26px;
  border-radius: var(--radius-md);
}

.partnership-visual h3 {
  font-size: 1.38rem;
  line-height: 1.2;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.testimonial-card > p {
  min-height: 116px;
  font-size: .98rem;
  line-height: 1.68;
}

.testimonial-person {
  margin-top: auto;
}

.final-cta {
  padding: clamp(56px, 7vw, 82px) 0;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 4.2vw, 2.55rem);
  line-height: 1.12;
}

.contact-layout {
  grid-template-columns: .78fr 1fr .82fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
}

.contact-list {
  gap: 14px;
}

.contact-list p {
  position: relative;
  min-height: 48px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  column-gap: 12px;
  padding: 12px 0;
}

.contact-list p i {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: #eef4ff;
  border: 1px solid #d7e3ff;
  border-radius: 50%;
}

.contact-list p i::before {
  content: "";
  width: 17px;
  height: 17px;
  display: block;
  border: 2px solid currentColor;
}

.contact-list p:nth-child(1) i::before {
  border-radius: 4px 4px 8px 8px;
  transform: rotate(-18deg);
}

.contact-list p:nth-child(2) i::before {
  border-radius: 3px;
  box-shadow: inset 0 -7px 0 -5px currentColor;
}

.contact-list p:nth-child(3) i::before {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.contact-list span {
  font-size: .74rem;
  letter-spacing: .08em;
}

.form-grid {
  gap: 14px;
}

.form-control,
.form-select {
  min-height: 48px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
}

textarea.form-control {
  min-height: 118px;
}

.contact-form-panel .btn {
  min-height: 46px;
  margin-top: 16px;
}

.site-footer {
  margin-top: 0;
}

.footer-grid {
  gap: clamp(28px, 5vw, 56px);
  padding: 44px 0 32px;
}

.footer-grid h3 {
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  font-size: .88rem;
  line-height: 1.6;
}

.footer-social a {
  width: 34px;
  height: 34px;
}

@media (max-width: 1199px) {
  .five-up {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-card h3 {
    min-height: auto;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 56px 0;
  }

  .hero-slide .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-copy-block h1,
  .hero-title {
    font-size: clamp(2.6rem, 6.2vw, 3.25rem);
  }

  .hero-note {
    justify-self: start;
    align-self: start;
  }

  .solutions-copy h2 {
    font-size: clamp(2rem, 5vw, 2.55rem);
  }

  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-photo {
    max-height: 320px;
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 46px 0;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

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

  .growth-hero {
    min-height: auto;
    padding-top: 0;
  }

  .hero-slide {
    min-height: 560px;
    padding: 42px 0 86px;
  }

  .hero-copy-block h1,
  .hero-title {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 2.75rem);
    line-height: 1.12;
  }

  .hero-copy-block p {
    font-size: .98rem;
    line-height: 1.65;
  }

  .hero-note {
    width: 100%;
    padding: 20px;
  }

  .hero-pill-row {
    gap: 14px;
    margin-top: 18px;
  }

  .four-up,
  .five-up,
  .story-row {
    grid-template-columns: 1fr;
  }

  .solution-list {
    gap: 18px;
  }

  .service-card .card-image-wrap {
    height: 195px;
  }

  .industry-slide-card .card-image-wrap {
    height: 180px;
  }

  .process-line article {
    display: grid;
    grid-template-columns: 42px 30px 1fr;
    align-items: center;
    gap: 10px;
    text-align: left;
  }

  .process-line span,
  .process-line i {
    margin: 0;
  }

  .process-line p {
    grid-column: 3;
    margin-bottom: 0;
  }

  .stats-panel div {
    padding: 26px 20px;
  }

  .partnership-visual aside {
    width: auto;
    padding: 22px;
  }

  .testimonial-card {
    min-height: auto;
  }

  .testimonial-card > p {
    min-height: auto;
  }

  .contact-layout {
    gap: 28px;
  }

  .contact-list p {
    grid-template-columns: 42px 1fr;
  }
}

.hero-pill-row {
  width: min(100%, 980px);
  max-width: 980px;
  align-items: stretch;
  gap: 16px;
  margin-top: 26px;
}

.hero-pill-row span {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  color: #273766;
  background: rgba(255, 255, 255, .82);
  border: 1px solid #dce7ff;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(6, 26, 92, .07);
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.35;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.hero-pill-row span::before {
  display: none;
}

.hero-pill-row span:hover {
  border-color: rgba(7, 91, 255, .38);
  box-shadow: 0 16px 32px rgba(6, 26, 92, .12);
  transform: translateY(-3px);
}

.hero-pill-row svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--blue);
  background: #eef4ff;
  border: 1px solid #cfe0ff;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1199px) {
  .hero-pill-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-pill-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-pill-row span {
    min-height: 54px;
    grid-template-columns: 40px 1fr;
    font-size: .86rem;
  }

  .hero-pill-row svg {
    width: 40px;
    height: 40px;
  }
}

.hero-pill-row {
  width: min(100%, 1260px);
  max-width: 1260px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 34px auto 0;
}

.hero-pill-row span {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 24px;
  color: #1d2f68;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(245, 249, 255, .94)),
    radial-gradient(circle at 20% 10%, rgba(7, 91, 255, .14), transparent 34%);
  border: 1px solid rgba(7, 91, 255, .24);
  border-radius: 14px;
  box-shadow:
    0 18px 42px rgba(6, 26, 92, .12),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  font-family: "Gellix", "Segoe UI", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.3;
}

.hero-pill-row span:hover {
  border-color: rgba(7, 91, 255, .56);
  box-shadow:
    0 24px 54px rgba(6, 26, 92, .18),
    0 0 0 4px rgba(7, 91, 255, .08);
  transform: translateY(-5px);
}

.hero-pill-row svg {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  padding: 13px;
  color: var(--blue);
  background: linear-gradient(180deg, #f4f8ff, #eaf2ff);
  border: 1px solid #c7dbff;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(7, 91, 255, .13);
  stroke-width: 2.1;
}

@media (max-width: 1199px) {
  .hero-pill-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  .hero-pill-row {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 14px;
    margin-top: 24px;
  }

  .hero-pill-row span {
    min-height: 74px;
    justify-content: flex-start;
    text-align: left;
    padding: 16px 18px;
    font-size: 1rem;
  }

  .hero-pill-row svg {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
}

/* Hero slider final sizing and control polish. */
.growth-hero {
  min-height: 860px;
}

.hero-slide {
  min-height: 790px;
  padding: 104px 0 122px;
  background-position: center center;
}

.hero-slide::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 36%, rgba(255, 255, 255, .64) 55%, rgba(255, 255, 255, .16) 78%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 18% 50%, rgba(7, 91, 255, .12), transparent 36%);
}

.hero-slide .container {
  height: 100%;
}

.hero-slide .hero-content {
  min-height: 464px;
  grid-template-columns: minmax(420px, 700px) minmax(280px, 1fr);
  align-items: end;
}

.hero-copy-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 720px;
  padding: 16px 0 18px;
}

.hero-copy-block h1,
.hero-title {
  max-width: 720px;
  margin-bottom: 22px;
  color: #f7fbff;
  font-family: "Gellix", "Segoe UI", Arial, sans-serif;
  font-size: clamp(3.35rem, 2.9vw, 4.85rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(5, 23, 76, .34), 0 1px 2px rgba(5, 23, 76, .55);
}

.hero-copy-block h1 span,
.hero-title span {
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(7, 91, 255, .32), 0 1px 2px rgba(5, 23, 76, .48);
}

.hero-copy-block > p:not(.hero-title) {
  position: relative;
  max-width: 620px;
  margin-bottom: 32px;
  padding: 8px 0 8px 24px;
  color: #10214d;
  background: transparent;
  border-left: 0;
  border-radius: 0;
  font-family: "Gellix", "Segoe UI", Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.68;
  text-shadow: 0 2px 12px rgba(255, 255, 255, .78);
}

.hero-copy-block > p:not(.hero-title)::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #075bff 0%, #4fa3ff 54%, #0ac0a6 100%);
  box-shadow: 0 8px 22px rgba(7, 91, 255, .28);
}

.hero-actions {
  gap: 16px;
}

.hero-actions .btn {
  min-height: 50px;
  padding-right: 28px;
  padding-left: 28px;
}

.hero-note {
  align-self: end;
  justify-self: end;
  margin: 0 0 18px;
}

.hero-arrow {
  top: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(7, 91, 255, .22);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(6, 26, 92, .14);
  opacity: 1;
  transform: translateY(-50%);
  transition: color var(--ease), background-color var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.hero-arrow:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 18px 40px rgba(7, 91, 255, .24);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow span {
  width: 18px;
  height: 18px;
  display: block;
  margin: 0;
  overflow: hidden;
  color: inherit;
  font-size: 0;
  line-height: 0;
}

.hero-arrow span::before {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  border-top: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
  transition: border-color var(--ease);
}

.hero-arrow:hover span::before {
  border-color: #fff;
}

.hero-arrow.carousel-control-prev {
  left: 28px;
}

.hero-arrow.carousel-control-next {
  right: 28px;
}

.hero-arrow.carousel-control-prev span::before {
  transform: translate(4px, 2px) rotate(-45deg);
}

.hero-arrow.carousel-control-next span::before {
  transform: translate(0, 2px) rotate(135deg);
}

.hero-dots {
  bottom: 30px;
}

@media (max-width: 991px) {
  .growth-hero {
    min-height: auto;
  }

  .hero-slide {
    min-height: 690px;
    padding: 68px 0 104px;
  }

  .hero-slide .hero-content {
    min-height: auto;
    grid-template-columns: 1fr;
    align-content: center;
    align-items: start;
  }

  .hero-copy-block h1,
  .hero-title {
    font-size: clamp(2.55rem, 7vw, 3.45rem);
  }

  .hero-copy-block {
    max-width: 680px;
    padding: 28px;
  }

  .hero-note {
    align-self: start;
    justify-self: start;
    max-width: 360px;
    margin-bottom: 0;
  }

  .hero-arrow {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 767px) {
  .hero-slide {
    min-height: 680px;
    padding: 48px 0 94px;
  }

  .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .8) 58%, rgba(255, 255, 255, .62) 100%),
      radial-gradient(circle at 20% 35%, rgba(7, 91, 255, .05), transparent 34%);
  }

  .hero-copy-block h1,
  .hero-title {
    font-size: clamp(2.15rem, 10vw, 2.9rem);
  }

  .hero-copy-block > p:not(.hero-title) {
    font-size: 1rem;
    padding: 8px 0 8px 20px;
  }

  .hero-copy-block {
    padding: 16px 0;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 24px;
  }
}

.content-slider .slider-arrow {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  position: relative;
  color: transparent;
  font-size: 0;
  box-shadow: 0 7px 16px rgba(6, 26, 92, .08);
}

.content-slider .slider-arrow::before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  transition: border-color var(--ease);
}

.content-slider .slider-prev::before {
  transform: rotate(-45deg) translate(1px, 1px);
}

.content-slider .slider-next::before {
  transform: rotate(135deg) translate(1px, 1px);
}

.content-slider .slider-arrow:hover::before {
  border-color: #fff;
}

.content-slider .slider-controls {
  gap: 12px;
}

.story-slider .story-card {
  height: 100%;
}

.story-slider .story-card img {
  height: 158px;
}

@media (max-width: 767px) {
  .content-slider .slider-arrow {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
}

/* Keep all top hero slide headings visually identical. */
.hero-copy-block h1,
.hero-copy-block .hero-title {
  display: block;
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--ink);
  font-family: "Gellix", "Segoe UI", Arial, sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 50px;
  letter-spacing: 0;
}

.hero-copy-block h1 span,
.hero-copy-block .hero-title span {
  color: var(--blue);
  font: inherit;
}

/* Footer contrast and social icon polish. */
.site-footer,
.site-footer p,
.site-footer h3,
.site-footer a,
.site-footer .footer-bottom p {
  color: #fff;
}

.site-footer a {
  text-decoration: none;
}

.site-footer .footer-grid a,
.site-footer .footer-bottom a {
  color: rgba(255, 255, 255, .9);
}

.site-footer .footer-grid a:hover,
.site-footer .footer-bottom a:hover {
  color: #fff;
}

.footer-brand p,
.site-footer .footer-grid > div:last-child p {
  color: rgba(255, 255, 255, .92);
}

.site-footer .footer-grid > div:last-child p {
  margin-bottom: 9px;
  line-height: 1.55;
}

.site-footer strong {
  color: #fff;
  font-weight: 900;
}

.footer-social {
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
  transition: background-color var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.footer-social a:hover {
  color: #fff;
  background: var(--blue);
  border-color: rgba(115, 184, 255, .9);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.site-footer svg {
  flex: 0 0 auto;
}

.footer-icon-link {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.footer-icon-link svg,
.footer-contact p > svg {
  width: 18px;
  height: 18px;
  color: #7bb9ff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color var(--ease), transform var(--ease);
}

.footer-icon-link:hover svg {
  color: #fff;
  transform: translateX(2px);
}

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

.footer-contact p > svg {
  margin-top: 3px;
}

.footer-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom .footer-icon-link {
  grid-template-columns: 18px minmax(0, auto);
  margin: 0;
}

.footer-bottom .footer-icon-link svg {
  width: 16px;
  height: 16px;
}

/* Contact section without image. */
.contact-section {
  background:
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.contact-layout {
  grid-template-columns: minmax(320px, .95fr) minmax(420px, 1.15fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.contact-copy {
  max-width: none;
}

.contact-copy h2 {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: clamp(2.1rem, 3.2vw, 3.3rem);
  line-height: 1.12;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list p {
  min-height: auto;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-list p i {
  width: 54px;
  height: 54px;
  margin-top: 2px;
  background: #eef5ff;
  border-color: #cfe0ff;
  box-shadow: 0 10px 24px rgba(7, 91, 255, .08);
}

.contact-list p i::before {
  width: 18px;
  height: 18px;
}

.contact-list p:nth-child(4) i::before,
.contact-list p:nth-child(5) i::before {
  border-radius: 3px;
  transform: none;
}

.contact-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--ink);
  font-weight: 850;
}

.contact-form-panel {
  padding: clamp(24px, 3.2vw, 36px);
  border: 1px solid rgba(7, 91, 255, .14);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(6, 26, 92, .1);
}

.contact-photo {
  display: none;
}

@media (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-list p {
    grid-template-columns: 46px minmax(0, 1fr);
    font-size: .94rem;
  }

  .contact-list p i {
    width: 46px;
    height: 46px;
  }
}

/* Bootstrap contact section polish. */
.contact-bootstrap-layout {
  --bs-gutter-x: clamp(1.5rem, 4vw, 4rem);
}

.contact-info-card,
.contact-form-panel.card {
  border-radius: 8px;
  overflow: hidden;
}

.contact-info-card .card-body,
.contact-form-panel.card .card-body {
  height: 100%;
}

.contact-form-panel.card .card-body {
  display: flex;
  flex-direction: column;
}

.contact-form-panel.card .row {
  flex: 1;
  align-content: center;
}

.contact-info-card {
  background: #fff;
}

.contact-info-card h2 {
  color: var(--ink);
  font-size: clamp(2rem, 1vw, 3rem);
  line-height: 1.12;
}

.contact-list-bootstrap {
  display: block;
}

.contact-list-bootstrap .list-group-item {
  background: transparent;
  border-color: rgba(7, 91, 255, .12);
  color: var(--ink);
}

.contact-list-bootstrap .list-group-item:first-child {
  padding-top: 0 !important;
}

.contact-list-bootstrap .list-group-item:last-child {
  border-bottom: 0;
  padding-bottom: 0 !important;
}

.contact-list-bootstrap i {
  width: 44px;
  height: 44px;
  margin-top: 2px;
}

.contact-list-bootstrap p {
  min-height: 0;
  display: block;
  padding: 0;
  color: var(--ink);
  font-size: .98rem;
  font-weight: 750;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-list-bootstrap span {
  display: block;
  margin-bottom: 3px;
  color: var(--blue);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form-panel.card {
  padding: 0;
  background: #fff;
}

.contact-form-panel .form-control-lg,
.contact-form-panel .form-select-lg {
  min-height: 58px;
  padding: .85rem 1rem;
  border-color: #d8e3f7;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 650;
}

.contact-form-panel textarea.form-control-lg {
  min-height: 170px;
}

.captcha-field {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  width: 100%;
  color: #0b2545;
  font-size: .95rem;
  font-weight: 850;
}

.captcha-field .form-control {
  flex: 1 1 160px;
  max-width: 220px;
}

.contact-captcha-code {
  min-width: 116px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #31366f;
  background: linear-gradient(180deg, #aab0d3 0%, #858ab2 100%);
  border-radius: 8px;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 2px;
  user-select: none;
}

.captcha-refresh-button {
  width: 60px;
  height: 58px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  background: linear-gradient(180deg, #075bff 0%, #0047d9 100%);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(7, 91, 255, .22);
}

.captcha-refresh-button svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.captcha-refresh-button:hover {
  background: linear-gradient(180deg, #1168ff 0%, #003fc2 100%);
}

.captcha-refresh-button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(7, 91, 255, .18), 0 12px 24px rgba(7, 91, 255, .22);
}

.captcha-refresh-button:disabled {
  cursor: wait;
  opacity: .72;
}

.contact-form-panel .btn-lg {
  min-height: 58px;
  border-radius: 8px;
}

/* No-arrow CTA buttons with cleaner button treatment. */
.hero-actions .btn::after,
.nav-contact-btn::after,
.final-cta .btn::after,
.partnership-copy .btn::after,
.contact-form-panel .btn::after {
  content: none !important;
  display: none !important;
}

.btn {
  gap: 0;
  border-radius: 8px;
  letter-spacing: 0;
  text-align: center;
  white-space: normal;
}

.btn-primary,
.nav-contact-btn {
  background: linear-gradient(180deg, #1168ff 0%, #0056e8 100%);
  border-color: #075bff;
  box-shadow: 0 14px 28px rgba(7, 91, 255, .22);
}

.btn-primary:hover,
.nav-contact-btn:hover {
  background: linear-gradient(180deg, #075bff 0%, #0047cc 100%);
  border-color: #0047cc;
  box-shadow: 0 18px 34px rgba(7, 91, 255, .28);
}

.btn-outline {
  background: rgba(255, 255, 255, .88);
  border-color: rgba(7, 91, 255, .55);
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(6, 26, 92, .06);
}

.btn-outline:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 16px 30px rgba(7, 91, 255, .22);
}

.btn-light {
  color: var(--blue);
  border-color: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.btn-light:hover {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .22);
}

.hero-actions .btn,
.nav-contact-btn,
.final-cta .btn,
.partnership-copy .btn,
.contact-form-panel .btn {
  min-width: 178px;
  padding-right: 28px;
  padding-left: 28px;
}

.text-link span {
  display: none !important;
}

/* Footer arranged layout. */
.site-footer {
  overflow: hidden;
}

.site-footer .container {
  max-width: 1360px;
  padding-right: clamp(28px, 4vw, 64px);
  padding-left: clamp(28px, 4vw, 64px);
}

.footer-grid {
  grid-template-columns: minmax(240px, 1.15fr) minmax(170px, .78fr) minmax(230px, .95fr) minmax(190px, .82fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  padding: 46px 0 30px;
}

.footer-brand img {
  width: 155px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 360px;
  margin-bottom: 18px;
  font-size: .95rem;
  line-height: 1.65;
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.footer-icon-link {
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  margin-bottom: 8px;
  font-size: .92rem !important;
  line-height: 1.25 !important;
}

.footer-icon-link svg {
  width: 17px;
  height: 17px;
  margin-top: 1px;
}

.footer-contact {
  grid-column: 1 / -1;
  max-width: none;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0 28px;
}

.footer-contact-grid > p {
  grid-column: span 2;
}

.footer-contact p {
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 9px;
  margin-bottom: 8px !important;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: .9rem !important;
  line-height: 1.45 !important;
}

.footer-contact .footer-office {
  grid-column: span 3;
  margin-top: 8px !important;
}

.footer-contact p:nth-last-child(-n+2) {
  margin-bottom: 0 !important;
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-contact p > svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.footer-contact span {
  display: block;
  max-width: 100%;
}

.footer-contact strong {
  display: inline;
}

.footer-contact a {
  word-break: break-word;
}

.footer-bottom {
  align-items: center;
  padding: 20px 0 26px;
}

.footer-bottom p {
  font-size: .82rem;
}

.footer-bottom nav {
  gap: 16px;
}

@media (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .footer-contact-grid > p,
  .footer-contact .footer-office {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

/* Partnership image stronger visual. */
.partnership-visual img {
  min-height: 430px;
  aspect-ratio: 16 / 9.2;
  object-fit: cover;
  object-position: center;
}

.partnership-visual aside {
  right: 28px;
  bottom: 28px;
  width: min(360px, calc(100% - 56px));
}

@media (max-width: 767px) {
  .partnership-visual img {
    min-height: 320px;
  }

  .partnership-visual aside {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }
}

/* Slightly larger top menu typography. */
.site-header .nav-link {
  font-size: .94rem;
  font-weight: 900;
}

.site-header .nav-contact-btn {
  font-size: .9rem;
}

@media (min-width: 992px) {
  .navbar-nav {
    gap: 24px;
  }
}

/* About section after hero slider. */
.about-section {
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(6, 26, 92, .14);
}

.about-photo-wrap img {
  width: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
}

.about-copy h2 {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.1rem, 2.4vw, 3.45rem);
  line-height: 1.12;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.75;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.about-points article {
  min-height: 168px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(7, 91, 255, .13);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(6, 26, 92, .07);
}

.about-points span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 950;
}

.about-points h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1rem;
}

.about-points p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 650;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap img {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .about-points {
    grid-template-columns: 1fr;
  }
}

/* Final mobile typography scale-down. */
@media (max-width: 767px) {
  body {
    font-size: 13px;
  }

  .section {
    padding: 44px 0;
  }

  .eyebrow {
    font-size: .66rem;
  }

  h1,
  .hero-copy-block h1,
  .hero-copy-block .hero-title {
    font-size: clamp(1.85rem, 8.6vw, 2.45rem) !important;
    line-height: 1.12;
  }

  h2,
  .section-heading h2,
  .about-copy h2,
  .solutions-copy h2,
  .contact-info-card h2,
  .contact-copy h2,
  .final-cta h2 {
    font-size: clamp(1.55rem, 6.6vw, 2rem) !important;
    line-height: 1.18;
  }

  h3,
  .image-card h3,
  .story-card h3,
  .service-card h3,
  .industry-slide-card h3,
  .about-points h3,
  .testimonial-person strong {
    font-size: .92rem !important;
  }

  p,
  .section-heading p,
  .hero-copy-block > p:not(.hero-title),
  .about-copy > p:not(.eyebrow),
  .service-card p,
  .industry-slide-card p,
  .story-card p,
  .testimonial-card > p,
  .contact-list-bootstrap p,
  .footer-brand p,
  .footer-contact p {
    font-size: .84rem !important;
    line-height: 1.55;
  }

  .btn,
  .btn-lg,
  .nav-contact-btn,
  .text-link {
    min-height: 42px;
    padding: 10px 18px;
    font-size: .78rem !important;
  }

  .site-header .nav-link {
    font-size: .82rem;
  }

  .card-label,
  .contact-list span,
  .contact-list-bootstrap span,
  .footer-icon-link,
  .footer-grid p,
  .footer-grid a,
  .footer-bottom p,
  .footer-bottom a {
    font-size: .76rem !important;
  }

  .hero-note strong,
  .hero-note span,
  .partnership-visual h3,
  .partnership-visual p {
    font-size: .86rem !important;
  }

  .hero-pill-row span {
    font-size: .82rem !important;
  }
}

@media (max-width: 480px) {
  h1,
  .hero-copy-block h1,
  .hero-copy-block .hero-title {
    font-size: clamp(1.65rem, 8.4vw, 2.1rem) !important;
  }

  h2,
  .section-heading h2,
  .about-copy h2,
  .solutions-copy h2,
  .contact-info-card h2,
  .final-cta h2 {
    font-size: clamp(1.35rem, 6.8vw, 1.75rem) !important;
  }
}

.home-blog-section {
  background: #f7fafc;
}

.blog-slider {
  --slider-gap: 24px;
}

.blog-slider .blog-card {
  height: 100%;
}

.blog-slider .blog-card-body {
  min-height: 230px;
}

.blog-slider .slider-controls {
  margin-top: 24px;
}

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

.blog-page-grid {
  margin-top: 30px;
}

.featured-blog {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 91, 255, .12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(6, 26, 92, .1);
}

.featured-blog-image {
  min-height: 360px;
  display: block;
  overflow: hidden;
  background: #eef4ff;
}

.featured-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.featured-blog:hover .featured-blog-image img {
  transform: scale(1.04);
}

.featured-blog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px);
}

.featured-blog-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.8vw, 2.6rem);
}

.featured-blog-copy h2 a,
.blog-card h3 a {
  color: var(--ink);
}

.featured-blog-copy p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.7;
}

.blog-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 91, 255, .1);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(11, 37, 69, .08);
}

.blog-image-link {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-image-link img,
.article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card:hover .blog-image-link img {
  transform: scale(1.06);
}

.blog-image-link img {
  transition: transform .35s ease;
}

.blog-card-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  color: #607086;
  font-size: .88rem;
  font-weight: 700;
}

.blog-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.35;
}

.blog-card h3 a {
  color: #10253f;
  text-decoration: none;
}

.blog-card p {
  color: #5f6f84;
  margin-bottom: 18px;
}

.empty-state {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 24px;
  text-align: center;
  background: #f7fbff;
  border: 1px solid rgba(7, 91, 255, .12);
  border-radius: 8px;
}

.empty-state h2 {
  margin-bottom: 10px;
}

.empty-state p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.inner-hero {
  padding: 118px 0 64px;
  background:
    linear-gradient(90deg, rgba(4, 20, 53, .94), rgba(7, 91, 255, .72)),
    url("../images/insight-engineering.png") center / cover no-repeat;
  color: #fff;
}

.inner-hero h1 {
  max-width: 900px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 18px;
  color: #fff;
}

.inner-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
}

.article-shell {
  max-width: 960px;
  padding-top: 54px;
  padding-bottom: 80px;
}

.article-image {
  display: block;
  max-height: 520px;
  border-radius: 8px;
  margin-bottom: 34px;
}

.article-content {
  color: #26384d;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-content h1,
.article-content h2,
.article-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin-bottom: 18px;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.tag-row a {
  padding: 8px 12px;
  border: 1px solid rgba(19, 111, 143, .22);
  border-radius: 999px;
  color: #136f8f;
  text-decoration: none;
  font-weight: 700;
}

.admin-body,
.admin-login-body {
  min-height: 100vh;
  background: #f4f7fb;
}

.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 260px;
  padding: 28px 20px;
  background: #10253f;
  color: #fff;
}

.admin-brand {
  display: block;
  margin-bottom: 28px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
}

.admin-sidebar a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.admin-main {
  margin-left: 260px;
  padding: 34px;
}

.admin-heading {
  margin-bottom: 24px;
}

.admin-heading h1 {
  margin: 0 0 8px;
  color: #10253f;
  font-size: 2rem;
}

.admin-heading p {
  margin: 0;
  color: #617188;
}

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

.admin-stat-grid article,
.admin-panel {
  background: #fff;
  border: 1px solid rgba(11, 37, 69, .08);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(11, 37, 69, .07);
}

.admin-stat-grid article {
  padding: 24px;
}

.admin-stat-grid span {
  display: block;
  color: #136f8f;
  font-size: 2.4rem;
  font-weight: 900;
}

.admin-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.admin-panel h2 {
  font-size: 1.25rem;
  margin: 0;
}

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

.admin-panel label {
  display: grid;
  gap: 7px;
  color: #22354d;
  font-weight: 700;
}

.admin-panel .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-two-column {
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.admin-blog-layout {
  display: grid;
  gap: 14px;
}

.admin-blog-form {
  gap: 12px;
  padding: 16px;
}

.admin-blog-section {
  display: grid;
  gap: 8px;
}

.admin-blog-section + .admin-blog-section {
  gap: 6px;
}

.admin-blog-section h2 {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(11, 37, 69, .08);
  font-size: 1.1rem;
}

.admin-blog-section + .admin-blog-section h2 {
  padding-bottom: 5px;
  margin-bottom: 0;
}

.admin-field-wide {
  grid-column: 1 / -1;
}

.admin-blog-form .admin-form-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px 14px;
}

.admin-blog-title-field,
.admin-blog-meta-title-field {
  grid-column: span 3;
}

.admin-blog-slug-field,
.admin-blog-author-field,
.admin-blog-date-field,
.admin-blog-tags-field {
  grid-column: span 2;
}

.admin-blog-short-field,
.admin-blog-image-field,
.admin-blog-meta-desc-field {
  grid-column: span 3;
}

.admin-blog-publish-field {
  grid-column: span 1;
  align-self: end;
  min-height: 36px;
}

.admin-blog-form label {
  gap: 4px;
  font-size: .9rem;
}

.admin-blog-form .form-control {
  min-height: 36px;
  padding: 7px 10px;
}

.admin-blog-form textarea.form-control {
  min-height: 36px;
  resize: vertical;
}

.admin-blog-form .rich-editor {
  min-height: 170px;
}

.admin-slider-form .admin-form-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-slider-form .admin-field-wide {
  grid-column: 1 / -1;
}

.admin-slider-check {
  align-self: end;
  min-height: 40px;
}

.admin-slider-row .admin-blog-row-info {
  grid-template-columns: 110px minmax(0, 1fr);
}

.admin-slider-row .admin-blog-row-info img {
  width: 110px;
  height: 62px;
}

.admin-slider-row strong span {
  display: inline;
  color: var(--blue);
}

.admin-list-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 37, 69, .08);
}

.admin-list-row span {
  display: block;
  color: #68788d;
  font-size: .9rem;
}

.admin-image-preview {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #f7fbff;
  border: 1px solid rgba(7, 91, 255, .12);
  border-radius: 8px;
}

.admin-image-preview img,
.admin-blog-row-info img {
  width: 96px;
  height: 64px;
  object-fit: cover;
  border-radius: 7px;
  background: #eef4ff;
}

.admin-image-preview span {
  min-width: 0;
  color: #68788d;
  font-size: .82rem;
  overflow-wrap: anywhere;
}

.admin-blog-row-info {
  min-width: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.admin-blog-row-info img {
  width: 72px;
  height: 52px;
}

.admin-blog-row-info strong {
  display: block;
  color: #10253f;
}

.admin-upload-tool {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: end;
  padding: 8px;
  background: #f7fbff;
  border: 1px solid rgba(7, 91, 255, .12);
  border-radius: 8px;
}

.admin-upload-tool label {
  margin: 0;
}

.admin-upload-tool .btn {
  min-height: 36px;
  padding: 8px 14px;
  white-space: nowrap;
}

.admin-upload-tool span {
  grid-column: 1 / -1;
  min-height: 12px;
  color: #136f8f;
  font-size: .78rem;
  font-weight: 800;
}

.admin-login-body {
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login-card {
  width: min(100%, 420px);
  display: grid;
  gap: 16px;
  padding: 32px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(11, 37, 69, .16);
}

.admin-login-card img {
  width: 170px;
}

.admin-login-card h1 {
  margin: 0;
  color: #10253f;
  font-size: 1.8rem;
}

@media (max-width: 991px) {
  .blog-card-grid,
  .admin-stat-grid,
  .admin-form-grid,
  .admin-two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-blog-form .admin-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-slider-form .admin-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-blog-title-field,
  .admin-blog-meta-title-field,
  .admin-blog-slug-field,
  .admin-blog-author-field,
  .admin-blog-date-field,
  .admin-blog-tags-field,
  .admin-blog-short-field,
  .admin-blog-image-field,
  .admin-blog-meta-desc-field,
  .admin-blog-publish-field {
    grid-column: auto;
  }

  .featured-blog {
    grid-template-columns: 1fr;
  }

  .featured-blog-image {
    min-height: 280px;
  }

  .admin-sidebar {
    position: static;
    width: auto;
  }

  .admin-main {
    margin-left: 0;
    padding: 22px;
  }
}

@media (max-width: 767px) {
  .blog-card-grid,
  .admin-stat-grid,
  .admin-form-grid,
  .admin-two-column {
    grid-template-columns: 1fr;
  }

  .admin-blog-form .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-field-wide,
  .admin-blog-form .admin-field-wide {
    grid-column: auto;
  }

  .inner-hero {
    padding: 120px 0 54px;
  }

  .featured-blog-image {
    min-height: 220px;
  }

  .admin-list-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-upload-tool {
    grid-template-columns: 1fr;
  }
}

/* Final responsive and SEO-facing navigation polish. */
.site-header .dropdown-menu {
  min-width: 240px;
  padding: 10px;
  margin-top: 10px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(7, 91, 255, .12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(6, 26, 92, .16);
}

.site-header .dropdown-menu::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
}

.site-header .dropdown-menu::before {
  content: none;
  position: absolute;
  top: -7px;
  left: 26px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid rgba(7, 91, 255, .12);
  border-left: 1px solid rgba(7, 91, 255, .12);
  transform: rotate(45deg);
}

.site-header .dropdown-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px 10px 34px;
  color: var(--ink);
  border-radius: 7px;
  font-size: .9rem;
  font-weight: 800;
  white-space: normal;
}

.site-header .dropdown-item::before {
  content: "";
  position: absolute;
  left: 13px;
  width: 8px;
  height: 8px;
  background: rgba(7, 91, 255, .16);
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.site-header .dropdown-item:hover,
.site-header .dropdown-item:focus {
  color: var(--blue);
  background: #eef5ff;
}

.site-header .dropdown-toggle::after {
  position: static;
  width: auto;
  height: auto;
  margin-left: .4rem;
  background: transparent;
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
  border-radius: 0;
  vertical-align: .12em;
  transform: none;
}

.site-header .nav-link.dropdown-toggle:hover::after,
.site-header .nav-link.dropdown-toggle.active::after {
  height: 0;
  background: transparent;
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
  transform: none;
}

.site-header .nav-link.dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 0;
  height: 3px;
  background: var(--blue);
  border-radius: 999px;
  transition: width .22s ease;
}

.site-header .nav-link.dropdown-toggle:hover::before,
.site-header .nav-link.dropdown-toggle.active::before {
  width: 0;
}

.site-header .dropdown-submenu {
  position: relative;
}

.site-header .dropdown-submenu > .nested-dropdown-menu {
  top: -10px;
  left: calc(100% + 8px);
  margin-top: 0;
}

.site-header .dropdown-submenu > .nested-dropdown-toggle {
  padding-right: 28px;
}

.site-header .dropdown-submenu > .nested-dropdown-toggle::after {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}

@media (min-width: 992px) {
  .site-header .dropdown {
    padding-bottom: 10px;
    margin-bottom: -10px;
  }

  .site-header .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .site-header .dropdown-submenu:hover > .nested-dropdown-menu,
  .site-header .dropdown-submenu:focus-within > .nested-dropdown-menu {
    display: block;
  }
}

@media (max-width: 1199px) {
  .container {
    max-width: min(100% - 32px, 1040px);
  }

  .navbar-nav {
    gap: 14px;
  }

  .site-header .nav-link {
    font-size: .86rem;
  }

  .nav-contact-btn {
    min-width: 176px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .four-up,
  .five-up,
  .six-up,
  .eight-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .site-header {
    position: sticky;
  }

  .site-header .container {
    max-width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand-image img {
    width: 138px;
  }

  .navbar-collapse {
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    margin-top: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid rgba(7, 91, 255, .12);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(6, 26, 92, .12);
  }

  .navbar-nav {
    padding: 0;
  }

  .site-header .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 10px 12px !important;
    border-radius: 7px;
    font-size: .95rem;
  }

  .site-header .nav-link:hover,
  .site-header .nav-link.active {
    background: #eef5ff;
  }

  .site-header .nav-link.dropdown-toggle::before {
    display: none;
  }

  .site-header .dropdown-menu {
    display: none;
    position: static !important;
    min-width: 0;
    padding: 0 0 8px 18px;
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none !important;
  }

  .site-header .dropdown.is-open > .dropdown-menu,
  .site-header .dropdown-submenu.is-open > .nested-dropdown-menu {
    display: block;
  }

  .site-header .dropdown-menu::before {
    display: none;
  }

  .site-header .dropdown-item {
    min-height: 38px;
    padding: 8px 12px 8px 30px;
    font-size: .88rem;
  }

  .site-header .dropdown-submenu > .nested-dropdown-menu {
    display: none;
    padding-left: 14px;
  }

  .site-header .dropdown-toggle::after {
    display: inline-block;
    position: static;
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    margin-left: 10px;
    background: transparent;
    border-top: 0;
    border: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    border-left: 0;
    border-radius: 0;
    transform: rotate(45deg);
    transition: transform .2s ease;
    opacity: .72;
  }

  .site-header .dropdown-submenu > .nested-dropdown-toggle::after {
    position: absolute;
    right: 14px;
    transform: translateY(-50%) rotate(45deg);
  }

  .site-header .dropdown.is-open > .nav-link.dropdown-toggle::after,
  .site-header .dropdown-submenu.is-open > .nested-dropdown-toggle::after {
    transform: rotate(-135deg);
  }

  .site-header .dropdown-submenu.is-open > .nested-dropdown-toggle::after {
    transform: translateY(-50%) rotate(-135deg);
  }

  .hero-content,
  .solutions-layout,
  .process-layout,
  .partnership-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .contact-bootstrap-layout {
    --bs-gutter-y: 1.5rem;
  }
}

@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .section {
    padding: 38px 0;
  }

  .growth-hero,
  .hero-slide {
    min-height: auto;
  }

  .hero-slide {
    padding: 38px 0 74px;
  }

  .hero-content {
    min-height: 0;
    gap: 22px;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .nav-contact-btn {
    width: 100%;
  }

  .hero-note {
    justify-self: stretch;
    width: 100%;
    margin-bottom: 0;
    padding: 18px;
  }

  .four-up,
  .five-up,
  .six-up,
  .eight-up,
  .solution-list,
  .stats-panel,
  .footer-contact-grid,
  .about-points {
    grid-template-columns: 1fr;
  }

  .stats-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .stats-panel div:last-child {
    border-bottom: 0;
  }

  .featured-blog-copy,
  .blog-card-body {
    padding: 18px;
  }

  .contact-form-panel .card-body,
  .contact-info-card .card-body {
    padding: 22px !important;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .site-header .container,
  .container {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-image img {
    width: 126px;
  }

  .inner-hero {
    padding: 82px 0 42px;
  }

  .blog-meta,
  .footer-bottom nav {
    flex-direction: column;
    gap: 6px;
  }
}

/* Admin responsive polish. */
.admin-body {
  color: #10253f;
  overflow-x: hidden;
}

.admin-sidebar {
  z-index: 1020;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.admin-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-brand {
  margin-bottom: 0;
  line-height: 1.1;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar .admin-nav {
  display: grid;
}

.admin-sidebar a {
  min-height: 42px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .82);
  font-size: .96rem;
  font-weight: 750;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.admin-nav-toggle {
  width: 42px;
  height: 38px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
}

.admin-nav-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.admin-main {
  min-height: 100vh;
  padding: clamp(22px, 2.5vw, 34px);
}

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

.admin-heading h1 {
  font-size: clamp(1.65rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.admin-heading p {
  max-width: 900px;
  font-size: .98rem;
  line-height: 1.45;
}

.admin-panel {
  min-width: 0;
  gap: 14px;
  padding: clamp(18px, 2vw, 24px);
}

.admin-two-column {
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 20px;
}

.admin-form-grid {
  gap: 14px;
}

.admin-panel label {
  min-width: 0;
  font-size: .94rem;
}

.admin-panel .form-control,
.admin-panel .form-select {
  min-width: 0;
  min-height: 40px;
  padding: 8px 12px;
  font-size: .92rem;
}

.admin-panel textarea.form-control {
  min-height: 86px;
}

.admin-panel .rich-editor {
  min-height: 240px;
}

.admin-panel .btn {
  min-height: 38px;
  padding: 9px 16px;
  font-size: .86rem;
}

.admin-panel .table-responsive {
  width: 100%;
  overflow-x: auto;
}

.admin-panel .table {
  min-width: 680px;
  margin-bottom: 0;
  table-layout: fixed;
}

.admin-panel .table th,
.admin-panel .table td {
  padding: 12px 10px;
  color: #10253f;
  font-size: .92rem;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

.admin-panel .table th {
  color: #22354d;
  font-weight: 900;
  border-bottom-color: rgba(11, 37, 69, .18);
}

.admin-enquiry-table {
  min-width: 980px;
}

.admin-enquiry-table td strong,
.admin-enquiry-table td span,
.admin-enquiry-table td a {
  display: block;
}

.admin-enquiry-table td span {
  margin-top: 4px;
  color: #6c7890;
  font-size: .84rem;
}

.admin-enquiry-table td a {
  color: #075bff;
  text-decoration: none;
}

.admin-parent-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-help-text {
  margin-top: -6px;
  color: #5f7088;
  font-size: .84rem;
  line-height: 1.45;
}

.admin-menu-table .admin-menu-name {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  font-weight: 900;
}

.admin-menu-table .admin-menu-level-1 {
  margin-left: 18px;
  padding-left: 18px;
}

.admin-menu-table .admin-menu-level-2 {
  margin-left: 38px;
  padding-left: 18px;
}

.admin-menu-table .admin-menu-level-3,
.admin-menu-table .admin-menu-level-4 {
  margin-left: 58px;
  padding-left: 18px;
}

.admin-menu-table .admin-menu-level-1::before,
.admin-menu-table .admin-menu-level-2::before,
.admin-menu-table .admin-menu-level-3::before,
.admin-menu-table .admin-menu-level-4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: #7cb5ff;
}

.admin-panel .table td:last-child {
  width: 170px;
  white-space: nowrap;
}

.admin-panel .table td:last-child form,
.admin-list-row form {
  display: inline-flex !important;
}

.admin-panel .table td:last-child .btn,
.admin-list-row .btn {
  min-width: 78px;
  margin: 0 0 0 6px;
}

.admin-list-row {
  align-items: center;
  gap: 14px;
}

.admin-list-row > div:first-child {
  min-width: 0;
}

.admin-list-row > div:last-child {
  flex: 0 0 auto;
  white-space: nowrap;
}

.admin-list-row strong {
  display: block;
  overflow-wrap: anywhere;
}

.admin-stat-grid article {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 992px) {
  .admin-sidebar .collapse:not(.show) {
    display: grid;
  }
}

@media (max-width: 1199px) {
  .admin-sidebar {
    width: 230px;
    padding: 24px 16px;
  }

  .admin-main {
    margin-left: 230px;
  }

  .admin-two-column {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  }
}

@media (max-width: 991px) {
  .admin-sidebar {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 14px 18px;
    gap: 12px;
    box-shadow: 0 10px 28px rgba(6, 26, 92, .18);
  }

  .admin-nav-toggle {
    display: inline-flex;
  }

  .admin-sidebar .admin-nav {
    display: none;
  }

  .admin-sidebar .admin-nav.show {
    display: grid;
  }

  .admin-sidebar .admin-nav.collapsing {
    display: grid;
  }

  .admin-sidebar a {
    min-height: 38px;
  }

  .admin-main {
    margin-left: 0;
    padding: 20px 18px;
  }

  .admin-two-column {
    grid-template-columns: 1fr;
  }

  .admin-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .admin-main {
    padding: 16px 12px;
  }

  .admin-heading {
    margin-bottom: 14px;
  }

  .admin-panel {
    padding: 16px 14px;
    border-radius: 8px;
  }

  .admin-form-grid,
  .admin-blog-form .admin-form-grid,
  .admin-slider-form .admin-form-grid,
  .admin-stat-grid {
    grid-template-columns: 1fr;
  }

  .admin-panel .table {
    min-width: 620px;
  }

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

  .admin-list-row > div:last-child {
    display: flex;
    gap: 8px;
    white-space: normal;
  }

  .admin-list-row .btn {
    flex: 1;
    margin: 0;
  }

  .admin-list-row form {
    flex: 1;
  }

  .admin-list-row form .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .admin-sidebar {
    padding: 12px;
  }

  .admin-brand {
    font-size: 1.08rem;
  }

  .admin-panel .table {
    min-width: 560px;
  }

  .admin-panel .table th,
  .admin-panel .table td {
    padding: 10px 8px;
    font-size: .86rem;
  }
}

/* Admin dashboard visual polish. */
.admin-body {
  background:
    radial-gradient(circle at 22% 8%, rgba(7, 91, 255, .1), transparent 30%),
    linear-gradient(180deg, #f6f9ff 0%, #eef4fb 100%);
}

.admin-sidebar {
  background:
    linear-gradient(180deg, #0b2543 0%, #071c35 55%, #06162b 100%);
  border-right: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 14px 0 38px rgba(6, 22, 43, .14);
}

.admin-brand {
  position: relative;
  padding-left: 38px;
  font-size: 1.08rem;
  font-weight: 900;
}

.admin-brand::before {
  content: "P";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #075bff, #16b5ff);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(7, 91, 255, .3);
  transform: translateY(-50%);
}

.admin-brand-logo {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.admin-brand-logo::before {
  display: none;
}

.admin-brand-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  padding: 5px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}

.admin-brand-logo span {
  min-width: 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.15;
}

@media (max-width: 480px) {
  .admin-brand-logo img {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }
}

.admin-sidebar a {
  position: relative;
  gap: 10px;
  border: 1px solid transparent;
  transition: background-color .22s ease, border-color .22s ease, transform .22s ease, color .22s ease;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .08);
  transform: translateX(2px);
}

.admin-main {
  padding: clamp(28px, 3.2vw, 54px);
}

.admin-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.admin-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: #075bff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-heading h1 {
  margin-bottom: 8px;
  color: #061a35;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0;
}

.admin-heading p {
  max-width: 720px;
  color: #53637c;
  font-size: 1.02rem;
}

.admin-heading-action,
.admin-overview-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: #fff;
  background: #075bff;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(7, 91, 255, .22);
  font-size: .88rem;
  font-weight: 900;
  text-decoration: none;
}

.admin-heading-action:hover,
.admin-overview-actions a:hover {
  color: #fff;
  background: #0048d9;
}

.admin-heading-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-heading-action.secondary {
  color: #075bff;
  background: #fff;
  border: 1px solid #d7e6ff;
  box-shadow: 0 10px 22px rgba(6, 26, 92, .08);
}

.admin-heading-action.secondary:hover {
  color: #fff;
  background: #075bff;
  border-color: #075bff;
}

.admin-overview-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  padding: clamp(24px, 3vw, 34px);
  color: #fff;
  background:
    radial-gradient(circle at 84% 10%, rgba(22, 181, 255, .32), transparent 28%),
    linear-gradient(135deg, #061a35 0%, #0b3b78 100%);
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(6, 26, 92, .16);
  overflow: hidden;
}

.admin-overview-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #9ed2ff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-overview-card h2 {
  max-width: 760px;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
}

.admin-overview-card p {
  max-width: 670px;
  margin-bottom: 0;
  color: #d9e9ff;
  font-weight: 650;
}

.admin-overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.admin-overview-actions a {
  color: #061a35;
  background: #fff;
  box-shadow: none;
}

.admin-overview-actions a:hover {
  color: #fff;
}

.admin-stat-grid {
  gap: 22px;
}

.admin-stat-grid article {
  position: relative;
  min-height: 178px;
  padding: 28px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(7, 91, 255, .1);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(6, 26, 92, .08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.admin-stat-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, #075bff, #16b5ff);
  opacity: .75;
}

.admin-stat-grid article:hover {
  border-color: rgba(7, 91, 255, .22);
  box-shadow: 0 24px 54px rgba(6, 26, 92, .13);
  transform: translateY(-4px);
}

.admin-stat-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #075bff;
  background: #eef5ff;
  border: 1px solid #d7e6ff;
  border-radius: 12px;
}

.admin-stat-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-stat-grid span {
  color: #075bff;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1;
}

.admin-stat-grid strong {
  margin-top: 10px;
  color: #061a35;
  font-size: 1.05rem;
}

.admin-stat-grid small {
  display: block;
  margin-top: 6px;
  color: #697992;
  font-size: .84rem;
  font-weight: 650;
}

.admin-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.admin-shortcuts a {
  display: grid;
  gap: 6px;
  padding: 20px;
  color: #061a35;
  background: #fff;
  border: 1px solid rgba(7, 91, 255, .1);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(6, 26, 92, .06);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.admin-shortcuts a:hover {
  border-color: rgba(7, 91, 255, .22);
  box-shadow: 0 18px 38px rgba(6, 26, 92, .1);
  transform: translateY(-3px);
}

.admin-shortcuts strong {
  font-size: .98rem;
  font-weight: 900;
}

.admin-shortcuts span {
  color: #697992;
  font-size: .84rem;
  font-weight: 650;
  line-height: 1.45;
}

@media (max-width: 1199px) {
  .admin-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .admin-heading,
  .admin-overview-card {
    grid-template-columns: 1fr;
  }

  .admin-heading-action,
  .admin-overview-actions {
    justify-self: stretch;
  }

  .admin-overview-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .admin-main {
    padding: 18px 14px;
  }

  .admin-heading {
    gap: 14px;
  }

  .admin-heading-action,
  .admin-overview-actions a {
    width: 100%;
  }

  .admin-overview-actions,
  .admin-shortcuts {
    grid-template-columns: 1fr;
  }

  .admin-overview-actions {
    display: grid;
  }

  .admin-stat-grid article {
    min-height: 158px;
    padding: 22px;
  }
}

/* Blog management layout polish. */
.admin-blog-layout {
  gap: 24px;
}

.admin-blog-form {
  gap: 24px;
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: 14px;
}

.admin-blog-section {
  gap: 18px;
}

.admin-blog-section h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding-bottom: 12px;
  color: #061a35;
  border-bottom: 1px solid #e2ebf8;
  font-size: 1.2rem;
  line-height: 1.25;
}

.admin-blog-section h2::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #075bff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(7, 91, 255, .1);
}

.admin-blog-form .admin-form-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.admin-blog-title-field {
  grid-column: span 4;
}

.admin-blog-slug-field {
  grid-column: span 3;
}

.admin-blog-author-field,
.admin-blog-date-field {
  grid-column: span 3;
}

.admin-blog-short-field,
.admin-blog-meta-desc-field {
  grid-column: span 5;
}

.admin-blog-image-field {
  grid-column: span 3;
}

.admin-blog-meta-title-field,
.admin-blog-tags-field {
  grid-column: span 4;
}

.admin-blog-publish-field {
  grid-column: span 2;
  min-height: 48px;
  align-self: end;
  justify-content: center;
  padding: 12px 14px;
  background: #f4f8ff;
  border: 1px solid #dbe7fb;
  border-radius: 8px;
  color: #061a35;
}

.admin-blog-form label,
.admin-blog-slug-field label {
  gap: 8px;
  color: #061a35;
  font-size: .94rem;
  font-weight: 850;
}

.admin-blog-form .form-control,
.admin-blog-form .form-select {
  min-height: 48px;
  padding: 11px 14px;
  background-color: #fff;
  border-color: #d7e3f5;
  border-radius: 8px;
  font-size: .94rem;
}

.admin-blog-form textarea.form-control {
  min-height: 94px;
}

.admin-blog-form .rich-editor {
  min-height: 260px;
  line-height: 1.65;
}

.admin-blog-form input[type="file"] {
  padding: 0;
  overflow: hidden;
}

.admin-blog-form input[type="file"]::file-selector-button {
  min-height: 46px;
  margin-right: 14px;
  padding: 0 18px;
  color: #061a35;
  background: #eef5ff;
  border: 0;
  border-right: 1px solid #d7e3f5;
  font-weight: 850;
}

.admin-upload-tool {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px;
  background: #f7fbff;
  border: 1px solid #d7e6ff;
  border-radius: 12px;
}

.admin-upload-tool .btn {
  min-height: 48px;
  border-radius: 8px;
}

.admin-blog-form > .btn[type="submit"] {
  justify-self: end;
  min-width: 150px;
  min-height: 46px;
  border-radius: 8px;
}

.admin-blog-layout > .admin-panel:not(.admin-blog-form) {
  border-radius: 14px;
}

@media (max-width: 1399px) {
  .admin-blog-title-field,
  .admin-blog-short-field,
  .admin-blog-meta-desc-field {
    grid-column: span 6;
  }

  .admin-blog-slug-field,
  .admin-blog-author-field,
  .admin-blog-date-field,
  .admin-blog-image-field,
  .admin-blog-meta-title-field,
  .admin-blog-tags-field {
    grid-column: span 3;
  }
}

@media (max-width: 1199px) {
  .admin-blog-form .admin-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-blog-title-field,
  .admin-blog-slug-field,
  .admin-blog-author-field,
  .admin-blog-date-field,
  .admin-blog-short-field,
  .admin-blog-image-field,
  .admin-blog-meta-title-field,
  .admin-blog-meta-desc-field,
  .admin-blog-tags-field,
  .admin-blog-publish-field {
    grid-column: auto;
  }

  .admin-blog-publish-field {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .admin-heading h1 {
    font-size: clamp(1.9rem, 11vw, 2.35rem);
  }

  .admin-blog-form {
    padding: 16px;
  }

  .admin-blog-form .admin-form-grid,
  .admin-upload-tool {
    grid-template-columns: 1fr;
  }

  .admin-blog-form .rich-editor {
    min-height: 220px;
  }

  .admin-blog-form > .btn[type="submit"] {
    justify-self: stretch;
    width: 100%;
  }
}

/* Dynamic page editor polish. */
.admin-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  gap: 24px;
  align-items: start;
}

.admin-page-list-layout,
.admin-page-details-layout,
.admin-page-content-form {
  max-width: 1180px;
}

.admin-page-content-form {
  margin: 0;
}

.admin-page-form {
  gap: 24px;
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: 14px;
}

.admin-page-form .admin-form-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.admin-page-simple-form .admin-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-page-name-field,
.admin-page-url-field {
  grid-column: auto;
}

.admin-page-title-field {
  grid-column: span 5;
}

.admin-page-slug-field,
.admin-page-meta-title-field {
  grid-column: span 4;
}

.admin-page-order-field {
  grid-column: span 3;
}

.admin-page-image-field,
.admin-page-meta-desc-field {
  grid-column: span 6;
}

.admin-page-publish-field {
  grid-column: span 2;
  min-height: 48px;
  align-self: end;
  justify-content: center;
  padding: 12px 14px;
  background: #f4f8ff;
  border: 1px solid #dbe7fb;
  border-radius: 8px;
  color: #061a35;
}

.admin-page-url-preview {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: #f7fbff;
  border: 1px solid #d7e6ff;
  border-radius: 10px;
}

.admin-page-url-preview.simple {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.admin-page-url-preview span {
  color: #061a35;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-page-url-preview a {
  min-width: 0;
  color: #075bff;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.admin-page-form .tox-tinymce {
  border-color: #d7e3f5;
  border-radius: 10px;
  overflow: hidden;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.admin-form-actions .btn {
  min-width: 140px;
  min-height: 44px;
  border-radius: 8px;
}

.admin-page-row {
  align-items: center;
}

.admin-page-row span a {
  color: #075bff;
  font-weight: 850;
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-row-actions .btn-primary {
  color: #fff;
}

.admin-row-actions .btn,
.admin-row-actions form {
  margin: 0 !important;
}

.admin-row-actions form .btn {
  margin: 0 !important;
}

.admin-empty-note {
  margin: 0;
  padding: 18px;
  color: #697992;
  background: #f7fbff;
  border: 1px solid #d7e6ff;
  border-radius: 10px;
  font-weight: 750;
}

.admin-delete-panel {
  margin-top: 18px;
  border-color: rgba(220, 53, 69, .18);
}

.admin-delete-panel h2 {
  margin: 0;
  color: #8a1f2d;
  font-size: 1.15rem;
}

.admin-delete-panel p {
  margin: 0;
  color: #697992;
  font-weight: 650;
}

@media (max-width: 1399px) {
  .admin-page-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 991px) {
  .admin-page-form .admin-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-page-title-field,
  .admin-page-slug-field,
  .admin-page-order-field,
  .admin-page-image-field,
  .admin-page-meta-title-field,
  .admin-page-meta-desc-field,
  .admin-page-publish-field {
    grid-column: auto;
  }

  .admin-page-publish-field {
    justify-content: flex-start;
  }

  .admin-heading-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .admin-page-form {
    padding: 16px;
  }

  .admin-page-form .admin-form-grid,
  .admin-page-simple-form .admin-form-grid,
  .admin-page-url-preview,
  .admin-page-url-preview.simple {
    grid-template-columns: 1fr;
  }

  .admin-form-actions,
  .admin-row-actions,
  .admin-heading-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .admin-form-actions .btn,
  .admin-row-actions .btn,
  .admin-heading-actions .admin-heading-action,
  .admin-row-actions form,
  .admin-row-actions form .btn {
    width: 100%;
  }
}

/* Prevent service cards from looking permanently hovered, especially on touch devices. */
.services-section .service-card {
  border-color: rgba(7, 91, 255, .12);
  box-shadow: var(--shadow-soft);
  transform: none;
}

.services-section .service-card .card-image-wrap img {
  transform: none;
}

.services-section.suppress-card-hover .service-card:hover,
.services-section.suppress-card-hover .service-card:focus,
.services-section.suppress-card-hover .service-card:focus-within {
  border-color: rgba(7, 91, 255, .12);
  box-shadow: var(--shadow-soft);
  transform: none;
}

.services-section.suppress-card-hover .service-card:hover .card-image-wrap img,
.services-section.suppress-card-hover .service-card:focus .card-image-wrap img,
.services-section.suppress-card-hover .service-card:focus-within .card-image-wrap img {
  transform: none;
}

@media (max-width: 575.98px) {
  .admin-parent-picker {
    grid-template-columns: 1fr;
  }

  .admin-menu-table .admin-menu-level-1 {
    margin-left: 10px;
  }

  .admin-menu-table .admin-menu-level-2 {
    margin-left: 20px;
  }

  .admin-menu-table .admin-menu-level-3,
  .admin-menu-table .admin-menu-level-4 {
    margin-left: 30px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .services-section .service-card:hover {
    border-color: rgba(7, 91, 255, .38);
    box-shadow: var(--shadow-lift);
    transform: translateY(-6px);
  }

  .services-section .service-card:hover .card-image-wrap img {
    transform: scale(1.055);
  }
}

@media (hover: none), (pointer: coarse) {
  .services-section .service-card:hover,
  .services-section .service-card:focus,
  .services-section .service-card:focus-within {
    border-color: rgba(7, 91, 255, .12);
    box-shadow: var(--shadow-soft);
    transform: none;
  }

  .services-section .service-card:hover .card-image-wrap img,
  .services-section .service-card:focus .card-image-wrap img,
  .services-section .service-card:focus-within .card-image-wrap img {
    transform: none;
  }
}

/* Increase all homepage slider heights. */
.growth-hero {
  height: clamp(640px, 44.25vw, 850px);
  min-height: 0;
  background: #fff !important;
  background-image: none !important;
  padding-top: 0 !important;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero-slide {
  height: clamp(640px, 44.25vw, 850px);
  min-height: 0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.hero-slide .hero-content {
  min-height: clamp(500px, 34vw, 640px);
  align-items: center;
  column-gap: clamp(28px, 5vw, 78px);
}

.growth-hero::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.hero-slide::before {
  display: none !important;
  content: none !important;
  background: none !important;
}

#homeHeroSlider,
#homeHeroSlider .hero-slides {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: transparent !important;
  clip-path: inset(0);
}

#homeHeroSlider .hero-slide {
  position: absolute;
  inset: 0;
  display: none !important;
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: none !important;
  backface-visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: none !important;
  transition: none !important;
  will-change: auto;
  z-index: 0;
}

#homeHeroSlider .hero-slide.active {
  display: block !important;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

#homeHeroSlider .hero-slide::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .90) 0%, rgba(255, 255, 255, .66) 34%, rgba(255, 255, 255, .18) 58%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(90deg, rgba(4, 19, 72, .12) 0%, rgba(4, 19, 72, .06) 36%, rgba(4, 19, 72, 0) 64%);
  content: "";
}

#homeHeroSlider .hero-slide:not(.active),
#homeHeroSlider .hero-slide[hidden] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  background-image: none !important;
}

#homeHeroSlider .hero-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  display: block;
  z-index: 0;
}

#homeHeroSlider .hero-slide > .container {
  position: relative;
  z-index: 2;
}

.service-card .card-image-wrap {
  height: 310px;
}

.industry-slide-card .card-image-wrap {
  height: 258px;
}

.story-slider .story-card img {
  height: 258px;
}

.testimonial-card {
  min-height: 360px;
}

.testimonial-card > p {
  min-height: 216px;
}

.blog-slider .blog-card-body {
  min-height: 330px;
}

.growth-hero .container,
.hero-slide .container {
  max-width: min(1380px, calc(100vw - 72px));
}

.hero-slide .hero-content {
  grid-template-columns: minmax(420px, 600px) minmax(420px, 1fr);
}

.hero-copy-block {
  position: relative;
  z-index: 2;
  margin-left: clamp(18px, 3.2vw, 56px);
  max-width: min(590px, 100%);
  gap: 0;
  padding-top: clamp(8px, 2vh, 28px);
}

.hero-category {
  margin-bottom: 24px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #1c1769 0%, #075bff 100%);
  border-radius: 7px;
  box-shadow: 0 12px 26px rgba(7, 91, 255, .18);
  font-size: .94rem;
}

.hero-copy-block .hero-title {
  max-width: 590px;
  margin-bottom: 24px;
  color: #061650;
  font-size: 40px;
  font-weight: 820;
  line-height:50px;
  letter-spacing: 0;
  text-wrap: balance;
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 8px rgba(255, 255, 255, .92), 0 12px 28px rgba(6, 22, 80, .18);
}

.hero-copy-block .hero-title span {
  display: block;
  margin-top: 6px;
  color: #075bff;
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 8px rgba(255, 255, 255, .9), 0 12px 28px rgba(7, 91, 255, .2);
}

.hero-copy-block .hero-title .hero-highlight-secondary {
  color: #07833d;
  text-shadow: 0 2px 8px rgba(255, 255, 255, .9), 0 12px 28px rgba(7, 131, 61, .2);
}

.hero-copy-block > p:not(.hero-title) {
  max-width: 560px;
  margin-bottom: 32px;
  padding: 13px 0 13px 20px;
  color: #10245d;
  border-left: 5px solid #11bfb1;
  font-size: clamp(1rem, 1vw, 1.12rem);
  font-weight: 750;
  line-height: 1.62;
  text-wrap: pretty;
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 8px rgba(255, 255, 255, .9), 0 10px 24px rgba(16, 36, 93, .16);
}

.hero-copy-block > p:not(.hero-title)::before {
  content: none;
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.hero-actions .btn {
  min-width: 250px;
  min-height: 52px;
  justify-content: center;
  padding-right: 26px;
  padding-left: 26px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 900;
  text-align: center;
}

.hero-note {
  align-self: center;
  max-width: 410px;
  margin-bottom: 0;
  background: rgba(7, 91, 255, .28);
  border: 1px solid rgba(255, 255, 255, .48);
  box-shadow: 0 22px 52px rgba(7, 91, 255, .18);
  backdrop-filter: blur(10px);
}

.hero-dots {
  left: calc(((100vw - min(1380px, 100vw - 72px)) / 2) + clamp(18px, 3.2vw, 56px));
  right: auto;
  bottom: auto;
  top: 620px;
  justify-content: flex-start;
  gap: 9px;
  margin: 0;
  z-index: 5;
}

.hero-dots [data-bs-target] {
  width: 42px;
  height: 4px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background-color: #d5dceb;
  opacity: 1;
  transition: width .22s ease, background-color .22s ease;
}

.hero-dots .active {
  width: 46px;
  background-color: #075bff;
}

@media (max-width: 991px) {
  .hero-slide {
    min-height: 720px;
  }

  .hero-copy-block {
    margin-left: 0;
    padding-top: 0;
  }

  .hero-dots {
    left: calc((100vw - min(1180px, 100vw - 24px)) / 2);
    top: auto;
    bottom: 34px;
  }

  .hero-slide .hero-content {
    align-items: center;
    grid-template-columns: 1fr;
  }

  .growth-hero .container,
  .hero-slide .container {
    max-width: min(1180px, calc(100vw - 24px));
  }

  .hero-copy-block .hero-title {
    font-size: clamp(2rem, 6.5vw, 2.7rem);
  }

  .hero-actions .btn {
    min-width: 230px;
  }
}

@media (max-width: 767px) {
  .hero-slide {
    min-height: 750px;
  }

  .service-card .card-image-wrap {
    height: 295px;
  }

  .industry-slide-card .card-image-wrap {
    height: 280px;
  }

  .hero-copy-block {
    align-items: stretch;
    max-width: 100%;
  }

  .hero-category {
    width: max-content;
  }

  .hero-copy-block > p:not(.hero-title) {
    max-width: 100%;
    padding-left: 16px;
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

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

  .testimonial-card,
  .testimonial-card > p {
    min-height: auto;
  }
}

/* Slider-aware navigation treatment. */
.site-header {
  isolation: isolate;
  background: rgba(255, 255, 255, .96);
  border-bottom: 0;
  box-shadow: none;
  transition: box-shadow .25s ease;
}

body.has-hero-slider .site-header {
  position: sticky !important;
  top: 0;
  z-index: 1050;
  background: #fff !important;
  background-color: #fff !important;
  border-bottom: 1px solid #e8eef8 !important;
  box-shadow: 0 8px 24px rgba(8, 22, 79, .08) !important;
  backdrop-filter: none !important;
}

body.has-hero-slider .site-header .navbar {
  background: #fff !important;
  background-color: #fff !important;
  backdrop-filter: none !important;
}

body.has-hero-slider .site-header::before {
  display: none !important;
  content: none !important;
}

body.has-hero-slider .site-header.is-scrolled {
  background: #fff !important;
  background-color: #fff !important;
  border-bottom: 1px solid #e8eef8 !important;
  box-shadow: 0 10px 28px rgba(8, 22, 79, .08) !important;
  backdrop-filter: none !important;
}

.site-header .navbar,
.site-header .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  body.has-hero-slider .site-header {
    position: sticky !important;
    top: 0;
    z-index: 1050;
    background: #fff !important;
  }

  body.has-hero-slider .hero-slide {
    height: clamp(640px, 44.25vw, 850px);
    min-height: 0;
    padding-top: 44px;
    background-position: center center;
    background-size: cover;
  }

  body.has-hero-slider .hero-slide .hero-content {
    min-height: clamp(500px, 34vw, 640px);
  }

  body.has-hero-slider .hero-copy-block {
    padding-top: 24px;
  }

  body.has-hero-slider .hero-dots {
    top: clamp(565px, 37vw, 690px);
  }

  .site-header .navbar {
    min-height: 86px;
  }

  .site-header .container {
    max-width: min(1500px, calc(100vw - 72px));
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
  }

  .site-header .navbar-collapse {
    display: contents !important;
  }

  .site-header .navbar-nav {
    justify-self: center;
    align-items: center;
    gap: 0;
    max-width: min(820px, 100%);
    min-height: 52px;
    padding: 0 22px;
    background: #fff;
    border: 1px solid #e8eef8;
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(8, 22, 79, .08);
    backdrop-filter: none;
  }

  .site-header .nav-item {
    display: flex;
    align-items: center;
  }

  .site-header .nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 0 19px !important;
    color: #0e2359;
    font-size: .92rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .site-header .nav-link:hover,
  .site-header .nav-link.active {
    color: #075bff;
    background: transparent;
  }

  .site-header .nav-link::after {
    bottom: 8px;
    left: 19px;
    height: 3px;
    background: #075bff;
  }

  .site-header .nav-link.dropdown-toggle::after {
    position: static;
    width: auto;
    height: auto;
    margin-left: 8px;
    background: transparent;
  }

  .site-header .nav-link.dropdown-toggle.active::after,
  .site-header .nav-link.dropdown-toggle:hover::after {
    width: auto;
  }

  .site-header .brand-image img {
    width: 172px;
    max-height: 60px;
    filter: drop-shadow(0 10px 22px rgba(7, 91, 255, .14));
  }

  .site-header .nav-contact-btn {
    justify-self: end;
    min-width: 246px;
    min-height: 52px;
    border-radius: 999px;
    background: #075bff;
    border-color: #075bff;
    box-shadow: 0 14px 32px rgba(7, 91, 255, .24);
  }
}

@media (max-width: 991px) {
  .site-header {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid #e8eef8;
  }

  .site-header::before {
    display: none;
  }
}

/* Keep the menu hover underline aligned to the text, not the full padded nav item. */
@media (min-width: 992px) {
  .site-header .nav-link:not(.dropdown-toggle)::after {
    left: 19px;
    right: auto;
    width: 0;
  }

  .site-header .nav-link:not(.dropdown-toggle):hover::after,
  .site-header .nav-link:not(.dropdown-toggle).active::after {
    width: calc(100% - 38px);
  }

  .site-header .nav-link.dropdown-toggle::before {
    left: 19px;
    bottom: 8px;
    width: 0;
    height: 3px;
    background: #075bff;
    border-radius: 999px;
  }

  .site-header .nav-link.dropdown-toggle:hover::before,
  .site-header .nav-link.dropdown-toggle.active::before {
    width: calc(100% - 65px);
  }
}

/* Industries strip below hero slider. */
.industries-strip-section {
  padding: clamp(56px, 6vw, 82px) 0;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.industries-strip-section .section-heading {
  margin-bottom: 34px;
}

.industries-strip-section .section-heading h2 {
  color: #07164c;
  font-size: clamp(2.05rem, 3vw, 3rem);
  font-weight: 900;
}

.industry-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.industry-strip-card {
  min-height: 252px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 28px 26px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(205, 218, 238, .72);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(10, 35, 88, .08);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.industry-strip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7, 91, 255, .26);
  box-shadow: 0 24px 54px rgba(10, 35, 88, .13);
}

.industry-strip-icon {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
}

.industry-strip-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #075bff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-strip-icon.blue {
  background: #eaf3ff;
}

.industry-strip-icon.sky {
  background: #eef7ff;
}

.industry-strip-icon.rose {
  background: #fff0f2;
}

.industry-strip-icon.mint {
  background: #eafffb;
}

.industry-strip-card h3 {
  min-height: 50px;
  margin-bottom: 12px;
  color: #07164c;
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.3;
}

.industry-strip-card p {
  margin-bottom: 28px;
  color: #61708d;
  font-size: .96rem;
  font-weight: 650;
  line-height: 1.5;
}

.industry-strip-card a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-top: auto;
  color: #075bff;
  background: #eef5ff;
  border: 1px solid rgba(7, 91, 255, .16);
  border-radius: 6px;
  font-size: .84rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .22s ease, background-color .22s ease, transform .22s ease;
}

.industry-strip-card:hover a {
  color: #fff;
  background: #075bff;
  border-color: #075bff;
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  .industry-strip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .industries-strip-section {
    padding: 46px 0 58px;
  }

  .industry-strip-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industry-strip-card {
    min-height: auto;
    padding: 24px;
  }

  .industry-strip-card h3 {
    min-height: auto;
  }
}

/* Blog and article page polish for static publishing. */
.blog-list-hero,
.article-hero {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  align-items: center;
  padding: clamp(82px, 9vw, 132px) 0 clamp(58px, 7vw, 88px);
  background:
    linear-gradient(90deg, rgba(3, 18, 47, .96) 0%, rgba(6, 31, 76, .86) 45%, rgba(7, 91, 255, .36) 100%),
    url("../images/insight-product-engineering.png") center / cover no-repeat;
}

.blog-list-hero::after,
.article-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, .16);
  content: "";
}

.blog-list-hero .container,
.article-hero .container {
  position: relative;
  z-index: 1;
}

.blog-list-hero h1,
.article-hero h1 {
  max-width: 780px;
  text-wrap: balance;
}

.blog-list-hero p:not(.eyebrow),
.article-hero p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  color: #e2ecff;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 700;
  line-height: 1.65;
}

.featured-blog {
  position: relative;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  border-color: rgba(7, 91, 255, .16);
  box-shadow: 0 22px 58px rgba(6, 26, 92, .12);
}

.featured-blog-image {
  position: relative;
  min-height: 430px;
}

.featured-blog-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(3, 18, 47, 0), rgba(3, 18, 47, .72));
  content: "";
  pointer-events: none;
}

.featured-blog-image span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 9px 14px;
  color: #fff;
  background: rgba(7, 91, 255, .92);
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.featured-blog-copy {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.blog-card:hover {
  border-color: rgba(7, 91, 255, .24);
  box-shadow: 0 24px 54px rgba(11, 37, 69, .12);
  transform: translateY(-4px);
}

.blog-image-link {
  background: #eef4ff;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.blog-card-body .text-link,
.featured-blog-copy .text-link {
  width: max-content;
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: 2px solid rgba(7, 91, 255, .22);
}

.blog-meta {
  align-items: center;
  gap: 8px;
  color: #65748e;
  font-size: .78rem;
  text-transform: uppercase;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
}

.blog-meta span + span::before {
  width: 5px;
  height: 5px;
  margin-right: 8px;
  background: #0aa36f;
  border-radius: 50%;
  content: "";
}

.article-page {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.article-shell {
  max-width: 1040px;
}

.article-image {
  width: 100%;
  aspect-ratio: 16 / 7.5;
  max-height: none;
  margin-top: -34px;
  background: #eef4ff;
  border: 8px solid #fff;
  box-shadow: 0 22px 54px rgba(6, 26, 92, .14);
}

.article-content {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  background: #fff;
  border: 1px solid rgba(7, 91, 255, .1);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 26, 92, .08);
}

.article-content > :first-child {
  margin-top: 0;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-content a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.tag-row {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.tag-row a {
  color: #075bff;
  background: #eef5ff;
  border-color: rgba(7, 91, 255, .18);
  font-size: .78rem;
  font-weight: 900;
}

@media (max-width: 991px) {
  .featured-blog {
    grid-template-columns: 1fr;
  }

  .featured-blog-image {
    min-height: 330px;
  }

  .article-image {
    aspect-ratio: 16 / 9;
    margin-top: -22px;
    border-width: 6px;
  }
}

@media (max-width: 767px) {
  .blog-list-hero,
  .article-hero {
    min-height: 280px;
  }

  .blog-page-grid,
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .featured-blog-image {
    min-height: 260px;
  }

  .featured-blog-copy,
  .blog-card-body,
  .article-content {
    padding: 20px;
  }

  .article-shell {
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .article-image {
    border-width: 4px;
    border-radius: 7px;
  }
}

/* Site-wide heading scale reduction. Keep this at the end so it wins over earlier section rules. */
h1,
.hero-copy-block h1,
.hero-copy-block .hero-title,
.inner-hero h1,
.blog-list-hero h1,
.article-hero h1,
.admin-heading h1,
.admin-login-card h1 {
  font-size: clamp(1.9rem, 2.55vw, 2.65rem) !important;
  line-height: 1.16 !important;
}

h2,
.section-heading h2,
.about-copy h2,
.solutions-copy h2,
.final-cta h2,
.contact-copy h2,
.contact-info-card h2,
.featured-blog-copy h2,
.empty-state h2,
.admin-panel h2,
.admin-blog-section h2,
.admin-delete-panel h2,
.admin-overview-card h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem) !important;
  line-height: 1.18 !important;
}

h3,
.outcome-card h3,
.image-card h3,
.story-card h3,
.service-card h3,
.industry-slide-card h3,
.industry-strip-card h3,
.solution-list h3,
.process-line h3,
.about-points h3,
.transform-column h3,
.partnership-visual h3,
.blog-card h3,
.footer-grid h3,
.site-footer h3,
.article-content h3 {
  font-size: clamp(.9rem, 1.25vw, 1.08rem) !important;
  line-height: 1.28 !important;
}

.industries-strip-section .section-heading h2 {
  font-size: clamp(1.5rem, 2.25vw, 2.1rem) !important;
}

@media (max-width: 991px) {
  h1,
  .hero-copy-block h1,
  .hero-copy-block .hero-title,
  .inner-hero h1,
  .blog-list-hero h1,
  .article-hero h1 {
    font-size: clamp(1.75rem, 6.2vw, 2.35rem) !important;
  }

  h2,
  .section-heading h2,
  .about-copy h2,
  .solutions-copy h2,
  .final-cta h2,
  .contact-info-card h2 {
    font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
  }
}

@media (max-width: 767px) {
  h1,
  .hero-copy-block h1,
  .hero-copy-block .hero-title,
  .inner-hero h1,
  .blog-list-hero h1,
  .article-hero h1 {
    font-size: clamp(1.55rem, 7.4vw, 2rem) !important;
  }

  h2,
  .section-heading h2,
  .about-copy h2,
  .solutions-copy h2,
  .final-cta h2,
  .contact-info-card h2 {
    font-size: clamp(1.2rem, 6vw, 1.55rem) !important;
  }

  h3,
  .outcome-card h3,
  .image-card h3,
  .story-card h3,
  .service-card h3,
  .industry-slide-card h3,
  .industry-strip-card h3,
  .solution-list h3,
  .process-line h3,
  .about-points h3,
  .transform-column h3,
  .partnership-visual h3,
  .blog-card h3,
  .footer-grid h3,
  .site-footer h3 {
    font-size: .88rem !important;
  }
}

/* Fixed navigation */
:root {
  --fixed-header-height: 86px;
}

body {
  padding-top: var(--fixed-header-height);
}

.site-header,
body.has-hero-slider .site-header {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
}

#home,
#about,
#services,
#solutions,
#industries,
#approach,
#our-work,
#blog,
#contact {
  scroll-margin-top: calc(var(--fixed-header-height) + 18px);
}

@media (max-width: 991px) {
  :root {
    --fixed-header-height: 76px;
  }
}
