:root {
  --blue: #3479b9;
  --blue-dark: #23679f;
  --ink: #202020;
  --navy: #12212f;
  --muted: #818181;
  --line: #e5e5e5;
  --surface: #ffffff;
  --footer: #101010;
  --max: 1170px;
  --shadow: 0 18px 42px rgba(15, 27, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.container {
  width: min(var(--max), calc(100% - 60px));
  margin: 0 auto;
}

.topbar {
  height: 40px;
  color: #c2c8d2;
  background: #0e1520;
  font-size: 13px;
}

.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.topbar a:hover {
  color: #fff;
}

.language {
  position: relative;
}

.language-button {
  border: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
}

.language-button img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.language-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 7px);
  right: 0;
  display: none;
  min-width: 130px;
  padding: 8px 0;
  color: #222;
  background: #fff;
  box-shadow: var(--shadow);
}

.language.open .language-menu {
  display: block;
}

.language-menu button {
  width: 100%;
  border: 0;
  padding: 9px 16px;
  text-align: left;
  background: #fff;
  cursor: pointer;
}

.language-menu button:hover {
  color: var(--blue);
  background: #f5f5f5;
}

.site-header {
  position: relative;
  z-index: 30;
  background: #fff;
}

.home-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand img {
  width: 200px;
}

.desktop-nav {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 6px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link,
.nav-trigger {
  height: 100%;
  border: 0;
  padding: 0 14px;
  color: #14181f;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-item.open .nav-trigger {
  color: var(--blue);
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  border-radius: 0 0 2px 0;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown {
  position: absolute;
  z-index: 50;
  top: 100%;
  left: 0;
  display: none;
  min-width: 230px;
  padding: 10px 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 22px;
  color: #555;
  font-size: 13px;
  transition: 0.2s ease;
}

.dropdown a:hover {
  color: var(--blue);
  background: #f7f7f7;
  padding-left: 27px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 22px;
}

.region {
  position: relative;
}

.region-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 6px 2px;
  color: #14181f;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.region-button:hover {
  color: var(--blue);
}

.region-button .globe {
  width: 19px;
  height: 19px;
}

.region-menu {
  position: absolute;
  z-index: 50;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  min-width: 215px;
  padding: 8px 0;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.region.open .region-menu {
  display: block;
}

.region-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  font-size: 14px;
  color: #444;
}

.region-option.active {
  color: var(--blue);
  font-weight: 600;
}

.region-option.soon {
  color: #9aa0a6;
}

.region-option em {
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b0b6bc;
}

.quick-search {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.quick-search input {
  width: 100%;
  border: 0;
  outline: none;
  color: #555;
}

.quick-search button {
  border: 0;
  padding: 8px;
  color: #777;
  background: transparent;
  cursor: pointer;
}

.search-icon {
  width: 14px;
  height: 14px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  border-top: 1.7px solid currentColor;
  transform: rotate(45deg);
}

.socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #aaa;
  font-size: 14px;
  font-weight: 700;
}

.socials a:hover {
  color: var(--blue);
}

.socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.mobile-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 535px;
  color: #fff;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 0.8s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 30, 55, 0.22), rgba(16, 29, 60, 0.02));
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(930px, calc(100% - 110px));
  margin: 0 auto;
  padding-top: 158px;
}

.slide-number {
  margin-bottom: 24px;
  font-size: 11px;
}

.hero h1 {
  max-width: 650px;
  margin: 0 0 34px;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.cta-button {
  height: 50px;
  border: 0;
  padding: 0 0 0 24px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.cta-button span {
  width: 42px;
  height: 42px;
  margin-right: 4px;
  color: var(--ink);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  line-height: 1;
}

.hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(13, 28, 50, 0.08);
  font-size: 32px;
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-arrow:hover {
  background: rgba(52, 121, 185, 0.7);
}

.hero-next {
  background: rgba(13, 28, 50, 0.13);
}

.hero-prev {
  left: 26px;
}

.hero-next {
  right: 26px;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  right: 62px;
  bottom: 36px;
  display: flex;
  align-items: end;
  gap: 9px;
}

.hero-dot {
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
  outline: 0;
}

.hero-dot.active {
  color: #fff;
  font-size: 22px;
}

.section-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rule {
  width: 150px;
  height: 2px;
  margin: 28px 0 34px;
  background: linear-gradient(90deg, var(--blue) 0 50px, #e4e4e4 50px 100%);
}

.about {
  position: relative;
  min-height: 690px;
  padding: 100px 0;
  overflow: hidden;
  background-image: radial-gradient(#d9d9d9 0.75px, transparent 0.75px);
  background-size: 10px 10px;
  background-position: -2px -2px;
}

.about::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 430px;
  height: 430px;
  opacity: 0.18;
  background: url("./assets/9252fc99d6a452b5.png") center/contain no-repeat;
}

.about-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 51% 49%;
  align-items: center;
}

.about-image {
  height: 450px;
  object-fit: cover;
}

.about-copy {
  min-height: 340px;
  padding: 64px 70px;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-copy h2,
.solutions-copy h2,
.partners h2 {
  margin: 0;
  color: #212121;
  font-size: clamp(37px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.about-copy p,
.solutions-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.solutions {
  position: relative;
  min-height: 760px;
  padding: 80px 0 100px;
  overflow: hidden;
}

.solutions::before {
  content: "Industries";
  position: absolute;
  left: -78px;
  top: 335px;
  color: #f4f4f4;
  font-size: 150px;
  font-weight: 700;
  transform: rotate(-90deg);
}

.solutions-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 41% 59%;
  align-items: center;
}

.solutions-copy {
  padding-right: 45px;
}

.round-arrows {
  display: flex;
  gap: 12px;
  margin-top: 35px;
}

.round-arrows button {
  width: 50px;
  height: 50px;
  border: 1px solid #dedede;
  border-radius: 50%;
  color: #222;
  background: #fff;
  font-size: 24px;
  cursor: pointer;
}

.round-arrows button:hover {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.solution-stage {
  position: relative;
  min-height: 560px;
}

.solution-card {
  position: absolute;
  width: 50%;
  min-height: 335px;
  padding: 38px 40px;
  color: #fff;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1000px rgba(19, 33, 47, 0.03);
  transition: 0.4s ease;
}

.solution-card:nth-child(1) {
  left: 0;
  top: 80px;
  background-color: var(--blue);
}

.solution-card:nth-child(2) {
  top: 0;
  right: 0;
  padding-top: 365px;
  min-height: 560px;
  background-color: var(--navy);
  background-position: top;
  background-size: 100% 50%;
  background-repeat: no-repeat;
}

.solution-card h3 {
  margin: 0;
  font-size: 23px;
}

.solution-card .card-arrow {
  position: absolute;
  right: 36px;
  bottom: 35px;
  font-size: 30px;
}

.projects {
  min-height: 600px;
  color: #fff;
  background: #253b52 center/cover no-repeat;
  display: grid;
  grid-template-columns: 235px 1fr 165px;
}

.project-tabs {
  background: rgba(15, 33, 50, 0.72);
  align-self: stretch;
}

.project-tab {
  width: 100%;
  min-height: 140px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  padding: 25px 20px;
  color: #fff;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.project-tab small {
  display: block;
}

.project-tab strong {
  font-size: 16px;
}

.project-tab.active {
  background: var(--blue);
}

.projects-label {
  padding: 28px 20px;
  color: #777;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonials {
  position: relative;
  min-height: 940px;
  padding: 110px 0;
  overflow: hidden;
}

.testimonials::before {
  content: "Clients";
  position: absolute;
  right: -5px;
  top: -82px;
  color: #f4f4f4;
  font-size: 180px;
  font-weight: 800;
}

.testimonial-list {
  position: relative;
  z-index: 1;
}

.testimonial {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  min-height: 250px;
}

.testimonial-photo {
  position: relative;
}

.testimonial-photo img {
  width: 250px;
  height: 250px;
  object-fit: cover;
}

.quote {
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  color: #fff;
  background: var(--blue);
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 800;
}

.testimonial-copy {
  padding: 5px 0 35px;
}

.testimonial-copy h3 {
  margin: 0 0 12px;
  font-size: 19px;
}

.testimonial-copy h3 em {
  font-size: 14px;
  font-weight: 400;
}

.testimonial-copy p {
  margin: 0;
  color: var(--muted);
}

.stars {
  margin-top: 14px;
  color: #f1c52e;
  font-size: 18px;
  letter-spacing: 1px;
}

.partners {
  padding: 80px 0 0;
  text-align: center;
  background: linear-gradient(#fff 0 65%, rgba(239, 239, 239, 0.75));
}

.partners .rule {
  margin-left: auto;
  margin-right: auto;
}

.partner-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 68px;
  text-align: left;
}

.partner-card {
  position: relative;
  min-height: 505px;
}

.partner-card > img {
  width: 100%;
  height: 375px;
  object-fit: cover;
}

.partner-box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  min-height: 180px;
  padding: 34px 38px;
  background: #fff;
  box-shadow: var(--shadow);
}

.partner-box h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.25;
}

.partner-box a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-strip {
  min-height: 225px;
  display: flex;
  align-items: center;
}

.contact-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 680px;
}

.contact-method {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
}

.contact-icon {
  color: #cfcfcf;
  font-size: 50px;
}

.contact-method h4 {
  margin: 0;
  font-size: 16px;
}

.contact-method p {
  margin: 8px 0 0;
  color: #888;
}

.footer {
  color: #5b6672;
  background: #f2f4f7;
  border-top: 1px solid #e6eaef;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 64px 0 56px;
}

.footer-col h3 {
  margin: 0 0 22px;
  color: #1c2430;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin: 13px 0;
}

.footer-col a {
  color: #5b6672;
  font-size: 14px;
  transition: 0.2s ease;
}

.footer-col a:hover {
  color: #1a73e8;
}

.footer-plain {
  color: #8a93a0;
  font-size: 14px;
}

.footer-bar {
  border-top: 1px solid #e2e6ec;
}

.footer-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.footer-lang {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #4b5563;
  font-size: 14px;
}

.footer-lang .globe {
  width: 17px;
  height: 17px;
}

.footer-bar-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer-bar-right a {
  color: #5b6672;
  font-size: 14px;
  transition: 0.2s ease;
}

.footer-bar-right a:hover {
  color: #1a73e8;
}

.footer-mark {
  color: #8a93a0;
  font-size: 14px;
}

.inner-header {
  border-bottom: 1px solid var(--line);
}

.inner-brand {
  height: 106px;
  display: flex;
  align-items: center;
}

.inner-brand img {
  width: 255px;
}

.inner-nav-wrap {
  border-top: 1px solid var(--line);
}

.inner-nav-shell {
  height: 65px;
  display: grid;
  grid-template-columns: 1fr auto;
}

.inner-nav {
  height: 65px;
  display: flex;
  flex-wrap: nowrap;
}

.inner-nav .nav-item {
  flex: 1 1 auto;
  justify-content: center;
  border-left: 1px solid var(--line);
}

.inner-nav .nav-item:last-child {
  border-right: 1px solid var(--line);
}

.inner-nav .nav-link,
.inner-nav .nav-trigger {
  justify-content: center;
  padding: 0 10px;
  font-size: 12px;
}

.inner-nav .nav-item.active .nav-link,
.inner-nav .nav-item.active .nav-trigger {
  color: var(--blue);
}

.inner-tools {
  height: 65px;
  padding: 0 55px 0 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.inner-tools .language-button {
  color: #111;
  font-size: 12px;
  font-weight: 700;
}

.inner-tools .language-button img {
  width: 28px;
  height: 28px;
}

.inner-tools .socials {
  gap: 20px;
}

.inner-search-trigger {
  border: 0;
  padding: 8px;
  color: #333;
  background: transparent;
  cursor: pointer;
}

.title-bar {
  min-height: 202px;
  color: #fff;
  background: #111 center/cover no-repeat;
  display: flex;
  align-items: center;
}

.title-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title-bar h1 {
  margin: 0;
  font-size: clamp(35px, 4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.breadcrumbs {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: #fff;
}

.service-detail {
  padding: 98px 0 0;
}

.service-grid {
  min-height: 556px;
}

.service-grid > h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.2;
}

.service-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 36px;
}

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

.service-copy {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.service-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact-page {
  padding: 105px 0 130px;
}

.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 90px;
}

.contact-hero img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2,
.contact-form-wrap h2 {
  margin: 0 0 30px;
  font-size: 45px;
  line-height: 1.2;
}

.contact-info p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.contact-card {
  padding: 25px;
  border: 1px solid var(--line);
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
}

.contact-card span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #5d5d5d;
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 14px 16px;
  outline: none;
  background: #fafafa;
  transition: 0.2s ease;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: #fff;
}

.form-submit {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  padding: 15px 35px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-submit:hover {
  background: var(--blue-dark);
}

.form-status {
  grid-column: 1 / -1;
  display: none;
  padding: 14px 18px;
  color: #235c31;
  background: #e7f6eb;
}

.form-status.visible {
  display: block;
}

.legacy-detail {
  padding: 0 0 120px;
}

.legacy-hero {
  min-height: 520px;
  color: #fff;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}

.legacy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 29, 45, 0.48);
}

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

.legacy-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 68px;
  line-height: 1.08;
}

.legacy-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: -55px;
  position: relative;
  z-index: 2;
}

.legacy-section {
  min-height: 265px;
  padding: 40px;
  background: #fff;
  box-shadow: var(--shadow);
}

.legacy-section h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.legacy-section p {
  color: var(--muted);
}

.search-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  color: #fff;
  background: rgba(10, 10, 10, 0.97);
}

.search-overlay.open {
  display: grid;
  place-items: center;
}

.search-close {
  position: absolute;
  top: 28px;
  right: 34px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 38px;
  cursor: pointer;
}

.search-panel {
  width: min(760px, calc(100% - 50px));
  text-align: center;
}

.search-panel input {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #888;
  padding: 20px 4px;
  color: #fff;
  outline: none;
  background: transparent;
  font-size: 42px;
}

.search-panel p {
  color: #aaa;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 25px;
  text-align: left;
}

.search-results a {
  padding: 12px 14px;
  color: #ccc;
  border: 1px solid #333;
}

.search-results a:hover {
  color: #fff;
  border-color: var(--blue);
}

.mobile-drawer {
  position: fixed;
  z-index: 80;
  top: 0;
  right: -340px;
  width: min(340px, 88vw);
  height: 100vh;
  padding: 75px 30px 30px;
  color: #fff;
  background: #111;
  overflow: auto;
  transition: right 0.3s ease;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 20px;
  right: 25px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 30px;
}

.mobile-drawer h3 {
  margin: 25px 0 8px;
  color: #888;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-drawer a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid #2e2e2e;
}

.back-to-top {
  position: fixed;
  z-index: 28;
  right: 25px;
  bottom: 25px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1050px) {
  .brand img {
    width: 180px;
  }

  .socials {
    display: none;
  }

  .header-tools {
    gap: 14px;
  }

  .nav-link,
  .nav-trigger {
    padding: 0 9px;
    font-size: 13.5px;
  }

  .inner-nav .nav-link,
  .inner-nav .nav-trigger {
    font-size: 11px;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, var(--max));
  }

  .topbar {
    display: none;
  }

  .home-header,
  .inner-brand {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    height: 100%;
  }

  .brand img,
  .inner-brand img {
    width: 210px;
  }

  .desktop-nav,
  .inner-nav-wrap,
  .header-tools {
    display: none;
  }

  .mobile-toggle {
    width: 42px;
    height: 42px;
    border: 0;
    color: #222;
    background: transparent;
    display: grid;
    place-items: center;
    font-size: 28px;
    cursor: pointer;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    width: calc(100% - 70px);
    padding-top: 118px;
  }

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

  .hero-prev {
    left: 8px;
  }

  .hero-next {
    right: 8px;
  }

  .about-card,
  .solutions-layout,
  .service-grid,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .about {
    padding: 70px 0;
  }

  .about-image {
    height: 360px;
  }

  .about-copy,
  .service-copy {
    padding: 45px 35px;
  }

  .solutions {
    padding-top: 70px;
  }

  .solutions-copy {
    padding-right: 0;
  }

  .solution-stage {
    margin-top: 45px;
  }

  .projects {
    min-height: 500px;
    grid-template-columns: 170px 1fr;
  }

  .projects-label {
    display: none;
  }

  .testimonial {
    grid-template-columns: 185px 1fr;
  }

  .testimonial-photo img {
    width: 185px;
    height: 220px;
  }

  .partner-cards {
    grid-template-columns: 1fr;
  }

  .contact-strip .container {
    gap: 20px;
  }

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

  .footer-bar-right {
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  .inner-brand {
    padding: 0 18px;
  }

  .title-bar {
    min-height: 245px;
  }

  .title-bar h1 {
    font-size: 48px;
  }

  .service-detail {
    padding: 70px 0 90px;
  }

  .service-body {
    grid-template-columns: 1fr;
  }

  .service-image img {
    min-height: 330px;
  }

  .legacy-sections,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-dots {
    right: 28px;
  }

  .about-copy h2,
  .solutions-copy h2,
  .partners h2,
  .service-copy h2,
  .contact-info h2,
  .contact-form-wrap h2 {
    font-size: 34px;
  }

  .about-image {
    height: 270px;
  }

  .about-copy {
    padding: 35px 26px;
  }

  .solution-stage {
    min-height: 690px;
  }

  .solution-card {
    width: 100%;
  }

  .solution-card:nth-child(1) {
    top: 0;
  }

  .solution-card:nth-child(2) {
    top: 335px;
    min-height: 355px;
    padding-top: 215px;
  }

  .projects {
    display: block;
    min-height: 600px;
    padding-top: 380px;
  }

  .project-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .project-tab {
    min-height: 120px;
    padding: 15px 12px;
  }

  .testimonial {
    display: block;
    margin-bottom: 55px;
  }

  .testimonial-photo img {
    width: 100%;
    height: 300px;
  }

  .testimonial-copy {
    padding-top: 25px;
  }

  .partner-card {
    min-height: 440px;
  }

  .partner-card > img {
    height: 310px;
  }

  .partner-box {
    width: 82%;
    padding: 28px;
  }

  .contact-strip .container,
  .footer-cols,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    padding: 45px 0;
  }

  .footer-cols {
    padding: 54px 0 44px;
  }

  .title-bar h1,
  .legacy-hero h1 {
    font-size: 40px;
  }

  .service-copy {
    padding: 35px 24px;
  }

  .service-copy p {
    font-size: 15px;
  }

  .search-results {
    grid-template-columns: 1fr;
  }

  .search-panel input {
    font-size: 28px;
  }
}

/* ============================================================
   REVAMP — AI positioning sections
   ============================================================ */

.topbar-tag {
  color: #cfcfcf;
  letter-spacing: 0.02em;
}

.section-title {
  margin: 14px 0 0;
  color: #1c1c1c;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-title.light,
.section-kicker.light {
  color: #fff;
}

.section-kicker.light {
  color: #7fb2df;
}

.lede {
  max-width: 760px;
  color: #4a4a4a;
  font-size: 17px;
  line-height: 1.7;
}

/* Buttons */
.btn-solid,
.btn-ghost,
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-solid {
  color: #fff;
  background: var(--blue);
}

.btn-solid:hover {
  background: var(--blue-dark);
}

.btn-solid span {
  font-size: 18px;
  line-height: 1;
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-ghost-dark {
  color: var(--ink);
  border: 1px solid #d3d3d3;
}

.btn-ghost-dark:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.card-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-link:hover {
  color: var(--blue-dark);
}

/* Static hero */
.hero-static {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.hero-ai {
  background-color: #061334;
  background-position: center;
  background-size: cover;
}

/* Darkens the upper-left bloom just enough for white text to hold contrast. */
.hero-ai::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4, 12, 32, 0.55) 0%, rgba(5, 14, 38, 0.26) 40%, rgba(6, 18, 44, 0) 72%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 190px 0 180px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-static h1 {
  max-width: 720px;
  margin: 0 0 30px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-static p {
  max-width: 540px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.65;
}

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

.hero-actions .btn-solid,
.hero-actions .btn-ghost {
  height: auto;
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.hero-actions .btn-solid {
  color: #0b2a6b;
  background: #fff;
}

.hero-actions .btn-solid:hover {
  background: #e9f1fc;
}

.hero-actions .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: rgba(6, 17, 45, 0.35);
}

.hero-actions .btn-ghost:hover {
  background: rgba(6, 17, 45, 0.55);
}

.trust-bar {
  position: relative;
  z-index: 2;
  background: rgba(6, 13, 24, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
}

.trust-bar i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.trust-bar span:last-child {
  color: #fff;
  font-weight: 600;
}

/* Centered section header (kicker → title → lede → pill CTA) */
.section-head {
  max-width: 1130px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-head .section-kicker {
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.section-head .section-title {
  margin: 16px 0 0;
  color: #0f1720;
  font-size: clamp(31px, 3.5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.section-lede {
  max-width: 1120px;
  margin: 22px auto 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.65;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  padding: 13px 26px;
  border-radius: 8px;
  color: #fff;
  background: #1a73e8;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s ease;
}

.btn-pill:hover {
  background: #1560c4;
}

/* Service cards */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(16, 40, 80, 0.05);
  transition: 0.25s ease;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(16, 40, 80, 0.13);
}

.svc-card-media img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.svc-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 28px 30px;
}

.svc-card-body h3 {
  margin: 0 0 14px;
  color: #0f1720;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.svc-card-body p {
  flex: 1;
  margin: 0 0 22px;
  color: #5b6672;
  font-size: 15px;
  line-height: 1.7;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1a73e8;
  font-size: 15px;
  font-weight: 500;
}

.pill-link:hover {
  color: #1560c4;
}

.pill-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #1a73e8;
}

.pill-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* What We Build */
.build {
  padding: 96px 0 100px;
  background: linear-gradient(180deg, #eef6ff 0%, #f8fbff 42%, #ffffff 100%);
}

.build-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 26px;
  margin-top: 48px;
}

.build-card {
  padding: 40px 38px;
  border: 1px solid var(--line);
  background: #fff;
  transition: 0.25s ease;
}

.build-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.build-card.featured {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(150deg, var(--blue) 0%, #1d5a91 100%);
}

.build-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.build-card.featured .card-link {
  color: #fff;
}

.build-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.build-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.25;
}

.build-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Cases */
.cases-section {
  padding: 90px 0 100px;
  background: linear-gradient(180deg, #ffffff 0%, #f4faff 45%, #eaf4ff 100%);
}

.cases-portal {
  padding: 80px 0 90px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.cases-portal .cases-grid {
  margin-top: 40px;
}

.case-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(16, 40, 80, 0.05);
  transition: 0.25s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(16, 40, 80, 0.13);
}

.case-media img {
  width: 100%;
  height: 232px;
  object-fit: cover;
}

.case-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 30px 30px;
}

.case-vertical {
  color: #6b7280;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.case-body h3 {
  margin: 12px 0 12px;
  color: #0f1720;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.case-body p {
  flex: 1;
  margin: 0;
  color: #5b6672;
  font-size: 14px;
  line-height: 1.7;
}

.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.case-metrics span {
  padding: 8px 15px;
  border: 1px solid #cfe0f8;
  border-radius: 6px;
  background: #fff;
  color: #1a73e8;
  font-size: 13px;
  font-weight: 500;
}

.case-metrics span:first-child {
  border-color: #1a73e8;
  background: #1a73e8;
  color: #fff;
}

/* Honest status, shown when a case has no verified figures to publish. */
.case-metrics .status-pill,
.case-metrics .status-pill:first-child {
  border-color: #d8dee6;
  background: #f4f6f9;
  color: #5b6672;
}

.case-metrics .status-pill.demo,
.case-metrics .status-pill.demo:first-child {
  border-color: #f0dcb0;
  background: #fdf6e7;
  color: #8a6410;
}

.case-card .pill-link {
  margin-top: 20px;
}

/* Case detail */
.case-detail {
  padding: 70px 0 20px;
}

.case-detail-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.case-detail-head .case-status {
  padding: 7px 15px;
  border-radius: 6px;
  background: #6a7684;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-detail-head .case-status.live {
  background: #1f9d55;
}

.case-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}

.case-detail-main h2 {
  margin: 34px 0 12px;
  font-size: 24px;
}

.case-detail-main h2:first-child {
  margin-top: 0;
}

.case-detail-main p {
  color: #4a4a4a;
  line-height: 1.75;
}

.ticked {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ticked li {
  position: relative;
  padding: 8px 0 8px 30px;
  color: #4a4a4a;
}

.ticked li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 15px;
  width: 8px;
  height: 14px;
  border: solid var(--blue);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.case-demo-note {
  margin-top: 24px;
  padding: 14px 18px;
  background: #f4f6f9;
  color: #6a7684;
  font-size: 13px;
  font-style: italic;
}

.case-detail-aside img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.aside-card {
  padding: 28px 26px;
  background: #f7f8fa;
  border: 1px solid var(--line);
}

.aside-card h4 {
  margin: 18px 0 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.aside-card h4:first-child {
  margin-top: 0;
}

.aside-card p {
  margin: 0 0 6px;
  font-weight: 600;
}

.aside-card .btn-solid {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
}

/* Results strip */
.results {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  color: #fff;
  background: #061024;
}

/* Navy field with vertical pinstripes + a bright blue bloom from bottom-right. */
.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(120% 150% at 100% 118%, rgba(90, 150, 255, 0.85) 0%, rgba(40, 96, 220, 0.42) 22%, rgba(16, 40, 110, 0.12) 44%, transparent 62%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 8px),
    linear-gradient(115deg, #060f22 0%, #0a1836 52%, #0c1f4a 100%);
  background-color: #081328;
}

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

.results-kicker {
  color: #8aa0c4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.results-title {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.results-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 56px;
  margin: 30px 0 30px;
}

.result-stat strong {
  display: block;
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.result-stat span {
  display: block;
  margin-top: 12px;
  color: #93a6ba;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.results-note {
  max-width: 720px;
  margin: 0 0 34px;
  color: #a7bad2;
  font-size: 15px;
  line-height: 1.7;
}

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

.results-actions .btn-solid,
.results-actions .btn-ghost {
  height: auto;
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.results-actions .btn-solid {
  color: #0b2a6b;
  background: #fff;
}

.results-actions .btn-solid:hover {
  background: #e9f1fc;
}

.results-actions .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: transparent;
}

.results-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* CTA band */
.cta-band {
  padding: 70px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(16, 40, 80, 0.13);
}

.cta-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 54px;
}

.cta-kicker {
  color: #6b7280;
  font-size: 13px;
  font-weight: 400;
}

.cta-card-body h2 {
  margin: 14px 0 16px;
  color: #0f1720;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cta-card-body p {
  margin: 0;
  max-width: 460px;
  color: #5b6672;
  font-size: 16px;
  line-height: 1.7;
}

.cta-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.cta-card-actions .btn-pill {
  margin-top: 0;
}

.btn-pill-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border: 1px solid #1a73e8;
  border-radius: 8px;
  color: #1a73e8;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: 0.2s ease;
}

.btn-pill-outline:hover {
  background: #eaf2fe;
}

.cta-card-media {
  position: relative;
  min-height: 380px;
}

.cta-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Follow strip (top of footer) */
.follow-strip {
  background: #fff;
  border-top: 1px solid #eef1f5;
}

.follow-strip .container {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 0;
}

.follow-label {
  color: #4b5563;
  font-size: 15px;
}

.follow-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.follow-icon {
  display: inline-flex;
  color: #14181f;
  transition: 0.2s ease;
}

.follow-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.follow-icon:not(.disabled):hover {
  color: #1a73e8;
}

.follow-icon.disabled {
  color: #1f242c;
  cursor: default;
}

/* Vertical pages */
.vertical-intro {
  padding: 80px 0 0;
}

.vertical-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 55px;
  align-items: center;
}

.vertical-grid h2 {
  margin: 14px 0 0;
  font-size: clamp(26px, 2.8vw, 33px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.vertical-grid p {
  color: #4a4a4a;
  line-height: 1.75;
}

.vertical-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

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

.vertical-caps {
  padding: 80px 0 20px;
}

.vertical-caps h3 {
  margin: 0;
  font-size: 26px;
}

.caps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 20px;
}

.cap-card {
  padding: 32px 30px;
  border: 1px solid var(--line);
  background: #fff;
}

.cap-card h4 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--blue);
}

.cap-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Methodology */
.method-intro {
  padding: 80px 0 0;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.principle-card {
  position: relative;
  padding: 38px 36px;
  border: 1px solid var(--line);
  background: #fff;
}

.principle-num {
  color: #dfe6ee;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.principle-card h3 {
  margin: 8px 0 12px;
  font-size: 21px;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.steps-section {
  margin-top: 90px;
  padding: 80px 0;
  background: var(--navy);
  color: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  padding: 32px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-num {
  color: var(--blue);
  font-size: 34px;
  font-weight: 800;
}

.step-card h3 {
  margin: 10px 0 12px;
  font-size: 19px;
}

.step-card p {
  margin: 0;
  color: #a3b4c6;
  line-height: 1.7;
}

/* About */
.about-story {
  padding: 85px 0 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 55px;
  align-items: center;
}

.about-story-grid h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-story-grid p {
  color: #4a4a4a;
  line-height: 1.8;
}

.about-story-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.about-stats {
  margin-top: 85px;
  padding: 60px 0;
  background: #f7f8fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.about-stat strong {
  display: block;
  font-size: 38px;
  letter-spacing: -0.02em;
  color: var(--blue);
}

.about-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

/* IT & Cloud landing */
.it-landing {
  padding: 80px 0 20px;
}

.it-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}

.it-group {
  padding: 36px 34px;
  border: 1px solid var(--line);
  background: #fff;
}

.it-group h3 {
  margin: 0 0 18px;
  font-size: 19px;
  color: #1c1c1c;
}

.it-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.it-group li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: #4a4a4a;
  font-size: 14px;
  transition: 0.2s ease;
}

.it-group li a:hover {
  color: var(--blue);
  padding-left: 6px;
}

.it-group li a span {
  color: var(--blue);
}

/* ============================================================
   SPEC v2 — Services IA, FastFacts, SKU pages
   ============================================================ */

/* Header: search trigger + CTA button */
.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding: 0 26px;
  border-left: 1px solid var(--line);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 24px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.2s ease;
}

.header-cta:hover {
  background: var(--blue-dark);
}

.inner-nav-shell .header-tools {
  height: 65px;
  border-left: 0;
  padding: 0 0 0 20px;
}

.inner-nav-shell .header-cta {
  height: 40px;
  padding: 0 18px;
}

/* Fast Facts */
.fast-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 13.5px;
  color: #4a4a4a;
}

.fast-facts i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.fast-facts.dark {
  color: rgba(255, 255, 255, 0.82);
  padding: 20px 0;
}

.fast-facts.dark span:nth-child(5) {
  color: #fff;
  font-weight: 600;
}

.about-facts {
  margin-top: 80px;
  padding: 55px 0;
  background: #f7f8fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-facts h3 {
  margin: 0 0 20px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8a8a;
}

/* What We Do grid: flagship wide + 3 sub + traditional bar */
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.build-card.wide {
  grid-column: 1 / -1;
}

.trad-bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 38px;
  border: 1px solid var(--line);
  background: #f7f8fa;
  transition: 0.25s ease;
}

.trad-bar:hover {
  box-shadow: var(--shadow);
}

.trad-bar h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.trad-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.trad-bar .card-arrow {
  color: var(--blue);
  font-size: 26px;
}

/* Home mini-steps strip */
.home-steps {
  padding: 92px 0 100px;
  background: linear-gradient(180deg, #eaf3ff 0%, #f4faff 45%, #ffffff 100%);
}

.steps-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-tile {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 30px 28px;
  border: 1px solid #e2ebf5;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 2px 12px rgba(16, 40, 80, 0.05);
  transition: 0.25s ease;
}

.step-tile:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 16px 36px rgba(16, 40, 80, 0.12);
}

.step-tile-label {
  color: #6b7280;
  font-size: 13px;
  font-weight: 400;
}

.step-tile h3 {
  margin: 16px 0 14px;
  color: #0f1720;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.step-tile p {
  margin: 0;
  color: #5b6672;
  font-size: 14px;
  line-height: 1.7;
}

/* Cases footnote */
.cases-disclaim {
  margin-top: 34px;
  color: #9a9a9a;
  font-size: 12.5px;
  font-style: italic;
}

/* Service-line pages */
.svc-hero {
  padding: 70px 0 10px;
}

.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.svc-sub {
  margin: 0;
  color: #333;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
}

.svc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.svc-section {
  padding: 55px 0 5px;
}

.svc-section h2 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.01em;
}

.svc-para {
  max-width: 820px;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.75;
}

.note-line {
  max-width: 820px;
  margin: 0;
  padding: 22px 28px;
  border-left: 3px solid var(--blue);
  background: #f2f7fb;
  color: #23425e;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

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

.cap-num {
  display: block;
  margin-bottom: 10px;
  color: #d4dde6;
  font-size: 26px;
  font-weight: 800;
}

.cap-card a {
  color: var(--blue);
  font-weight: 600;
}

/* Methodology 6-card grid */
.principle-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

/* IT & Cloud evolved markers */
.evolved {
  color: #8a8a8a;
  font-size: 12px;
  font-style: normal;
}

.evolved b {
  color: var(--blue);
  font-weight: 700;
}

.it-evolved-note {
  margin-top: 30px;
  color: #6a7684;
  font-size: 14px;
}

.it-evolved-note a {
  color: var(--blue);
  font-weight: 700;
}

/* Contact select */
.field select {
  width: 100%;
  border: 1px solid #ddd;
  padding: 14px 16px;
  outline: none;
  background: #fafafa;
  transition: 0.2s ease;
}

.field select:focus {
  border-color: var(--blue);
  background: #fff;
}

@media (max-width: 1050px) {
  .principle-grid.three,
  .caps-grid.three {
    grid-template-columns: repeat(2, 1fr);
  }

  .wwd-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .svc-hero-grid {
    grid-template-columns: 1fr;
  }

  .svc-hero-actions {
    justify-content: flex-start;
  }

  .principle-grid.three,
  .caps-grid.three {
    grid-template-columns: 1fr;
  }

  .mini-arrow {
    display: none;
  }

  .trad-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Footer social */
.footer-social {
  margin-bottom: 26px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #9aa0a6;
  font-size: 13px;
  font-weight: 700;
}

.footer-social a:hover {
  color: #fff;
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* ---------- Revamp responsive ---------- */
@media (max-width: 1050px) {
  .build-grid {
    grid-template-columns: 1fr;
  }

  .svc-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .svc-card-media img {
    height: 240px;
  }

  .steps-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-tile {
    min-height: 0;
  }

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

@media (max-width: 820px) {
  .inner-nav-wrap {
    display: none;
  }

  .hero-inner {
    padding: 90px 0 110px;
  }

  .cases-grid,
  .caps-grid,
  .principle-grid,
  .vertical-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .case-detail-grid {
    grid-template-columns: 1fr;
  }

  .it-groups {
    grid-template-columns: 1fr;
  }

  .about-stats .container {
    grid-template-columns: 1fr 1fr;
  }

  .results-stats {
    gap: 40px;
  }

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

  .cta-card-media {
    grid-row: 1;
    min-height: 260px;
  }

  .cta-card-body {
    padding: 40px 34px;
  }

  .vertical-image img,
  .about-story-image img {
    height: 300px;
  }
}

@media (max-width: 560px) {
  .steps-grid,
  .steps-cards {
    grid-template-columns: 1fr;
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

  .result-stat strong {
    font-size: 44px;
  }

  .about-stats .container {
    grid-template-columns: 1fr 1fr;
  }

  .hero-static h1 {
    font-size: 36px;
  }

  .build-card,
  .cap-card,
  .principle-card,
  .it-group {
    padding: 30px 26px;
  }
}
