: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;
}

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

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:hover::after,
.site-header .nav-link.active::after {
  width: 100%;
}

.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;
}

.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,
.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,
.story-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 650;
}

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

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

.section-closing {
  margin: 18px 0 2px;
  color: var(--muted);
  text-align: center;
  font-size: .82rem;
  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%);
}

.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(6, 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-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-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) {
  .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,
  .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, 3.45rem);
  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;
  }

  .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: 640px;
}

.hero-slide {
  min-height: 560px;
  padding: 76px 0 92px;
  background-position: center center;
}

.hero-slide::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 37%, rgba(255, 255, 255, .35) 62%, rgba(255, 255, 255, .04) 100%),
    radial-gradient(circle at 18% 50%, rgba(7, 91, 255, .1), transparent 34%);
}

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

.hero-slide .hero-content {
  min-height: 392px;
  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;
}

.hero-copy-block h1,
.hero-title {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--ink);
  font-family: "Gellix", "Segoe UI", Arial, sans-serif;
  font-size: clamp(3.15rem, 2.5vw, 4.45rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

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

.hero-copy-block > p:not(.hero-title) {
  max-width: 650px;
  margin-bottom: 30px;
  color: #1d2b5a;
  font-family: "Gellix", "Segoe UI", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 650;
  line-height: 1.72;
}

.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: 620px;
    padding: 58px 0 96px;
  }

  .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-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: 650px;
    padding: 46px 0 92px;
  }

  .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 58%, rgba(255, 255, 255, .78) 100%),
      radial-gradient(circle at 20% 35%, rgba(7, 91, 255, .08), 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;
  }

  .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: clamp(3.15rem, 2.5vw, 4.45rem);
  font-weight: 900;
  line-height: 1.08;
  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: var(--blue);
  background: #fff;
  border-color: #fff;
  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;
}

.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(260px, 1.05fr) minmax(210px, .8fr) minmax(270px, .95fr);
  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: 1.1fr .9fr 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;
  }
}
