:root {
  --navy: #0b1f3a;
  --navy-2: #102f54;
  --gold: #d4af37;
  --orange: #ff6b00;
  --blue: #1f6feb;
  --ink: #111111;
  --muted: #5c6675;
  --line: #dce4ef;
  --soft: #f8fafc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(11, 31, 58, 0.11);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header {
  position: relative;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 239, 0.88);
  backdrop-filter: blur(14px);
}

.section-nav {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.16);
}

/* Sticky sub-nav for sub-pages only (not homepage) */
body:not(.home-page) .section-nav {
  position: sticky;
  top: 90px;
  z-index: 999;
  background: rgba(11, 31, 58, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 12px 30px rgba(11, 31, 58, 0.16);
}

.section-nav .container {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.section-nav .container::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
  font-size: 0.84rem;
}

.section-nav a:hover {
  background: var(--blue);
  color: var(--white);
}

.flag-section-nav a {
  min-width: 58px;
  justify-content: center;
  padding: 7px 16px;
}

.flag-section-nav img {
  width: 34px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand img {
  width: 158px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  font-size: 1.35rem;
  cursor: pointer;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 6px;
  color: #27384d;
  font-weight: 650;
  font-size: 0.94rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
  background: #eef4fb;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
  font-size: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(11, 31, 58, 0.18);
}

.btn.gold {
  background: var(--gold);
  color: var(--navy);
}

.btn.light {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn.outline {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 60vh;
  height: auto;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.98) 0%, rgba(11, 31, 58, 0.9) 42%, rgba(11, 31, 58, 0.38) 72%, rgba(11, 31, 58, 0.18) 100%),
    url("../images/global-technology-hero.png") center / cover no-repeat;
  background-position: center top;
  background-size: cover;
}

.hero .container {
  min-height: 60vh;
  display: grid;
  align-items: center;
  padding: 48px 0;
}

.hero-content {
  max-width: 710px;
  animation: rise 720ms ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold);
}

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

h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.04;
  margin-bottom: 22px;
  letter-spacing: 0;
}

h2 {
  color: var(--orange);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

h3 {
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.lead {
  color: #dbe7f5;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  max-width: 780px;
}

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

.banner-slider {
  width: min(100%, 760px);
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.page-hero .banner-slider {
  width: min(100%, 900px);
  margin-top: 34px;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: slideLeft 24s linear infinite;
}

.metric {
  min-width: 190px;
  border-left: 3px solid var(--gold);
  background: transparent;
  padding: 16px 20px;
}

.metric strong {
  display: block;
  color: var(--white);
  font-size: 1.34rem;
}

.metric span {
  color: #d7e2ef;
  font-size: 0.9rem;
}

.banner-slider:hover .slider-track {
  animation-play-state: paused;
}

.section {
  padding: 88px 0;
}

.section.soft {
  background: var(--white);
}

.section.dark {
  background: var(--navy);
  color: var(--white);
}

.section.dark h3 {
  color: var(--white);
}

.section.dark h2 {
  color: var(--orange);
}

.section.dark .section-intro p,
.section.dark p {
  color: #d8e3ef;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 40px;
}

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

.section-intro p,
.body-copy p,
.card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: start;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.trust-list,
.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li,
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #24354a;
  font-weight: 650;
}

.trust-list li::before,
.check-list li::before {
  content: "\2713";
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  color: var(--navy);
  font-weight: 900;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 111, 235, 0.35);
  box-shadow: var(--shadow);
}

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

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(11, 31, 58, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: var(--shadow);
}

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

.service-tile {
  position: relative;
  min-height: 142px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.07);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(120deg, var(--orange), var(--gold), var(--orange));
  background-size: 240% 240%;
  opacity: 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0.28);
  transform-origin: center;
  transition: transform 220ms ease;
}

.service-tile:hover,
.service-tile:focus-visible {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 22px 48px rgba(255, 107, 0, 0.14), 0 18px 40px rgba(11, 31, 58, 0.1);
  outline: none;
}

.service-tile:hover::before,
.service-tile:focus-visible::before {
  opacity: 1;
  animation: borderFlow 1.8s linear infinite;
}

.service-tile:hover::after,
.service-tile:focus-visible::after {
  transform: scaleX(1);
}

.service-tile h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.04rem;
  transition: opacity 180ms ease, transform 220ms ease;
}

.service-tile p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-tile:hover h3,
.service-tile:focus-visible h3 {
  opacity: 0;
  transform: translateY(-14px);
}

.service-tile:hover p,
.service-tile:focus-visible p {
  opacity: 1;
  transform: translateY(0);
}

.premium-service-tiles {
  gap: 22px;
}

.premium-service-tiles .service-tile {
  min-height: 318px;
  align-content: start;
  padding: 18px;
  gap: 16px;
  border-color: rgba(255, 107, 0, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 1)),
    var(--white);
}

.premium-service-tiles .service-tile h3 {
  font-size: 1.08rem;
}

.premium-service-tiles .service-tile p {
  position: static;
  opacity: 1;
  transform: none;
  color: var(--muted);
}

.premium-service-tiles .service-tile:hover h3,
.premium-service-tiles .service-tile:focus-visible h3 {
  opacity: 1;
  transform: none;
}

.premium-service-tiles .service-tile:hover .service-figure,
.premium-service-tiles .service-tile:focus-visible .service-figure,
.premium-service-grid article:hover .service-figure {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(255, 107, 0, 0.18);
}

.service-figure {
  position: relative;
  height: 118px;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.45), transparent 18%),
    linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 16px 34px rgba(11, 31, 58, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-figure::before,
.service-figure::after,
.service-figure i {
  content: "";
  position: absolute;
  display: block;
}

.service-figure::before {
  inset: 18px 22px 30px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
}

.service-figure::after {
  left: 28px;
  right: 28px;
  bottom: 18px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 -18px 0 rgba(255, 255, 255, 0.22);
}

.service-figure i {
  width: 46px;
  height: 46px;
  right: 24px;
  top: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: -60px 22px 0 -10px rgba(255, 255, 255, 0.72);
  animation: servicePulse 3.6s ease-in-out infinite;
}

.service-web { background: linear-gradient(135deg, #0b1f3a, #1f6feb); }
.service-erp { background: linear-gradient(135deg, #071829, #ff6b00); }
.service-profile-art { background: linear-gradient(135deg, #102f54, #d4af37); }
.service-email-art { background: linear-gradient(135deg, #0b1f3a, #38bdf8); }
.service-seo-art { background: linear-gradient(135deg, #0b1f3a, #22c55e); }
.service-ecommerce { background: linear-gradient(135deg, #102f54, #ff6b00); }
.service-cloud { background: linear-gradient(135deg, #0b1f3a, #60a5fa); }
.service-mobile { background: linear-gradient(135deg, #111827, #8b5cf6); }
.service-branding { background: linear-gradient(135deg, #0b1f3a, #f97316); }
.service-social { background: linear-gradient(135deg, #102f54, #06b6d4); }
.service-graphics { background: linear-gradient(135deg, #111827, #ec4899); }
.service-print { background: linear-gradient(135deg, #0b1f3a, #d4af37); }

.service-card-grid {
  counter-reset: serviceCards;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card-grid article {
  counter-increment: serviceCards;
  scroll-margin-top: 128px;
  position: relative;
  min-height: 220px;
  padding: 76px 26px 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 0, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 107, 0, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 107, 0, 0.065), rgba(255, 255, 255, 0) 52%),
    var(--white);
  box-shadow: 0 16px 38px rgba(11, 31, 58, 0.075);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card-grid article > * {
  position: relative;
  z-index: 1;
}

.service-card-grid article::before {
  content: counter(serviceCards, decimal-leading-zero);
  position: absolute;
  left: 26px;
  top: 24px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(11, 31, 58, 0.18);
}

.service-card-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-card-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 26px 58px rgba(255, 107, 0, 0.15), 0 16px 38px rgba(11, 31, 58, 0.09);
}

.service-card-grid article:hover::after {
  transform: scaleX(1);
}

.service-card-grid h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.3;
}

.service-card-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.premium-service-grid {
  gap: 24px;
}

.premium-service-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 520px;
  padding: 18px 18px 24px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(255, 107, 0, 0.72), rgba(212, 175, 55, 0.32), rgba(31, 111, 235, 0.32)) border-box;
  box-shadow: 0 22px 52px rgba(11, 31, 58, 0.09);
}

.premium-service-grid article::before {
  content: "";
  position: absolute;
  inset: -80px -70px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.18), transparent 64%);
  opacity: 0.75;
  transition: transform 240ms ease, opacity 240ms ease;
}

.premium-service-grid article::after {
  height: 5px;
  transform: scaleX(0.18);
}

.premium-service-grid article:hover::before {
  transform: scale(1.18);
  opacity: 1;
}

.premium-service-grid .service-figure {
  height: 148px;
}

.service-tag {
  position: relative;
  z-index: 1;
  justify-self: start;
  margin: 0 8px -4px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.premium-service-grid article:hover .service-tag {
  background: var(--orange);
  color: var(--white);
}

.premium-service-grid h3,
.premium-service-grid p {
  padding: 0 8px;
}

.premium-service-grid h3 {
  margin: 2px 0 0;
  font-size: 1.2rem;
}

.premium-service-grid ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  padding: 16px;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.86), rgba(255, 255, 255, 0.96));
}

.premium-service-grid li {
  position: relative;
  padding-left: 24px;
  color: #35465c;
  font-size: 0.91rem;
  font-weight: 650;
}

.premium-service-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.1);
}

.service-standard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.service-standard-grid article {
  position: relative;
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(11, 31, 58, 0.14);
}

.service-standard-grid article::after {
  content: "";
  position: absolute;
  inset: auto -30px -58px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.24);
}

.service-standard-grid strong {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.service-standard-grid h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.service-standard-grid p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.service-visual {
  position: relative;
  height: 150px;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.95), rgba(31, 111, 235, 0.68));
  overflow: hidden;
}

.service-visual::before,
.service-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.service-visual::before {
  inset: 24px 34px 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.service-visual::after {
  right: 28px;
  bottom: 22px;
  width: 118px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
}

.service-body {
  position: relative;
  padding: 26px;
}

.service-body .icon {
  margin-top: -52px;
  margin-bottom: 18px;
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 12px 24px rgba(11, 31, 58, 0.12);
}

.service-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 850;
}

.service-body a::after {
  content: ">";
  color: var(--gold);
}

.service-profile .service-visual {
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(212, 175, 55, 0.68));
}

.service-email .service-visual {
  background: linear-gradient(135deg, rgba(16, 47, 84, 0.96), rgba(66, 153, 225, 0.7));
}

.service-seo .service-visual {
  background: linear-gradient(135deg, rgba(7, 22, 41, 0.96), rgba(34, 197, 94, 0.48));
}

.service-linkedin .service-visual {
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(31, 111, 235, 0.78));
}

.service-brand .service-visual {
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(236, 146, 44, 0.62));
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(31, 111, 235, 0.12));
  font-weight: 900;
}

.country-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.country-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11, 31, 58, 0.1);
}

.flag {
  position: relative;
  width: 52px;
  height: 34px;
  border-radius: 5px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  flex: 0 0 52px;
}

.flag::before,
.flag::after {
  content: "";
  position: absolute;
}

.flag-sa {
  background: #006c35;
}

.flag-sa::before {
  left: 12px;
  right: 12px;
  top: 15px;
  height: 3px;
  background: #fff;
}

.flag-ae {
  background: linear-gradient(#009739 0 33.33%, #fff 33.33% 66.66%, #000 66.66% 100%);
}

.flag-ae::before {
  inset: 0 auto 0 0;
  width: 15px;
  background: #ef3340;
}

.flag-qa {
  background: linear-gradient(90deg, #fff 0 28%, #8a1538 28% 100%);
}

.flag-qa::before {
  left: 12px;
  top: 0;
  width: 18px;
  height: 100%;
  background: repeating-linear-gradient(135deg, transparent 0 6px, #fff 6px 12px);
}

.flag-kw {
  background: linear-gradient(#007a3d 0 33.33%, #fff 33.33% 66.66%, #ce1126 66.66% 100%);
}

.flag-kw::before {
  left: 0;
  top: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 20px solid #000;
}

.flag-bh {
  background: linear-gradient(90deg, #fff 0 30%, #ce1126 30% 100%);
}

.flag-bh::before {
  left: 10px;
  top: 0;
  width: 18px;
  height: 100%;
  background: repeating-linear-gradient(135deg, transparent 0 6px, #fff 6px 12px);
}

.flag-om {
  background: linear-gradient(#fff 0 33.33%, #db161b 33.33% 66.66%, #008000 66.66% 100%);
}

.flag-om::before {
  inset: 0 auto 0 0;
  width: 15px;
  background: #db161b;
}

.flag-gb {
  background: linear-gradient(135deg, #012169 0 42%, #fff 42% 48%, #c8102e 48% 52%, #fff 52% 58%, #012169 58% 100%);
}

.flag-us {
  background: repeating-linear-gradient(#b22234 0 4px, #fff 4px 8px);
}

.flag-us::before {
  inset: 0 auto auto 0;
  width: 23px;
  height: 18px;
  background: #3c3b6e;
}

.flag-ca {
  background: linear-gradient(90deg, #d52b1e 0 25%, #fff 25% 75%, #d52b1e 75% 100%);
}

.flag-ca::before {
  left: 23px;
  top: 9px;
  width: 7px;
  height: 13px;
  background: #d52b1e;
  transform: rotate(45deg);
}

.flag-pk {
  background: linear-gradient(90deg, #fff 0 22%, #01411c 22% 100%);
}

.flag-pk::before {
  left: 26px;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: -4px 0 0 1px #fff;
}

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

.choose-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff, #ffffff),
    var(--white);
  color: var(--ink);
}

.choose-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 107, 0, 0.08), transparent 38%),
    repeating-linear-gradient(135deg, transparent 0 34px, rgba(11, 31, 58, 0.035) 34px 35px);
  pointer-events: none;
}

.choose-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.choose-copy p {
  color: var(--muted);
  max-width: 540px;
}

.choose-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.choose-stats span {
  padding: 18px;
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(11, 31, 58, 0.07);
}

.choose-stats strong {
  display: block;
  color: var(--orange);
  font-size: 1.3rem;
}

.choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  min-height: 92px;
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.choice:hover {
  transform: translateX(6px);
  border-color: var(--orange);
  box-shadow: 0 22px 44px rgba(255, 107, 0, 0.14);
}

.choice span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold);
  font-weight: 900;
  font-size: 0.78rem;
}

.choice strong {
  color: var(--navy);
  display: block;
  line-height: 1.28;
}

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

.industry-grid span,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 18px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.06), transparent 52%),
    var(--white);
  color: #23364d;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.industry-grid span {
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.07);
}

.industry-grid span:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.48);
  box-shadow: 0 20px 44px rgba(255, 107, 0, 0.11), 0 14px 34px rgba(11, 31, 58, 0.08);
}

.industry-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
  font-style: normal;
  font-size: 1.05rem;
  flex: 0 0 42px;
}

.industry-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.industry-premium {
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 0, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.055), rgba(255, 255, 255, 0) 46%),
    var(--white);
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.industry-premium::before {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  right: -34px;
  top: -34px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.08);
}

.industry-premium::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 180ms ease;
}

.industry-premium:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.48);
  box-shadow: 0 22px 48px rgba(255, 107, 0, 0.12), 0 14px 34px rgba(11, 31, 58, 0.08);
}

.industry-premium:hover::after {
  transform: scaleX(1);
}

.industry-premium span {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
  font-size: 1.18rem;
  box-shadow: inset 0 0 0 1px rgba(255, 107, 0, 0.12);
}

.industry-premium h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: var(--navy);
}

.industry-premium p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.tag {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
}

.work-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.work-step {
  position: relative;
  min-height: 210px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.work-step::before {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.08);
}

.work-step:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 24px 52px rgba(255, 107, 0, 0.12), 0 18px 40px rgba(11, 31, 58, 0.1);
}

.work-step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange);
  font-weight: 900;
}

.work-step p {
  color: var(--muted);
  margin: 0;
}

.visual-panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-panel img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.visual-panel .trust-list {
  padding: 28px;
}

.visual-band {
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.04), transparent 45%),
    var(--white);
}

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

.vision-card {
  min-height: 360px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 36px;
  border: 1px solid rgba(31, 111, 235, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(11, 31, 58, 0.08);
}

.vision-art {
  position: relative;
  width: 118px;
  height: 88px;
  margin-bottom: 22px;
}

.vision-img {
  width: 150px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 12px 20px rgba(11, 31, 58, 0.12));
}

.target-art::before {
  content: "";
  position: absolute;
  inset: 8px 20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange) 0 10%, #fff 10% 22%, var(--blue) 22% 36%, #fff 36% 48%, var(--navy) 48% 62%, transparent 62%);
}

.target-art::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 36px;
  width: 64px;
  height: 8px;
  background: var(--blue);
  transform: skewX(-28deg);
}

.mission-art {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.22), transparent 42%),
    conic-gradient(from 0deg, var(--orange), var(--gold), #22c55e, var(--blue), var(--orange));
}

.mission-art::after {
  content: "MISSION";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 900;
  font-size: 0.9rem;
}

.market-art {
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.18), rgba(31, 111, 235, 0.18)),
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(11, 31, 58, 0.1) 20px 21px);
}

.market-art::after {
  content: "";
  position: absolute;
  inset: 24px 16px;
  border-radius: 999px;
  border: 3px solid var(--orange);
}

.value-chart {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.1), transparent 24%),
    conic-gradient(from 0deg, rgba(255, 107, 0, 0.06), rgba(31, 111, 235, 0.08), rgba(212, 175, 55, 0.08), rgba(34, 197, 94, 0.07), rgba(255, 107, 0, 0.06)),
    var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.value-chart::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(255, 107, 0, 0.34);
  border-radius: 50%;
  animation: slowSpin 24s linear infinite;
}

.value-chart::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(31, 111, 235, 0.12);
  border-radius: 50%;
}

.value-center,
.value-chart span {
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.1);
}

.value-center {
  width: 170px;
  height: 170px;
  position: relative;
  z-index: 2;
  background: var(--navy);
  color: var(--white);
}

.value-chart span {
  position: absolute;
  width: 150px;
  height: 58px;
  z-index: 3;
  color: var(--navy);
  background: var(--white);
  border: 2px solid currentColor;
  animation: floatValue 4s ease-in-out infinite;
}

.value-chart .v1 { top: 44px; left: 14%; color: #1f6feb; }
.value-chart .v2 { top: 44px; right: 14%; color: #ff6b00; }
.value-chart .v3 { top: 186px; left: 6%; color: #22c55e; }
.value-chart .v4 { top: 186px; right: 6%; color: #d4af37; }
.value-chart .v5 { bottom: 44px; left: 18%; color: #8b5cf6; }
.value-chart .v6 { bottom: 44px; right: 18%; color: #ef4444; }

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

.value-modern {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 107, 0, 0.2);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(11, 31, 58, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.value-modern::before {
  content: "";
  position: absolute;
  inset: -80px -60px auto auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: color-mix(in srgb, currentColor 16%, transparent);
  animation: valuePulse 4s ease-in-out infinite;
}

.value-modern:hover {
  transform: translateY(-8px);
  border-color: currentColor;
  box-shadow: 0 26px 58px rgba(255, 107, 0, 0.12), 0 18px 44px rgba(11, 31, 58, 0.1);
}

.value-modern span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 16px;
  background: color-mix(in srgb, currentColor 14%, white);
}

.value-modern span::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 18px 12px 0 color-mix(in srgb, currentColor 28%, transparent);
}

.value-modern h3 {
  font-size: 1.28rem;
}

.value-modern p {
  color: var(--muted);
  margin: 0;
}

.value-modern.professional { color: #1f6feb; }
.value-modern.transparent { color: #ff6b00; }
.value-modern.innovation { color: #22c55e; }
.value-modern.reliability { color: #d4af37; }
.value-modern.quality { color: #8b5cf6; }
.value-modern.success { color: #ef4444; }

.process-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.process-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.12);
  color: var(--orange);
  font-weight: 900;
}

.flag-cloud,
.footer-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flag-cloud span,
.footer-flags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
  font-size: 0.86rem;
}

.flag-cloud .flag,
.footer-flags .flag {
  width: 26px;
  height: 18px;
  border-radius: 3px;
  flex: 0 0 26px;
}

.country-flag-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.round-flag,
.flag-cloud span,
.footer-flags span {
  width: 58px;
  height: 58px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 0, 0.18);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.09);
  overflow: hidden;
}

.round-flag img,
.flag-cloud img,
.footer-flags img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flag-only {
  gap: 12px;
}

.portfolio-card {
  padding: 0;
}

.portfolio-visual {
  height: 160px;
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.94), rgba(31, 111, 235, 0.64)),
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(255, 255, 255, 0.12) 26px 27px);
}

.portfolio-card:nth-child(even) .portfolio-visual {
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.95), rgba(212, 175, 55, 0.62)),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(255, 255, 255, 0.13) 22px 23px);
}

.portfolio-body {
  padding: 24px;
}

.cta {
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(11, 31, 58, 0.86)),
    url("../images/global-technology-hero.png") center / cover;
  color: var(--white);
}

.cta p {
  color: var(--white);
}

.cta h2 {
  color: var(--orange);
}

.page-hero {
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.97), rgba(11, 31, 58, 0.86)),
    url("../images/global-technology-hero.png") center / cover no-repeat;
  color: var(--white);
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.97), rgba(255, 107, 0, 0.45)),
    url("../images/global-technology-hero.png") center / cover no-repeat;
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.98), rgba(31, 111, 235, 0.48)),
    url("../images/global-technology-hero.png") center / cover no-repeat;
}

.portfolio-hero {
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.96), rgba(212, 175, 55, 0.4)),
    url("../images/global-technology-hero.png") center / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.97), rgba(255, 107, 0, 0.32)),
    url("../images/global-technology-hero.png") center / cover no-repeat;
}

.clients-hero {
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.98), rgba(255, 107, 0, 0.34)),
    url("../images/global-technology-hero.png") center / cover no-repeat;
}

.page-hero h1 {
  max-width: 760px;
}

.page-hero p {
  max-width: 680px;
  color: #dce8f5;
  font-size: 1.18rem;
}

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

.value {
  padding: 18px;
  min-height: 88px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  color: var(--navy);
  background: var(--white);
}

.service-detail {
  scroll-margin-top: 118px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(255, 107, 0, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(11, 31, 58, 0.07);
  position: relative;
  overflow: hidden;
}

.service-detail::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(var(--orange), var(--gold));
}

.service-copy {
  position: relative;
  min-height: 210px;
  padding: 26px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.08), rgba(31, 111, 235, 0.08)),
    var(--white);
}

.service-detail + .service-detail {
  margin-top: 22px;
}

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

.detail-columns h4 {
  color: var(--navy);
  margin: 0 0 8px;
}

.mini-list {
  padding: 0;
  margin: 0;
  color: var(--muted);
  list-style: none;
  display: grid;
  gap: 9px;
}

.mini-list li {
  position: relative;
  padding-left: 26px;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
}

.client-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.client-stats article {
  padding: 24px;
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(11, 31, 58, 0.13);
}

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

.client-stats strong {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 1.18rem;
}

.client-country {
  scroll-margin-top: 118px;
  padding: 28px;
  margin-top: 24px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 0, 0.16), transparent 32%),
    linear-gradient(135deg, #071829, #0b1f3a);
  box-shadow: 0 22px 52px rgba(11, 31, 58, 0.18);
}

.client-country-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
}

.client-country-head span {
  width: 82px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.client-country-head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.client-country-head h2 {
  margin: 0;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.client-logo-grid article {
  position: relative;
  min-height: 142px;
  aspect-ratio: 2.05 / 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  animation: logoFloat 5.5s ease-in-out infinite;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.client-logo-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.72) 48%, transparent 58%, transparent 100%);
  transform: translateX(-120%);
  pointer-events: none;
  z-index: 2;
}

.client-logo-grid article::after {
  content: none;
}

.client-logo-grid article:nth-child(2n) {
  animation-delay: -1.2s;
}

.client-logo-grid article:nth-child(3n) {
  animation-delay: -2.4s;
}

.client-logo-grid article:hover {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(255, 107, 0, 0.42);
  box-shadow: 0 24px 54px rgba(255, 107, 0, 0.13), 0 18px 42px rgba(11, 31, 58, 0.1);
}

.client-logo-grid article:hover::before {
  animation: logoShine 850ms ease;
}

.client-logo-link {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.client-logo-grid .linked-logo {
  cursor: pointer;
}

.client-logo-grid img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 112px;
  object-fit: contain;
  border-radius: 0;
  image-rendering: auto;
  filter: saturate(1.08) contrast(1.05);
  transition: transform 220ms ease, filter 220ms ease;
}

.client-logo-grid article:hover img {
  transform: scale(1.045);
  filter: saturate(1.14) contrast(1.08);
}

.client-logo-grid strong,
.client-logo-grid span {
  position: relative;
  z-index: 1;
  display: block;
}

.client-logo-grid strong {
  color: var(--navy);
  font-size: 1.08rem;
  text-transform: uppercase;
}

.client-logo-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.national-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.national-grid article {
  min-height: 96px;
  aspect-ratio: 1.55 / 1;
  padding: 10px;
}

/* Fresh service and real-client presentation */
.premium-service-tiles .service-tile,
.premium-service-grid article {
  border-color: rgba(21, 128, 121, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 251, 0.98)) padding-box,
    linear-gradient(135deg, rgba(20, 184, 166, 0.55), rgba(31, 111, 235, 0.32), rgba(244, 114, 182, 0.25)) border-box;
}

.premium-service-grid article::before {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.2), transparent 66%);
}

.premium-service-grid article:hover {
  border-color: rgba(20, 184, 166, 0.48);
  box-shadow: 0 28px 60px rgba(15, 118, 110, 0.14), 0 18px 40px rgba(11, 31, 58, 0.09);
}

.service-figure {
  height: 112px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.55), transparent 14%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(135deg, #0f766e, #2563eb);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 18px 36px rgba(15, 118, 110, 0.14);
}

.service-figure::before {
  content: "ERP";
  inset: auto;
  left: 22px;
  top: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.service-figure::after {
  left: auto;
  right: 22px;
  bottom: 24px;
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 -18px 0 rgba(255, 255, 255, 0.34), 0 -36px 0 rgba(255, 255, 255, 0.18);
}

.service-figure i {
  width: 22px;
  height: 22px;
  right: 96px;
  top: 30px;
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: transparent;
  box-shadow: 34px 40px 0 -2px rgba(255, 255, 255, 0.75);
  animation: none;
}

.service-web { background: linear-gradient(135deg, #0f766e, #2563eb); }
.service-web::before { content: "WEB"; }
.service-erp { background: linear-gradient(135deg, #134e4a, #14b8a6); }
.service-erp::before { content: "ERP"; }
.service-profile-art { background: linear-gradient(135deg, #1e3a8a, #7c3aed); }
.service-profile-art::before { content: "PDF"; }
.service-email-art { background: linear-gradient(135deg, #075985, #06b6d4); }
.service-email-art::before { content: "MAIL"; font-size: 0.76rem; }
.service-seo-art { background: linear-gradient(135deg, #166534, #22c55e); }
.service-seo-art::before { content: "SEO"; }
.service-ecommerce { background: linear-gradient(135deg, #9f1239, #f97316); }
.service-ecommerce::before { content: "SHOP"; font-size: 0.76rem; }
.service-cloud { background: linear-gradient(135deg, #155e75, #60a5fa); }
.service-cloud::before { content: "CLOUD"; font-size: 0.66rem; }
.service-mobile { background: linear-gradient(135deg, #312e81, #a855f7); }
.service-mobile::before { content: "APP"; }
.service-branding { background: linear-gradient(135deg, #be123c, #f472b6); }
.service-branding::before { content: "BRAND"; font-size: 0.66rem; }
.service-social { background: linear-gradient(135deg, #0e7490, #38bdf8); }
.service-social::before { content: "SOC"; }
.service-graphics { background: linear-gradient(135deg, #6d28d9, #ec4899); }
.service-graphics::before { content: "ART"; }
.service-print { background: linear-gradient(135deg, #334155, #f59e0b); }
.service-print::before { content: "PRINT"; font-size: 0.68rem; }

.service-tag {
  background: rgba(20, 184, 166, 0.1);
  color: #0f766e;
}

.premium-service-grid article:hover .service-tag {
  background: #0f766e;
}

.real-client-section {
  border: 1px solid rgba(20, 184, 166, 0.22);
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.14), transparent 32%),
    linear-gradient(135deg, #071829, #102a43 58%, #12323f);
}

.real-client-section .client-country-head {
  justify-content: flex-start;
}

.real-client-section .client-country-head span {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #9ff7eb;
  font-size: 0.92rem;
  font-weight: 900;
}

.real-client-section .client-country-head h2 {
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.real-logo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.client-logo-card {
  position: relative;
  min-height: 178px;
  display: grid;
  grid-template-rows: 72px auto auto auto;
  align-items: center;
  gap: 9px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 250, 0.98));
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.13);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.client-logo-card::before {
  content: attr(data-initials);
  position: absolute;
  inset: 22px auto auto 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f766e, #2563eb);
  color: #fff;
  font-weight: 900;
  opacity: 0;
}

.client-logo-card:hover,
.client-logo-card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(20, 184, 166, 0.55);
  box-shadow: 0 26px 56px rgba(20, 184, 166, 0.18), 0 18px 42px rgba(11, 31, 58, 0.12);
}

.client-logo-card img {
  width: 100%;
  max-width: 180px;
  max-height: 66px;
  object-fit: contain;
  justify-self: start;
  filter: saturate(1.02) contrast(1.02);
}

.client-logo-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.03rem;
  line-height: 1.25;
  text-transform: none;
}

.client-logo-card span {
  margin: 0;
  color: #5f6d7a;
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0;
}

.client-logo-card em {
  align-self: end;
  justify-self: start;
  color: #0f766e;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
}

.logo-ticker-section {
  padding: 34px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}

.logo-ticker-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.logo-ticker-heading span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-ticker-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.logo-ticker {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  animation: logoTickerLeft 70s linear infinite;
  will-change: transform;
}

.logo-ticker:hover .logo-ticker-track {
  animation-play-state: paused;
}

.logo-ticker a {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 178px;
  height: 104px;
  padding: 16px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.logo-ticker a:hover,
.logo-ticker a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.28);
  box-shadow: 0 18px 42px rgba(11, 31, 58, 0.12);
}

.logo-ticker img {
  display: block;
  max-width: 138px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.04);
}

.international-client-groups {
  display: grid;
  gap: 28px;
}

.international-client-group h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.05rem;
}

.international-client-group h3 img {
  width: 34px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
}

.compact-client-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-client-grid article {
  min-height: 116px;
  aspect-ratio: 2.2 / 1;
  padding: 12px;
}

.compact-client-grid img {
  max-height: 96px;
}

@keyframes logoTickerLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Clean client logo wall */
.client-country.real-client-section {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 22px 0 14px;
}

.real-client-section .client-country-head {
  margin-bottom: 20px;
}

.real-client-section .client-country-head span {
  width: auto;
  height: auto;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--gold);
  font-size: 0.88rem;
}

.real-client-section .client-country-head h2,
.international-client-group h3 {
  color: var(--navy);
}

.client-logo-grid.real-logo-grid,
.compact-client-grid {
  gap: 20px;
}

.client-logo-card,
.compact-client-grid article {
  min-height: 126px;
  display: grid;
  place-items: center;
  grid-template-rows: 1fr;
  padding: 18px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(11, 31, 58, 0.08);
  animation: clientLogoFloat 5.8s ease-in-out infinite;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.client-logo-card::before,
.compact-client-grid article::before {
  content: none;
}

.client-logo-card:hover,
.client-logo-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 24px 48px rgba(11, 31, 58, 0.12);
  animation-play-state: paused;
}

.compact-client-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 24px 48px rgba(11, 31, 58, 0.12);
  animation-play-state: paused;
}

.compact-client-grid article:hover::before {
  animation: none;
}

.client-logo-card strong,
.client-logo-card span,
.client-logo-card em {
  display: none;
}

.client-logo-card img,
.compact-client-grid img {
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 76px;
  object-fit: contain;
  border-radius: 0;
}

.compact-client-grid article {
  aspect-ratio: auto;
}

.client-logo-card:nth-child(2n),
.compact-client-grid article:nth-child(2n) {
  animation-delay: -1.4s;
}

.client-logo-card:nth-child(3n),
.compact-client-grid article:nth-child(3n) {
  animation-delay: -2.8s;
}

@keyframes clientLogoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Homepage video hero and interactive cards */
.hero-video,
.hero-video-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 18, 34, 0.94) 0%, rgba(7, 24, 44, 0.84) 44%, rgba(7, 24, 44, 0.42) 74%, rgba(7, 24, 44, 0.22) 100%),
    radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.2), transparent 26%);
}

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

.hero-content .lead {
  max-width: 620px;
}

.premium-service-tiles {
  align-items: stretch;
}

.premium-service-tiles .service-tile {
  min-height: 306px;
  align-content: start;
  padding: 20px 18px 22px;
  overflow: hidden;
}

.premium-service-tiles .service-tile h3 {
  min-height: 48px;
}

.premium-service-tiles .service-tile p {
  position: static;
  opacity: 0;
  transform: translateY(12px);
  min-height: 82px;
  margin-top: 2px;
}

.premium-service-tiles .service-tile:hover h3,
.premium-service-tiles .service-tile:focus-visible h3 {
  opacity: 1;
  transform: none;
}

.premium-service-tiles .service-tile:hover p,
.premium-service-tiles .service-tile:focus-visible p {
  opacity: 1;
  transform: translateY(0);
}

.tile-more {
  position: relative;
  z-index: 1;
  align-self: end;
  width: max-content;
  margin-top: auto;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.interactive-industries {
  gap: 22px;
}

.interactive-industries .industry-premium {
  appearance: none;
  min-height: 210px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(24, 178, 224, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #16aee4;
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.08);
  cursor: pointer;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.interactive-industries .industry-premium:hover,
.interactive-industries .industry-premium:focus-visible,
.interactive-industries .industry-premium.active {
  background: #22b8e6;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(34, 184, 230, 0.24);
  outline: none;
}

.interactive-industries .industry-premium h3 {
  margin: 0;
  font-size: 1rem;
}

.interactive-industries .industry-premium p {
  display: none;
  max-width: 28ch;
  margin: 2px 0 0;
  color: inherit;
  font-size: 0.88rem;
  line-height: 1.55;
}

.interactive-industries .industry-premium.active p {
  display: block;
}

.industry-icon {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 18px;
}

.industry-icon::before {
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 900;
}

.oil-icon::before { content: "OIL"; }
.petro-icon::before { content: "PET"; }
.energy-icon::before { content: "ENE"; }
.health-icon::before { content: "MED"; }
.finance-icon::before { content: "FIN"; }
.logistics-icon::before { content: "LOG"; }
.corporate-icon::before { content: "COR"; }
.ecommerce-icon::before { content: "SHOP"; font-size: 0.62rem; }
.remote-icon::before { content: "REM"; }

/* Premium services presentation */
.service-feature-list {
  display: grid;
  gap: 58px;
  margin-top: 44px;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  scroll-margin-top: 150px;
}

.service-feature.reverse {
  grid-template-columns: minmax(320px, 1.1fr) minmax(300px, 0.9fr);
}

.service-feature.reverse .service-feature-media {
  order: 2;
}

.service-feature-media {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background: #0b1f3a;
  box-shadow: 0 26px 58px rgba(11, 31, 58, 0.16);
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.18), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-feature:hover .service-feature-media {
  transform: translateY(-7px);
  box-shadow: 0 34px 72px rgba(11, 31, 58, 0.22);
}

.service-feature:hover .service-feature-media::after {
  opacity: 1;
}

.service-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
}

.service-feature-copy {
  position: relative;
  padding-left: 28px;
}

.service-feature-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 76px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--gold));
}

.service-feature-copy h3 {
  max-width: 680px;
  margin: 12px 0 12px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.02;
}

.service-feature-copy p {
  max-width: 700px;
  margin: 0 0 18px;
  color: #536475;
  line-height: 1.72;
}

.service-feature-copy ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.service-feature-copy li {
  position: relative;
  min-height: 42px;
  padding: 10px 10px 10px 24px;
  border-left: 3px solid var(--orange);
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.11), rgba(20, 184, 166, 0.07));
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-feature-copy li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
}

.service-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-feature-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.08);
  color: #c2410c;
  font-size: 0.76rem;
  font-weight: 900;
}

.premium-service-tiles .service-tile {
  min-height: 332px;
  border-color: rgba(10, 132, 180, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 252, 0.92)),
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.16), transparent 42%);
  box-shadow: 0 20px 44px rgba(11, 31, 58, 0.11);
}

.premium-service-tiles .service-tile:hover,
.premium-service-tiles .service-tile:focus-visible {
  transform: translateY(-9px);
  box-shadow: 0 30px 70px rgba(11, 31, 58, 0.16);
}

.premium-service-tiles .service-figure {
  height: 118px;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22), 0 16px 34px rgba(11,31,58,0.12);
}

.premium-service-tiles .service-tile h3 {
  font-size: 1.06rem;
  line-height: 1.25;
}

.premium-service-tiles .service-tile p {
  color: #4b5d70;
  font-size: 0.91rem;
}

/* Homepage service cards - image-led premium style */
#home-services {
  background:
    radial-gradient(circle at 12% 8%, rgba(20, 184, 166, 0.12), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 107, 0, 0.1), transparent 30%),
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

#home-services .section-intro {
  max-width: 850px;
}

#home-services .section-intro h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
}

#home-services .section-intro p {
  max-width: 720px;
  margin: 12px auto 0;
  color: #5b6b7c;
}

#home-services .premium-service-tiles {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 42px;
}

#home-services .premium-service-tiles .service-tile {
  height: 360px;
  min-height: 320px;
  display: grid;
  grid-template-rows: 144px auto auto 1fr auto;
  gap: 10px;
  padding: 30px;
  border: 1px solid rgba(105, 180, 220, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(238, 248, 252, 0.72)),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.78), transparent 34%);
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.12), 0 0 32px rgba(56, 189, 248, 0.08);
  backdrop-filter: blur(16px);
}

#home-services .premium-service-tiles .service-tile::before {
  opacity: 0;
}

#home-services .premium-service-tiles .service-tile::after {
  inset: auto 18px 17px 18px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

#home-services .premium-service-tiles .service-tile:hover,
#home-services .premium-service-tiles .service-tile:focus-visible {
  transform: translateY(-10px);
  border-color: rgba(56, 189, 248, 0.46);
  box-shadow: 0 34px 82px rgba(11, 31, 58, 0.18), 0 0 44px rgba(56, 189, 248, 0.18);
}

.service-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #0b1f3a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.service-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(5, 18, 34, 0.5)),
    linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255, 255, 255, 0.22) 50%, transparent 58%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

#home-services .service-tile:hover .service-thumb::after,
#home-services .service-tile:focus-visible .service-thumb::after {
  transform: translateX(120%);
}

.service-thumb img {
  width: 100%;
  height: 100%;
  min-height: 144px;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 360ms ease, filter 360ms ease;
}

#home-services .service-tile:hover .service-thumb img,
#home-services .service-tile:focus-visible .service-thumb img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.05);
}

.service-mini {
  position: absolute;
  top: 44px;
  left: 44px;
  z-index: 2;
  display: inline-grid;
  min-width: 58px;
  height: 42px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 26px rgba(11, 31, 58, 0.18);
}

.service-mini::before,
.service-mini::after {
  content: none;
}

#home-services .premium-service-tiles .service-tile h3 {
  min-height: 0;
  margin: 4px 2px 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.22;
}

#home-services .premium-service-tiles .service-tile p {
  position: static;
  min-height: 62px;
  margin: 0 2px;
  color: #506174;
  opacity: 1;
  transform: none;
  font-size: 0.84rem;
  line-height: 1.52;
}

#home-services .tile-more {
  margin: 4px 2px 8px;
}

@media (max-width: 980px) {
  #home-services .premium-service-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  #home-services .premium-service-tiles {
    grid-template-columns: 1fr;
  }

  #home-services .premium-service-tiles .service-tile {
    min-height: auto;
    grid-template-rows: 168px auto auto auto;
  }

  #home-services .premium-service-tiles .service-tile p {
    min-height: 0;
  }
}

/* Final clean home service image cards */
#home-services .premium-service-tiles .service-tile {
  height: 300px;
  min-height: 300px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(11, 31, 58, 0.11);
}

#home-services .premium-service-tiles .service-tile::before {
  content: "";
  opacity: 0;
}

#home-services .premium-service-tiles .service-tile::after {
  content: "";
  inset: 0;
  height: auto;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255, 255, 255, 0.34) 50%, transparent 58%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.4s ease;
}

#home-services .premium-service-tiles .service-tile:hover,
#home-services .premium-service-tiles .service-tile:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.36);
  box-shadow: 0 30px 70px rgba(11, 31, 58, 0.16), 0 0 34px rgba(56, 189, 248, 0.16);
}

#home-services .premium-service-tiles .service-tile:hover::after,
#home-services .premium-service-tiles .service-tile:focus-visible::after {
  transform: translateX(130%);
}

#home-services .service-thumb {
  height: 100%;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
}

#home-services .service-thumb::after {
  background: linear-gradient(180deg, transparent 42%, rgba(255, 255, 255, 0.92) 100%);
  transform: none;
}

#home-services .service-thumb img {
  min-height: 0;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

#home-services .service-tile:hover .service-thumb::after,
#home-services .service-tile:focus-visible .service-thumb::after {
  transform: none;
}

#home-services .service-tile:hover .service-thumb img,
#home-services .service-tile:focus-visible .service-thumb img {
  transform: scale(1.05);
}

#home-services .service-mini,
#home-services .premium-service-tiles .service-tile p,
#home-services .tile-more {
  display: none;
}

#home-services .premium-service-tiles .service-tile h3 {
  position: relative;
  z-index: 2;
  min-height: 72px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px 22px 22px;
  color: var(--navy);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), #fff);
  font-size: 1.06rem;
  line-height: 1.22;
}

@media (max-width: 620px) {
  #home-services .premium-service-tiles .service-tile {
    height: 292px;
    min-height: 292px;
    grid-template-rows: 1fr auto;
  }
}

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

  .logo-ticker-track {
    gap: 16px;
  }

  .logo-ticker a {
    width: 150px;
    height: 92px;
    padding: 14px;
  }

  .logo-ticker img {
    max-width: 116px;
    max-height: 56px;
  }

  .compact-client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .real-logo-grid {
    grid-template-columns: 1fr;
  }

  .real-client-section .client-country-head {
    align-items: flex-start;
  }

  .logo-ticker-section {
    padding: 24px 0;
  }

  .logo-ticker-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .logo-ticker-track {
    gap: 14px;
    animation-duration: 54s;
  }

  .logo-ticker a {
    width: 128px;
    height: 82px;
    padding: 12px;
  }

  .logo-ticker img {
    max-width: 100px;
    max-height: 50px;
  }

  .compact-client-grid {
    grid-template-columns: 1fr;
  }
}

.national-grid img {
  max-height: 76px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  color: var(--white);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

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

.field {
  display: grid;
  gap: 8px;
}

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

label {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 48px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 142px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 111, 235, 0.16);
  border-color: var(--blue);
}

.contact-info {
  display: grid;
  gap: 16px;
}

.info-block {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.profile-download {
  border-color: rgba(255, 107, 0, 0.35);
  box-shadow: 0 18px 42px rgba(255, 107, 0, 0.1);
}

.site-footer {
  background: var(--white);
  color: var(--muted);
  padding: 60px 0 24px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1fr;
  gap: 34px;
}

.footer-logo img {
  width: 170px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.site-footer h3 {
  color: var(--navy);
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.35);
  font-weight: 900;
  font-size: 1.18rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes borderFlow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 240% 50%;
  }
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatValue {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes valuePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.14);
    opacity: 0.45;
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes logoShine {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@keyframes servicePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.96;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.78;
  }
}

@media (max-width: 1050px) {
  .grid.three,
  .grid.four,
  .service-showcase,
  .service-tiles,
  .service-card-grid,
  .service-standard-grid,
  .client-stats,
  .client-logo-grid,
  .work-flow,
  .values,
  .vision-grid,
  .values-modern,
  .industry-premium-grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid,
  .split,
  .contact-wrap,
  .service-detail,
  .choose-layout {
    grid-template-columns: 1fr;
  }

  .value-chart span {
    position: static;
    margin: 8px;
  }

  .value-chart {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 28px;
  }
}

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

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    inset: 82px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(11, 31, 58, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1001;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    color: rgba(255, 255, 255, 0.92);
    padding: 12px 14px;
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
  }

  .main-nav .btn {
    margin-top: 8px;
  }

  .hero,
  .hero .container {
    min-height: 52vh;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(11, 31, 58, 0.98), rgba(11, 31, 58, 0.76)),
      url("../images/global-technology-hero.png") center / cover no-repeat;
    background-position: center top;
    background-size: cover;
  }

  .banner-slider {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .detail-columns,
  .form-grid,
  .choice-grid,
  .choose-stats {
    grid-template-columns: 1fr;
  }
}

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

  .nav-wrap {
    min-height: 72px;
    padding: 8px 0;
    gap: 12px;
  }

  .brand {
    min-width: 150px;
  }

  .brand img {
    width: 130px;
    height: 48px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .main-nav {
    inset: 72px 8px auto 8px !important;
    padding: 12px;
    border-radius: 12px;
  }

  .main-nav a {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .main-nav .btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.85rem;
    margin-top: 6px;
  }

  .hero .container {
    padding: 36px 0;
    min-height: 48vh;
  }

  h1 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    margin-bottom: 16px;
  }

  h2 {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
  }

  .section {
    padding: 48px 0;
  }
}

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

  .nav-wrap {
    min-height: 68px;
    gap: 8px;
  }

  .brand {
    min-width: 120px;
  }

  .brand img {
    width: 110px;
    height: 40px;
  }

  .main-nav {
    inset: 68px 6px auto 6px !important;
    padding: 10px;
  }

  .main-nav a {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  h1 {
    font-size: clamp(1.3rem, 3.5vw, 2rem);
  }

  .section {
    padding: 36px 0;
  }
}

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

  .brand img {
    width: 134px;
  }

  .grid.three,
  .grid.four,
  .service-showcase,
  .service-tiles,
  .service-card-grid,
  .service-standard-grid,
  .client-stats,
  .client-logo-grid,
  .work-flow,
  .values,
  .vision-grid,
  .values-modern,
  .industry-premium-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 72px 0;
  }

  .service-tile {
    min-height: 172px;
    align-content: start;
  }

  .service-tile p {
    position: static;
    opacity: 1;
    transform: none;
  }

  .service-tile:hover h3,
  .service-tile:focus-visible h3 {
    opacity: 1;
    transform: none;
  }

  .premium-service-tiles .service-tile,
  .premium-service-grid article {
    min-height: auto;
  }

  .service-figure {
    height: 108px;
  }

  .service-feature,
  .service-feature.reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-feature.reverse .service-feature-media {
    order: 0;
  }

  .service-feature-copy ul {
    grid-template-columns: 1fr;
  }

  .service-feature-copy {
    padding-left: 20px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Final home hero banner and glass header */
.home-page .topbar {
  display: none;
}

.home-page .site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 90;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .site-header .nav-wrap {
  min-height: 76px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(7, 29, 54, 0.46);
  box-shadow: 0 26px 72px rgba(8, 31, 58, 0.24);
  backdrop-filter: blur(20px) saturate(145%);
}

.home-page .brand {
  min-width: 184px;
  padding: 8px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 28px rgba(8, 31, 58, 0.12);
}

.home-page .brand img {
  width: 156px;
  height: 48px;
}

.home-page .main-nav {
  flex: 1;
  justify-content: center;
  gap: 7px;
}

.home-page .main-nav a:not(.btn) {
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid transparent;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.home-page .main-nav a:not(.btn):hover,
.home-page .main-nav a:not(.btn).active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.home-page .main-nav .btn.gold {
  margin-left: auto;
  min-width: 134px;
  border-color: rgba(255, 255, 255, 0.62);
  background: linear-gradient(135deg, #ffffff, #dff0ff);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(31, 111, 235, 0.18);
}

.home-page .nav-toggle {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.home-page .hero {
  min-height: 100vh;
  height: 100vh;
  color: var(--navy);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 36%, rgba(255, 255, 255, 0.55) 66%, rgba(255, 255, 255, 0.08) 100%),
    url("../images/home-hero-global-corporate.png") center / cover no-repeat;
}

.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 19% 25%, rgba(31, 111, 235, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

.home-page .hero-video,
.home-page .hero-video-overlay {
  display: none;
}

.home-page .hero .container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 138px 0 68px;
  align-items: center;
}

.home-page .hero-content {
  max-width: 690px;
}

.home-page .hero h1 {
  max-width: 780px;
  color: var(--navy);
  font-size: clamp(2.7rem, 5.4vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 18px 40px rgba(255, 255, 255, 0.72);
}

.home-page .hero-content .lead {
  max-width: 620px;
  color: #31475f;
  font-size: clamp(1.04rem, 1.38vw, 1.28rem);
}

.home-page .hero-actions .btn.gold {
  background: linear-gradient(135deg, var(--orange), #ff9f2e);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(255, 107, 0, 0.26);
}

.home-page .hero-actions .btn.light {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 111, 235, 0.18);
  color: var(--navy);
  box-shadow: 0 18px 36px rgba(8, 31, 58, 0.1);
  backdrop-filter: blur(14px);
}

.home-page .banner-slider {
  border-color: rgba(31, 111, 235, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 54px rgba(8, 31, 58, 0.11);
}

.home-page .metric {
  background: rgba(255, 255, 255, 0.38);
  border-left-color: var(--orange);
}

.home-page .metric strong {
  color: var(--navy);
}

.home-page .metric span {
  color: #52657a;
}

@media (max-width: 980px) {
  .home-page .site-header {
    top: 10px;
  }

  .home-page .site-header .nav-wrap {
    min-height: 68px;
    border-radius: 18px;
  }

  .home-page .brand {
    min-width: 158px;
    padding: 6px 10px;
  }

  .home-page .brand img {
    width: 138px;
    height: 42px;
  }

  .home-page .main-nav {
    inset: 78px 14px auto 14px;
    background: rgba(7, 29, 54, 0.94);
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    backdrop-filter: blur(18px);
  }

  .home-page .main-nav .btn.gold {
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  .home-page .main-nav {
    position: absolute;
    inset: 82px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(11, 31, 58, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    z-index: 1001;
  }

  .home-page .main-nav.open {
    display: flex;
  }

  .home-page .main-nav a {
    color: rgba(255, 255, 255, 0.92);
    padding: 12px 14px;
  }

  .home-page .main-nav a:hover,
  .home-page .main-nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 720px) {
  .home-page .hero {
    min-height: 100vh;
    height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 46%, rgba(255, 255, 255, 0.76) 100%),
      url("../images/home-hero-global-corporate.png") 62% center / cover no-repeat;
  }

  .home-page .hero .container {
    min-height: 100vh;
    padding: 118px 0 54px;
  }

  .home-page .hero h1 {
    font-size: clamp(2.35rem, 13vw, 4.2rem);
  }
}

@media (max-width: 620px) {
  .home-page .site-header .nav-wrap {
    min-height: 72px;
    padding: 0 12px;
  }

  .home-page .brand {
    min-width: 150px;
  }

  .home-page .brand img {
    width: 130px;
    height: 48px;
  }

  .home-page .nav-toggle {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .home-page .main-nav {
    inset: 72px 8px auto 8px !important;
    padding: 12px;
  }

  .home-page .main-nav a {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .home-page .hero {
    padding: 108px 0 48px;
  }

  .home-page .hero h1 {
    font-size: clamp(1.6rem, 10vw, 2.8rem);
  }
}

@media (max-width: 480px) {
  .home-page .site-header .nav-wrap {
    min-height: 68px;
    padding: 0 8px;
  }

  .home-page .brand {
    min-width: 120px;
  }

  .home-page .brand img {
    width: 110px;
    height: 40px;
  }

  .home-page .main-nav {
    inset: 68px 6px auto 6px !important;
    padding: 10px;
  }

  .home-page .main-nav a {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .home-page .hero h1 {
    font-size: clamp(1.3rem, 8vw, 2rem);
  }
}

/* Final shared transparent header and page hero alignment */
.topbar {
  display: none;
}

.site-header,
.home-page .site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header > .container,
.home-page .site-header > .container {
  width: min(100% - 96px, 1328px);
}

.site-header .nav-wrap,
.home-page .site-header .nav-wrap {
  min-height: 74px;
  padding: 0 18px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(8, 31, 58, 0.2);
  box-shadow: 0 22px 58px rgba(8, 31, 58, 0.16);
  backdrop-filter: blur(18px) saturate(145%);
}

.site-header .brand,
.home-page .brand {
  margin-right: auto;
  min-width: 190px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(8, 31, 58, 0.1);
  backdrop-filter: blur(12px);
}

.site-header .brand img,
.home-page .brand img {
  width: 158px;
  height: 48px;
}

.site-header .main-nav,
.home-page .main-nav {
  flex: 1;
  justify-content: center;
  gap: 8px;
}

.site-header .main-nav a:not(.btn),
.home-page .main-nav a:not(.btn) {
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid transparent;
  text-shadow: 0 1px 12px rgba(4, 18, 34, 0.26);
}

.site-header .main-nav a:not(.btn):hover,
.site-header .main-nav a:not(.btn).active,
.home-page .main-nav a:not(.btn):hover,
.home-page .main-nav a:not(.btn).active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.site-header .main-nav .btn.gold,
.home-page .main-nav .btn.gold {
  margin-left: auto;
  min-width: 136px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 34px rgba(8, 31, 58, 0.12);
}

.home-page .hero-content {
  margin-top: 16px;
}

.home-page .banner-slider {
  margin-top: 28px;
}

.home-page .hero-actions {
  margin-top: 26px;
}

.page-hero {
  min-height: 540px;
  display: grid;
  align-items: center;
  padding: 154px 0 92px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.22) 100%),
    url("../images/home-hero-global-corporate.png") center / cover no-repeat;
  color: var(--navy);
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.76) 45%, rgba(255, 255, 255, 0.14) 100%),
    url("../images/home-hero-global-corporate-alt.png") center / cover no-repeat;
}

.services-hero,
.clients-hero,
.contact-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 46%, rgba(255, 255, 255, 0.2) 100%),
    url("../images/home-hero-global-corporate.png") center / cover no-repeat;
}

.page-hero h1 {
  color: var(--navy);
  text-shadow: 0 18px 42px rgba(255, 255, 255, 0.76);
}

.page-hero p {
  color: #31475f;
}

.page-hero .banner-slider {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 111, 235, 0.13);
  box-shadow: 0 24px 54px rgba(8, 31, 58, 0.1);
}

.page-hero .metric {
  border-left-color: var(--orange);
}

.page-hero .metric strong {
  color: var(--navy);
}

.page-hero .metric span {
  color: #52657a;
}

.section-nav {
  top: 112px;
}

@media (max-width: 980px) {
  .site-header,
  .home-page .site-header {
    top: 10px;
  }

  .site-header > .container,
  .home-page .site-header > .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header .nav-wrap,
  .home-page .site-header .nav-wrap {
    min-height: 68px;
    border-radius: 18px;
  }

  .site-header .brand,
  .home-page .brand {
    min-width: 158px;
    padding: 6px 10px;
  }

  .site-header .brand img,
  .home-page .brand img {
    width: 138px;
    height: 42px;
  }

  .site-header .main-nav,
  .home-page .main-nav {
    inset: 78px 14px auto 14px;
    background: rgba(7, 29, 54, 0.9);
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    backdrop-filter: blur(18px);
  }

  .site-header .main-nav .btn.gold,
  .home-page .main-nav .btn.gold {
    margin-left: 0;
  }

  .page-hero {
    min-height: 500px;
    padding-top: 132px;
  }
}

@media (max-width: 820px) {
  .site-header .main-nav,
  .home-page .main-nav {
    position: absolute;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .site-header .main-nav.open,
  .home-page .main-nav.open {
    display: flex;
  }
}

/* Final correction for inner page hero layout */
@media (max-width: 420px) {
  .hero,
  .hero .container {
    min-height: 42vh;
    padding: 20px 0;
  }

  .page-hero,
  body:not(.home-page) .page-hero {
    padding: 80px 0 40px;
    min-height: 36vh;
  }

  .home-page .hero {
    min-height: 70vh;
    padding: 88px 0 40px;
  }

  .site-header .nav-wrap {
    padding: 6px 12px;
    min-height: 64px;
  }

  .brand img {
    width: 96px;
    height: 36px;
  }

  h1 {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 48px;
    height: 48px;
  }
}

/* Final active service showcase overrides */
#home-services .premium-service-tiles,
.premium-service-tiles.services-page-cards,
.service-benefit-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
  align-items: stretch !important;
}

#home-services .premium-service-tiles .service-tile,
.premium-service-tiles.services-page-cards .service-tile,
.premium-service-tiles .service-tile[data-service-card],
.service-benefit-box {
  position: relative !important;
  isolation: isolate !important;
  height: auto !important;
  min-height: 360px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 30px !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.76) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(241, 248, 255, 0.54)) padding-box,
    linear-gradient(135deg, var(--svc-a, #1f6feb), var(--svc-b, #00bcd4)) border-box !important;
  box-shadow:
    0 30px 76px rgba(8, 31, 58, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
  backdrop-filter: blur(22px) saturate(155%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(155%) !important;
  transform: translateY(0) !important;
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease !important;
}

.service-benefit-box {
  --svc-a: var(--benefit-a, #1f6feb);
  --svc-b: var(--benefit-b, #00bcd4);
}

#home-services .premium-service-tiles .service-tile::before,
.premium-service-tiles.services-page-cards .service-tile::before,
.premium-service-tiles .service-tile[data-service-card]::before,
.service-benefit-box::before {
  content: "" !important;
  position: absolute !important;
  inset: 1px !important;
  width: auto !important;
  height: auto !important;
  border-radius: 23px !important;
  opacity: 1 !important;
  background:
    radial-gradient(circle at 18% 18%, var(--svc-c, rgba(31, 111, 235, 0.18)), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.9), transparent 17%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.3)) !important;
  transform: none !important;
  z-index: -2 !important;
}

#home-services .premium-service-tiles .service-tile::after,
.premium-service-tiles.services-page-cards .service-tile::after,
.premium-service-tiles .service-tile[data-service-card]::after,
.service-benefit-box::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  border-radius: inherit !important;
  background: linear-gradient(110deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.82) 48%, transparent 58%, transparent 100%) !important;
  transform: translateX(-135%) skewX(-10deg) !important;
  transition: transform 700ms ease !important;
  pointer-events: none !important;
  z-index: 3 !important;
}

#home-services .premium-service-tiles .service-tile:hover,
.premium-service-tiles.services-page-cards .service-tile:hover,
.premium-service-tiles .service-tile[data-service-card]:hover,
.service-benefit-box:hover {
  transform: translateY(-12px) !important;
  border-color: rgba(255, 255, 255, 0.96) !important;
  box-shadow:
    0 40px 96px rgba(8, 31, 58, 0.17),
    0 0 48px color-mix(in srgb, var(--svc-a, #1f6feb) 24%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.94) !important;
}

#home-services .premium-service-tiles .service-tile:hover::after,
.premium-service-tiles.services-page-cards .service-tile:hover::after,
.premium-service-tiles .service-tile[data-service-card]:hover::after,
.service-benefit-box:hover::after {
  transform: translateX(135%) skewX(-10deg) !important;
}

.service-abstract,
.benefit-visual {
  position: relative !important;
  width: 132px !important;
  height: 112px !important;
  display: block !important;
  margin: 0 0 4px !important;
  border-radius: 26px !important;
  background: linear-gradient(135deg, var(--svc-a, var(--benefit-a, #1f6feb)), var(--svc-b, var(--benefit-b, #00bcd4))) !important;
  box-shadow:
    0 22px 48px color-mix(in srgb, var(--svc-a, var(--benefit-a, #1f6feb)) 28%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.38) !important;
  transform: perspective(700px) rotateY(-10deg) !important;
  transition: transform 360ms ease, box-shadow 360ms ease !important;
}

.service-abstract::before,
.benefit-visual::before {
  width: 58px !important;
  height: 12px !important;
  left: 22px !important;
  top: 24px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow:
    0 22px 0 rgba(255, 255, 255, 0.58),
    0 44px 0 rgba(255, 255, 255, 0.48) !important;
}

.service-abstract::after,
.benefit-visual::after {
  width: 42px !important;
  height: 42px !important;
  right: -12px !important;
  top: 18px !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 8px solid rgba(255, 255, 255, 0.58) !important;
}

.service-abstract span::before,
.benefit-visual i::before {
  width: 44px !important;
  height: 44px !important;
  right: 18px !important;
  bottom: -12px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.12)) !important;
  transform: rotate(18deg) !important;
}

.service-abstract span::after,
.benefit-visual i::after {
  width: 20px !important;
  height: 68px !important;
  left: -8px !important;
  bottom: -12px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.16) !important;
  transform: rotate(34deg) !important;
}

.service-tile:hover .service-abstract,
.service-benefit-box:hover .benefit-visual {
  transform: perspective(700px) rotateX(7deg) rotateY(-16deg) translateY(-4px) !important;
}

#home-services .premium-service-tiles .service-tile h3,
.premium-service-tiles.services-page-cards .service-tile h3,
.premium-service-tiles .service-tile[data-service-card] h3,
.service-benefit-box h3 {
  position: relative !important;
  z-index: 2 !important;
  min-height: 0 !important;
  margin: 0 !important;
  color: var(--navy) !important;
  font-size: clamp(1.24rem, 1.65vw, 1.6rem) !important;
  line-height: 1.16 !important;
}

#home-services .premium-service-tiles .service-tile p,
.premium-service-tiles.services-page-cards .service-tile p,
.premium-service-tiles .service-tile[data-service-card] p,
.service-benefit-box p {
  position: relative !important;
  z-index: 2 !important;
  min-height: 0 !important;
  margin: 0 !important;
  color: #40566f !important;
  font-size: 0.98rem !important;
  line-height: 1.6 !important;
  opacity: 1 !important;
  transform: none !important;
}

.tile-more,
#home-services .tile-more,
.benefit-card-cta {
  position: relative !important;
  z-index: 2 !important;
  width: fit-content !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 4px 0 0 !important;
  color: var(--navy) !important;
  font-size: 0.8rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
}

.tile-more::after,
.benefit-card-cta::after {
  content: "" !important;
  width: 38px !important;
  height: 3px !important;
  border-radius: 99px !important;
  background: linear-gradient(90deg, var(--svc-a, var(--benefit-a, #1f6feb)), var(--svc-b, var(--benefit-b, #00bcd4))) !important;
  transition: width 260ms ease !important;
}

.service-tile:hover .tile-more::after,
.service-benefit-box:hover .benefit-card-cta::after {
  width: 58px !important;
}

@media (max-width: 1024px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards,
  .service-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards,
  .service-benefit-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #home-services .premium-service-tiles .service-tile,
  .premium-service-tiles.services-page-cards .service-tile,
  .premium-service-tiles .service-tile[data-service-card],
  .service-benefit-box {
    min-height: auto !important;
    padding: 24px !important;
    border-radius: 20px !important;
  }

  .service-abstract,
  .benefit-visual {
    width: 108px !important;
    height: 92px !important;
  }
}

/* Last-mile restore after legacy abstract overrides */
#home-services .premium-service-tiles,
.premium-service-tiles.services-page-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

#home-services .premium-service-tiles .service-tile,
.premium-service-tiles.services-page-cards .service-tile {
  height: 300px !important;
  min-height: 300px !important;
  display: grid !important;
  grid-template-rows: 1fr auto !important;
  gap: 0 !important;
  padding: 0 !important;
  border-radius: 18px !important;
  border: 1px solid rgba(11, 31, 58, 0.08) !important;
  background: #ffffff !important;
  box-shadow: 0 18px 46px rgba(11, 31, 58, 0.11) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

#home-services .premium-service-tiles .service-tile::before,
.premium-service-tiles.services-page-cards .service-tile::before {
  opacity: 0 !important;
}

#home-services .service-thumb,
.premium-service-tiles.services-page-cards .service-thumb {
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#home-services .service-thumb img,
.premium-service-tiles.services-page-cards .service-thumb img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}

#home-services .service-abstract,
.premium-service-tiles.services-page-cards .service-abstract,
#home-services .tile-more,
.premium-service-tiles.services-page-cards .tile-more,
#home-services .service-tile p,
.premium-service-tiles.services-page-cards .service-tile p {
  display: none !important;
}

#home-services .premium-service-tiles .service-tile h3,
.premium-service-tiles.services-page-cards .service-tile h3 {
  min-height: 86px !important;
  margin: 0 !important;
  padding: 24px 26px 26px !important;
  display: flex !important;
  align-items: center !important;
  color: var(--navy) !important;
  background: #ffffff !important;
  font-size: 1.08rem !important;
  line-height: 1.25 !important;
}

@media (max-width: 1100px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards {
    grid-template-columns: 1fr !important;
  }
}

/* EOF enhancement: enterprise Industries We Serve section */
.enterprise-industries-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 122, 24, 0.11), transparent 28%),
    radial-gradient(circle at 92% 24%, rgba(0, 132, 255, 0.13), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f5faff 54%, #ffffff 100%) !important;
}

.enterprise-industries-section::before,
.enterprise-industries-section::after {
  content: "" !important;
  position: absolute !important;
  pointer-events: none !important;
  opacity: 0.72 !important;
}

.enterprise-industries-section::before {
  width: 520px !important;
  height: 520px !important;
  right: -230px !important;
  top: -140px !important;
  border: 1px solid rgba(30, 123, 210, 0.14) !important;
  border-radius: 38px !important;
  transform: rotate(24deg) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(216, 238, 255, 0.22)) !important;
}

.enterprise-industries-section::after {
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 150px !important;
  background-image:
    linear-gradient(rgba(11, 31, 58, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 58, 0.045) 1px, transparent 1px) !important;
  background-size: 42px 42px !important;
  mask-image: linear-gradient(transparent, #000) !important;
}

.enterprise-industries-section .container {
  position: relative !important;
  z-index: 1 !important;
}

.enterprise-industries-section .section-intro {
  max-width: 820px !important;
}

.enterprise-industries-section .section-intro h2 {
  color: var(--navy) !important;
}

.enterprise-industries-section .section-intro p {
  max-width: 760px !important;
  color: #435a74 !important;
}

.enterprise-industries-section .industry-premium-grid.interactive-industries {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 26px !important;
  margin-top: 34px !important;
}

.enterprise-industries-section .industry-premium {
  --ind-a: #0b5bd3;
  --ind-b: #00a7d8;
  --ind-glow: rgba(0, 126, 214, 0.18);
  width: 100% !important;
  min-height: 292px !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 16px !important;
  padding: 30px !important;
  border: 1px solid rgba(20, 103, 185, 0.16) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  isolation: isolate !important;
  appearance: none !important;
  cursor: pointer !important;
  text-align: left !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.96)),
    #ffffff !important;
  color: var(--navy) !important;
  box-shadow:
    0 22px 58px rgba(11, 31, 58, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.94) !important;
  transform: translateY(0) !important;
  transition:
    transform 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease,
    background 360ms ease !important;
}

.enterprise-industries-section .industry-premium::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 6px !important;
  border-radius: 22px 0 0 22px !important;
  background: linear-gradient(180deg, var(--ind-a), var(--ind-b)) !important;
  opacity: 0.92 !important;
  transform: scaleY(0.64) !important;
  transform-origin: center !important;
  transition: transform 360ms ease, width 360ms ease !important;
  z-index: -1 !important;
}

.enterprise-industries-section .industry-premium::after {
  content: "" !important;
  position: absolute !important;
  width: 190px !important;
  height: 190px !important;
  right: -76px !important;
  top: -78px !important;
  border-radius: 34px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), var(--ind-glow)) !important;
  transform: rotate(18deg) !important;
  opacity: 0.78 !important;
  z-index: -2 !important;
}

.enterprise-industries-section .industry-premium:hover,
.enterprise-industries-section .industry-premium:focus-visible,
.enterprise-industries-section .industry-premium.active {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(241, 249, 255, 0.98)),
    #ffffff !important;
  border-color: color-mix(in srgb, var(--ind-a) 48%, #ffffff) !important;
  box-shadow:
    0 34px 80px rgba(11, 31, 58, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 0 42px var(--ind-glow) !important;
  color: var(--navy) !important;
  transform: translateY(-8px) !important;
}

.enterprise-industries-section .industry-premium:hover::before,
.enterprise-industries-section .industry-premium:focus-visible::before,
.enterprise-industries-section .industry-premium.active::before {
  width: 9px !important;
  transform: scaleY(0.92) !important;
}

.enterprise-industries-section .industry-symbol {
  width: 74px !important;
  height: 66px !important;
  display: block !important;
  position: relative !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, var(--ind-a), var(--ind-b)) !important;
  box-shadow:
    0 18px 36px var(--ind-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.42) !important;
  transform: perspective(700px) rotateY(-10deg) !important;
  transition: transform 360ms ease, box-shadow 360ms ease !important;
}

.enterprise-industries-section .industry-symbol::before {
  content: "" !important;
  position: absolute !important;
  inset: 9px !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 12px !important;
}

.enterprise-industries-section .industry-symbol::after {
  content: "" !important;
  position: absolute !important;
  width: 26px !important;
  height: 86px !important;
  right: 8px !important;
  top: -14px !important;
  background: rgba(255, 255, 255, 0.14) !important;
  transform: rotate(32deg) !important;
}

.enterprise-industries-section .industry-premium:hover .industry-symbol,
.enterprise-industries-section .industry-premium:focus-visible .industry-symbol,
.enterprise-industries-section .industry-premium.active .industry-symbol {
  transform: perspective(700px) rotateY(-16deg) translateY(-4px) !important;
  box-shadow:
    0 24px 48px var(--ind-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.48) !important;
}

.enterprise-industries-section .industry-symbol i,
.enterprise-industries-section .industry-symbol i::before,
.enterprise-industries-section .industry-symbol i::after {
  content: "" !important;
  position: absolute !important;
  display: block !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border-radius: 3px !important;
}

.enterprise-industries-section .industry-symbol i {
  left: 22px !important;
  top: 18px !important;
  width: 30px !important;
  height: 28px !important;
  background: transparent !important;
  border: 3px solid rgba(255, 255, 255, 0.92) !important;
}

.enterprise-industries-section .industry-oil { --ind-a: #0a4b78; --ind-b: #0fa3b1; --ind-glow: rgba(15, 163, 177, 0.2); }
.enterprise-industries-section .industry-petrochemical { --ind-a: #124b8f; --ind-b: #ff7a18; --ind-glow: rgba(255, 122, 24, 0.2); }
.enterprise-industries-section .industry-energy { --ind-a: #1167d8; --ind-b: #21c6ff; --ind-glow: rgba(33, 198, 255, 0.22); }
.enterprise-industries-section .industry-healthcare { --ind-a: #0b9f8a; --ind-b: #31d7a7; --ind-glow: rgba(49, 215, 167, 0.2); }
.enterprise-industries-section .industry-finance { --ind-a: #133e7c; --ind-b: #f4b63f; --ind-glow: rgba(244, 182, 63, 0.2); }
.enterprise-industries-section .industry-logistics { --ind-a: #1a5bd8; --ind-b: #00a6a6; --ind-glow: rgba(0, 166, 166, 0.19); }
.enterprise-industries-section .industry-manufacturing { --ind-a: #263f73; --ind-b: #ff6b2c; --ind-glow: rgba(255, 107, 44, 0.2); }
.enterprise-industries-section .industry-retail { --ind-a: #0c7c59; --ind-b: #28c8e8; --ind-glow: rgba(40, 200, 232, 0.2); }
.enterprise-industries-section .industry-education { --ind-a: #2854b8; --ind-b: #7a5cff; --ind-glow: rgba(122, 92, 255, 0.19); }
.enterprise-industries-section .industry-construction { --ind-a: #182f5f; --ind-b: #f28a22; --ind-glow: rgba(242, 138, 34, 0.2); }

.enterprise-industries-section .industry-oil .industry-symbol i {
  width: 28px !important;
  height: 32px !important;
  transform: skewX(-10deg) !important;
}

.enterprise-industries-section .industry-oil .industry-symbol i::before {
  width: 46px !important;
  height: 4px !important;
  left: -11px !important;
  bottom: -12px !important;
}

.enterprise-industries-section .industry-petrochemical .industry-symbol i,
.enterprise-industries-section .industry-manufacturing .industry-symbol i {
  width: 36px !important;
  height: 22px !important;
  left: 19px !important;
  top: 28px !important;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.92) !important;
  clip-path: polygon(0 100%, 0 42%, 20% 42%, 20% 20%, 40% 20%, 40% 42%, 58% 42%, 58% 8%, 78% 8%, 78% 42%, 100% 42%, 100% 100%) !important;
}

.enterprise-industries-section .industry-energy .industry-symbol i {
  width: 24px !important;
  height: 38px !important;
  left: 25px !important;
  top: 14px !important;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  clip-path: polygon(48% 0, 100% 0, 68% 42%, 100% 42%, 36% 100%, 50% 56%, 12% 56%) !important;
}

.enterprise-industries-section .industry-healthcare .industry-symbol i {
  width: 36px !important;
  height: 36px !important;
  left: 19px !important;
  top: 15px !important;
  border: 0 !important;
  background: transparent !important;
}

.enterprise-industries-section .industry-healthcare .industry-symbol i::before,
.enterprise-industries-section .industry-healthcare .industry-symbol i::after {
  left: 15px !important;
  top: 4px !important;
  width: 7px !important;
  height: 28px !important;
}

.enterprise-industries-section .industry-healthcare .industry-symbol i::after {
  transform: rotate(90deg) !important;
}

.enterprise-industries-section .industry-finance .industry-symbol i,
.enterprise-industries-section .industry-education .industry-symbol i {
  width: 38px !important;
  height: 26px !important;
  left: 18px !important;
  top: 20px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow:
    0 21px 0 -10px rgba(255, 255, 255, 0.92),
    inset 0 -4px 0 rgba(255, 255, 255, 0.92) !important;
}

.enterprise-industries-section .industry-finance .industry-symbol i::before {
  width: 7px !important;
  height: 24px !important;
  left: 4px !important;
  bottom: 0 !important;
  box-shadow: 13px -8px 0 rgba(255, 255, 255, 0.92), 26px -14px 0 rgba(255, 255, 255, 0.92) !important;
}

.enterprise-industries-section .industry-logistics .industry-symbol i {
  width: 40px !important;
  height: 20px !important;
  left: 17px !important;
  top: 25px !important;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.92) !important;
}

.enterprise-industries-section .industry-logistics .industry-symbol i::before {
  width: 18px !important;
  height: 15px !important;
  right: -10px !important;
  top: 5px !important;
}

.enterprise-industries-section .industry-logistics .industry-symbol i::after {
  width: 8px !important;
  height: 8px !important;
  left: 5px !important;
  bottom: -8px !important;
  border-radius: 2px !important;
  box-shadow: 32px 0 0 rgba(255, 255, 255, 0.92) !important;
}

.enterprise-industries-section .industry-retail .industry-symbol i {
  width: 36px !important;
  height: 30px !important;
  left: 19px !important;
  top: 21px !important;
  border-radius: 2px 2px 8px 8px !important;
  border-top: 0 !important;
}

.enterprise-industries-section .industry-retail .industry-symbol i::before {
  width: 42px !important;
  height: 3px !important;
  left: -6px !important;
  top: -8px !important;
}

.enterprise-industries-section .industry-education .industry-symbol i::before {
  width: 44px !important;
  height: 24px !important;
  left: -3px !important;
  top: -4px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  clip-path: polygon(50% 0, 100% 38%, 50% 76%, 0 38%) !important;
}

.enterprise-industries-section .industry-construction .industry-symbol i {
  width: 38px !important;
  height: 34px !important;
  left: 18px !important;
  top: 17px !important;
  border: 0 !important;
  background: transparent !important;
}

.enterprise-industries-section .industry-construction .industry-symbol i::before {
  width: 40px !important;
  height: 8px !important;
  left: -1px !important;
  top: 4px !important;
  transform: rotate(-18deg) !important;
}

.enterprise-industries-section .industry-construction .industry-symbol i::after {
  width: 7px !important;
  height: 32px !important;
  left: 16px !important;
  top: 5px !important;
  box-shadow: -12px 10px 0 rgba(255, 255, 255, 0.82), 12px 10px 0 rgba(255, 255, 255, 0.82) !important;
}

.enterprise-industries-section .industry-premium h3 {
  position: relative !important;
  z-index: 2 !important;
  margin: 4px 0 0 !important;
  color: var(--navy) !important;
  font-size: clamp(1.2rem, 1.4vw, 1.48rem) !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
}

.enterprise-industries-section .industry-premium p {
  position: relative !important;
  z-index: 2 !important;
  margin: 0 !important;
  max-width: 34rem !important;
  color: #4b5f78 !important;
  font-size: 0.98rem !important;
  line-height: 1.62 !important;
  opacity: 1 !important;
}

.enterprise-industries-section .industry-card-link {
  position: relative !important;
  z-index: 2 !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--ind-a) !important;
  box-shadow: none !important;
  font-size: 0.78rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.enterprise-industries-section .industry-card-link::after {
  content: "" !important;
  width: 36px !important;
  height: 3px !important;
  border-radius: 99px !important;
  background: linear-gradient(90deg, var(--ind-a), var(--ind-b)) !important;
  transition: width 260ms ease !important;
}

.enterprise-industries-section .industry-premium:hover .industry-card-link::after,
.enterprise-industries-section .industry-premium:focus-visible .industry-card-link::after,
.enterprise-industries-section .industry-premium.active .industry-card-link::after {
  width: 58px !important;
}

@media (max-width: 1024px) {
  .enterprise-industries-section .industry-premium-grid.interactive-industries {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .enterprise-industries-section {
    padding-top: 66px !important;
    padding-bottom: 66px !important;
  }

  .enterprise-industries-section .industry-premium-grid.interactive-industries {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 26px !important;
  }

  .enterprise-industries-section .industry-premium {
    min-height: auto !important;
    padding: 24px !important;
    border-radius: 18px !important;
  }

  .enterprise-industries-section .industry-premium::before {
    border-radius: 18px 0 0 18px !important;
  }

  .enterprise-industries-section .industry-symbol {
    width: 66px !important;
    height: 60px !important;
  }
}

/* True final restore: homepage and Services listing remain original image cards */
#home-services .premium-service-tiles,
.premium-service-tiles.services-page-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

#home-services .premium-service-tiles .service-tile,
.premium-service-tiles.services-page-cards .service-tile {
  height: 300px !important;
  min-height: 300px !important;
  display: grid !important;
  grid-template-rows: 1fr auto !important;
  gap: 0 !important;
  padding: 0 !important;
  border-radius: 18px !important;
  border: 1px solid rgba(11, 31, 58, 0.08) !important;
  background: #ffffff !important;
  box-shadow: 0 18px 46px rgba(11, 31, 58, 0.11) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

#home-services .premium-service-tiles .service-tile::before,
.premium-service-tiles.services-page-cards .service-tile::before {
  opacity: 0 !important;
}

#home-services .premium-service-tiles .service-tile::after,
.premium-service-tiles.services-page-cards .service-tile::after {
  background: linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255, 255, 255, 0.34) 50%, transparent 58%, transparent 100%) !important;
}

#home-services .service-thumb,
.premium-service-tiles.services-page-cards .service-thumb {
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#home-services .service-thumb img,
.premium-service-tiles.services-page-cards .service-thumb img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}

#home-services .service-abstract,
.premium-service-tiles.services-page-cards .service-abstract,
#home-services .tile-more,
.premium-service-tiles.services-page-cards .tile-more,
#home-services .service-tile p,
.premium-service-tiles.services-page-cards .service-tile p {
  display: none !important;
}

#home-services .premium-service-tiles .service-tile h3,
.premium-service-tiles.services-page-cards .service-tile h3 {
  min-height: 86px !important;
  margin: 0 !important;
  padding: 24px 26px 26px !important;
  display: flex !important;
  align-items: center !important;
  color: var(--navy) !important;
  background: #ffffff !important;
  font-size: 1.08rem !important;
  line-height: 1.25 !important;
}

@media (max-width: 1100px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards {
    grid-template-columns: 1fr !important;
  }
}

/* Restore homepage/listing service image cards; detail pages use enterprise classes below */
#home-services .premium-service-tiles,
.premium-service-tiles.services-page-cards {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

#home-services .premium-service-tiles .service-tile,
.premium-service-tiles.services-page-cards .service-tile {
  height: 300px !important;
  min-height: 300px !important;
  display: grid !important;
  grid-template-rows: 1fr auto !important;
  gap: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(11, 31, 58, 0.08) !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 46px rgba(11, 31, 58, 0.11) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

#home-services .premium-service-tiles .service-tile::before,
.premium-service-tiles.services-page-cards .service-tile::before {
  content: "" !important;
  opacity: 0 !important;
}

#home-services .premium-service-tiles .service-tile::after,
.premium-service-tiles.services-page-cards .service-tile::after {
  content: "" !important;
  inset: 0 !important;
  height: auto !important;
  border-radius: inherit !important;
  background: linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255, 255, 255, 0.34) 50%, transparent 58%, transparent 100%) !important;
  transform: translateX(-130%) !important;
  transition: transform 0.4s ease !important;
}

#home-services .premium-service-tiles .service-tile:hover,
.premium-service-tiles.services-page-cards .service-tile:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(56, 189, 248, 0.36) !important;
  box-shadow: 0 30px 70px rgba(11, 31, 58, 0.16), 0 0 34px rgba(56, 189, 248, 0.16) !important;
}

#home-services .premium-service-tiles .service-tile:hover::after,
.premium-service-tiles.services-page-cards .service-tile:hover::after {
  transform: translateX(130%) !important;
}

#home-services .service-thumb,
.premium-service-tiles.services-page-cards .service-thumb {
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

#home-services .service-thumb::after,
.premium-service-tiles.services-page-cards .service-thumb::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, transparent 42%, rgba(255, 255, 255, 0.92) 100%) !important;
  transform: none !important;
}

#home-services .service-thumb img,
.premium-service-tiles.services-page-cards .service-thumb img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  object-fit: cover !important;
  transform: scale(1.01) !important;
  transition: transform 360ms ease, filter 360ms ease !important;
}

#home-services .service-tile:hover .service-thumb img,
.premium-service-tiles.services-page-cards .service-tile:hover .service-thumb img {
  transform: scale(1.08) !important;
  filter: saturate(1.1) contrast(1.05) !important;
}

#home-services .service-abstract,
.premium-service-tiles.services-page-cards .service-abstract,
#home-services .tile-more,
.premium-service-tiles.services-page-cards .tile-more,
#home-services .service-tile p,
.premium-service-tiles.services-page-cards .service-tile p {
  display: none !important;
}

#home-services .premium-service-tiles .service-tile h3,
.premium-service-tiles.services-page-cards .service-tile h3 {
  position: relative !important;
  z-index: 4 !important;
  min-height: 86px !important;
  margin: 0 !important;
  padding: 24px 26px 26px !important;
  display: flex !important;
  align-items: center !important;
  color: var(--navy) !important;
  background: #ffffff !important;
  font-size: 1.08rem !important;
  line-height: 1.25 !important;
}

@media (max-width: 1100px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards {
    grid-template-columns: 1fr !important;
  }

  #home-services .premium-service-tiles .service-tile,
  .premium-service-tiles.services-page-cards .service-tile {
    height: 286px !important;
    min-height: 286px !important;
  }
}

/* Enterprise service-detail pages */
.service-detail-page {
  background: #ffffff;
}

.enterprise-service-hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 96px;
  background:
    radial-gradient(circle at 82% 22%, rgba(31, 111, 235, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f5f9ff 52%, #edf6ff 100%);
}

.enterprise-service-hero::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 520px;
  height: 520px;
  background: linear-gradient(135deg, rgba(31, 111, 235, 0.1), rgba(255, 107, 0, 0.06));
  clip-path: polygon(20% 0, 100% 24%, 76% 100%, 0 72%);
}

.enterprise-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 64px;
  align-items: center;
}

.enterprise-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enterprise-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.enterprise-hero-copy h1 {
  max-width: 860px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 0.98;
}

.enterprise-hero-copy h2 {
  max-width: 760px;
  margin: 26px 0 0;
  color: #1d3554;
  font-size: clamp(1.35rem, 2.3vw, 2.25rem);
  line-height: 1.18;
}

.enterprise-hero-copy p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #52657a;
  font-size: 1.1rem;
  line-height: 1.7;
}

.enterprise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.enterprise-hero-graphic {
  position: relative;
  min-height: 390px;
}

.graphic-plane,
.graphic-core {
  position: absolute;
  display: block;
  border: 1px solid rgba(31, 111, 235, 0.16);
  box-shadow: 0 34px 82px rgba(8, 31, 58, 0.12);
}

.graphic-plane {
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
}

.plane-one {
  inset: 34px 42px 92px 18px;
  transform: skewY(-9deg);
}

.plane-two {
  inset: 92px 0 44px 86px;
  background: linear-gradient(135deg, rgba(31, 111, 235, 0.14), rgba(255, 255, 255, 0.78));
  transform: skewY(-9deg);
}

.plane-three {
  right: 58px;
  top: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--orange), #ffbf66);
  transform: rotate(18deg);
}

.graphic-core {
  left: 92px;
  top: 132px;
  width: 188px;
  height: 112px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  transform: skewY(-9deg);
}

.enterprise-section {
  padding: 94px 0;
  background: #ffffff;
}

.enterprise-section:nth-of-type(even) {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.enterprise-section-heading,
.enterprise-section-copy {
  max-width: 820px;
  margin-bottom: 34px;
}

.enterprise-section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.enterprise-section-heading.center .enterprise-kicker {
  justify-content: center;
}

.enterprise-section h2,
.enterprise-final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 1.05;
}

.enterprise-section p,
.enterprise-final-cta p {
  color: #52657a;
  line-height: 1.72;
}

.enterprise-overview-grid,
.enterprise-business-grid,
.enterprise-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: 56px;
  align-items: start;
}

.enterprise-overview-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(31, 111, 235, 0.14);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(8, 31, 58, 0.08);
}

.enterprise-overview-panel div,
.enterprise-benefit-item {
  padding: 20px;
  border-left: 3px solid var(--orange);
  background: linear-gradient(135deg, #ffffff, #f3f8ff);
}

.enterprise-overview-panel strong,
.enterprise-benefit-item strong {
  display: block;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}

.enterprise-overview-panel span,
.enterprise-benefit-item span {
  display: block;
  margin-top: 8px;
  color: #52657a;
  font-weight: 800;
}

.enterprise-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.enterprise-feature-card {
  min-height: 206px;
  padding: 24px;
  border: 1px solid rgba(31, 111, 235, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(8, 31, 58, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.enterprise-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 111, 235, 0.24);
  box-shadow: 0 28px 64px rgba(8, 31, 58, 0.11);
}

.feature-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-left: 3px solid var(--orange);
  background: #eef6ff;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
}

.enterprise-feature-card h3,
.enterprise-process-step h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.16rem;
}

.enterprise-feature-card p,
.enterprise-process-step p,
.enterprise-benefit-item p {
  margin-bottom: 0;
  color: #52657a;
  font-size: 0.96rem;
}

.enterprise-business-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(31, 111, 235, 0.08), transparent 26%),
    linear-gradient(135deg, #f8fbff, #ffffff);
}

.enterprise-benefit-list {
  display: grid;
  gap: 14px;
}

.enterprise-benefit-item {
  border-left-color: var(--orange);
  background: #ffffff;
  border: 1px solid rgba(31, 111, 235, 0.12);
}

.enterprise-benefit-item strong,
.enterprise-benefit-item span,
.enterprise-benefit-item p {
  color: var(--navy);
}

.enterprise-benefit-item p {
  color: #52657a;
}

.enterprise-process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(31, 111, 235, 0.22);
}

.enterprise-process-step {
  position: relative;
  padding: 34px 18px 0;
}

.enterprise-process-step::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 18px;
  width: 12px;
  height: 12px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 107, 0, 0.12);
}

.enterprise-process-step b {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.enterprise-trust-section {
  background: #f7fbff;
}

.enterprise-trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.enterprise-trust-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(31, 111, 235, 0.12);
  border-left: 3px solid var(--orange);
  background: #ffffff;
  color: var(--navy);
  font-weight: 850;
  box-shadow: 0 14px 36px rgba(8, 31, 58, 0.06);
}

.enterprise-final-cta {
  padding: 92px 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 107, 0, 0.14), transparent 24%),
    linear-gradient(135deg, #f8fbff, #ffffff);
}

.enterprise-final-inner {
  padding: 46px;
  border: 1px solid rgba(31, 111, 235, 0.12);
  border-left: 5px solid var(--orange);
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(8, 31, 58, 0.1);
}

@media (max-width: 1040px) {
  .enterprise-hero-grid,
  .enterprise-overview-grid,
  .enterprise-business-grid,
  .enterprise-trust-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-process-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 30px;
  }
}

@media (max-width: 680px) {
  .enterprise-service-hero {
    padding: 118px 0 62px;
  }

  .enterprise-hero-copy h1 {
    font-size: clamp(2.35rem, 13vw, 3.45rem);
  }

  .enterprise-hero-graphic {
    min-height: 260px;
  }

  .enterprise-section,
  .enterprise-final-cta {
    padding: 62px 0;
  }

  .enterprise-feature-grid,
  .enterprise-overview-panel,
  .enterprise-process-line {
    grid-template-columns: 1fr;
  }

  .enterprise-process-line {
    border-top: 0;
    border-left: 1px solid rgba(31, 111, 235, 0.22);
    margin-left: 6px;
  }

  .enterprise-process-step {
    padding: 0 0 26px 28px;
  }

  .enterprise-process-step::before {
    top: 2px;
    left: -6px;
  }

  .enterprise-final-inner {
    padding: 30px 24px;
  }
}

/* Premium enterprise service showcase redesign */
#home-services,
.services-page-cards.closest-section {
  position: relative;
}

#home-services {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(31, 111, 235, 0.16), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(255, 107, 0, 0.12), transparent 26%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 44%, #eef7ff 100%) !important;
}

#home-services::before,
#home-services::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
}

#home-services::before {
  width: 440px;
  height: 440px;
  right: -170px;
  top: 80px;
  background:
    linear-gradient(135deg, rgba(31, 111, 235, 0.12), rgba(0, 188, 212, 0.08));
  clip-path: polygon(30% 0, 100% 25%, 72% 100%, 0 72%);
  filter: blur(2px);
}

#home-services::after {
  width: 320px;
  height: 320px;
  left: -110px;
  bottom: 60px;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.12), rgba(255, 184, 77, 0.08));
  clip-path: polygon(0 18%, 78% 0, 100% 78%, 22% 100%);
}

.premium-service-tiles,
#home-services .premium-service-tiles,
.services-page-cards {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
  align-items: stretch !important;
}

.premium-service-tiles .service-tile,
#home-services .premium-service-tiles .service-tile,
.services-page-cards .service-tile {
  --svc-a: #1f6feb;
  --svc-b: #00bcd4;
  --svc-c: rgba(31, 111, 235, 0.18);
  position: relative !important;
  isolation: isolate !important;
  min-height: 368px !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 30px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(241, 248, 255, 0.52)) padding-box,
    linear-gradient(135deg, color-mix(in srgb, var(--svc-a) 62%, white), color-mix(in srgb, var(--svc-b) 58%, white)) border-box !important;
  box-shadow:
    0 28px 70px rgba(8, 31, 58, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(22px) saturate(155%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(155%) !important;
  transform: translateY(0) !important;
  transition:
    transform 360ms ease,
    box-shadow 360ms ease,
    border-color 360ms ease,
    background 360ms ease !important;
}

.premium-service-tiles .service-tile::before,
#home-services .premium-service-tiles .service-tile::before,
.services-page-cards .service-tile::before {
  content: "" !important;
  position: absolute !important;
  inset: 1px !important;
  border-radius: 23px !important;
  opacity: 1 !important;
  background:
    radial-gradient(circle at 18% 18%, var(--svc-c), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.9), transparent 16%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.3)) !important;
  z-index: -2 !important;
}

.premium-service-tiles .service-tile::after,
#home-services .premium-service-tiles .service-tile::after,
.services-page-cards .service-tile::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  border-radius: inherit !important;
  background:
    linear-gradient(110deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.82) 48%, transparent 58%, transparent 100%) !important;
  transform: translateX(-135%) skewX(-10deg) !important;
  transition: transform 700ms ease !important;
  z-index: 3 !important;
  pointer-events: none !important;
}

.premium-service-tiles .service-tile:hover,
#home-services .premium-service-tiles .service-tile:hover,
.services-page-cards .service-tile:hover,
.premium-service-tiles .service-tile:focus-visible,
#home-services .premium-service-tiles .service-tile:focus-visible,
.services-page-cards .service-tile:focus-visible {
  transform: translateY(-12px) !important;
  border-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow:
    0 38px 90px rgba(8, 31, 58, 0.17),
    0 0 46px color-mix(in srgb, var(--svc-a) 24%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

.premium-service-tiles .service-tile:hover::after,
#home-services .premium-service-tiles .service-tile:hover::after,
.services-page-cards .service-tile:hover::after,
.premium-service-tiles .service-tile:focus-visible::after,
#home-services .premium-service-tiles .service-tile:focus-visible::after,
.services-page-cards .service-tile:focus-visible::after {
  transform: translateX(135%) skewX(-10deg) !important;
}

.service-thumb {
  display: none !important;
}

.service-abstract {
  position: relative;
  width: 132px;
  height: 112px;
  display: block;
  margin-bottom: 2px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--svc-a) 92%, white), color-mix(in srgb, var(--svc-b) 88%, #111827));
  box-shadow:
    0 22px 44px color-mix(in srgb, var(--svc-a) 24%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  transform: perspective(700px) rotateX(0deg) rotateY(-8deg);
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.service-abstract::before,
.service-abstract::after,
.service-abstract span::before,
.service-abstract span::after {
  content: "";
  position: absolute;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.service-abstract::before {
  width: 62px;
  height: 13px;
  left: 22px;
  top: 24px;
  opacity: 0.78;
  box-shadow:
    0 23px 0 rgba(255, 255, 255, 0.62),
    0 46px 0 rgba(255, 255, 255, 0.52);
}

.service-abstract::after {
  width: 38px;
  height: 38px;
  right: 18px;
  bottom: 19px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  border: 8px solid rgba(255, 255, 255, 0.7);
}

.service-abstract span::before {
  width: 54px;
  height: 54px;
  right: -16px;
  top: -18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.16));
  transform: rotate(18deg);
}

.service-abstract span::after {
  width: 22px;
  height: 74px;
  left: -10px;
  bottom: -12px;
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(32deg);
}

.service-tile:hover .service-abstract,
.service-tile:focus-visible .service-abstract {
  transform: perspective(700px) rotateX(7deg) rotateY(-15deg) translateY(-4px);
  box-shadow:
    0 30px 58px color-mix(in srgb, var(--svc-a) 30%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.premium-service-tiles .service-tile h3,
#home-services .premium-service-tiles .service-tile h3,
.services-page-cards .service-tile h3 {
  position: relative !important;
  z-index: 2 !important;
  min-height: 0 !important;
  margin: 0 !important;
  color: var(--navy) !important;
  font-size: clamp(1.25rem, 1.7vw, 1.62rem) !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

.premium-service-tiles .service-tile p,
#home-services .premium-service-tiles .service-tile p,
.services-page-cards .service-tile p {
  position: relative !important;
  z-index: 2 !important;
  min-height: 74px !important;
  margin: 0 !important;
  color: #40566f !important;
  font-size: 0.98rem !important;
  line-height: 1.6 !important;
  opacity: 1 !important;
  transform: none !important;
}

.tile-more,
#home-services .tile-more {
  position: relative;
  z-index: 2;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 0 !important;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tile-more::after {
  content: "";
  width: 38px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--svc-a), var(--svc-b));
  transition: width 260ms ease;
}

.service-tile:hover .tile-more::after,
.service-tile:focus-visible .tile-more::after {
  width: 58px;
}

[data-service-card="erp"] { --svc-a: #00a98f; --svc-b: #1f6feb; --svc-c: rgba(0, 169, 143, 0.2); }
[data-service-card="web"] { --svc-a: #0ea5e9; --svc-b: #2563eb; --svc-c: rgba(14, 165, 233, 0.2); }
[data-service-card="mobile"] { --svc-a: #7c3aed; --svc-b: #06b6d4; --svc-c: rgba(124, 58, 237, 0.18); }
[data-service-card="commerce"] { --svc-a: #ff6b00; --svc-b: #f59e0b; --svc-c: rgba(255, 107, 0, 0.18); }
[data-service-card="email"] { --svc-a: #0891b2; --svc-b: #22c55e; --svc-c: rgba(8, 145, 178, 0.18); }
[data-service-card="seo"] { --svc-a: #1f6feb; --svc-b: #8b5cf6; --svc-c: rgba(31, 111, 235, 0.18); }
[data-service-card="cloud"] { --svc-a: #38bdf8; --svc-b: #0f766e; --svc-c: rgba(56, 189, 248, 0.2); }
[data-service-card="marketing"] { --svc-a: #f97316; --svc-b: #db2777; --svc-c: rgba(249, 115, 22, 0.18); }
[data-service-card="brand"] { --svc-a: #0f172a; --svc-b: #ff6b00; --svc-c: rgba(255, 107, 0, 0.16); }
[data-service-card="graphics"] { --svc-a: #6366f1; --svc-b: #ec4899; --svc-c: rgba(99, 102, 241, 0.18); }
[data-service-card="social"] { --svc-a: #06b6d4; --svc-b: #3b82f6; --svc-c: rgba(6, 182, 212, 0.18); }
[data-service-card="consulting"] { --svc-a: #0b2a55; --svc-b: #14b8a6; --svc-c: rgba(20, 184, 166, 0.18); }

/* Premium benefit cards inside individual service pages */
.service-benefits-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(31, 111, 235, 0.13), transparent 28%),
    radial-gradient(circle at 92% 34%, rgba(255, 107, 0, 0.11), transparent 24%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #eef7ff 100%);
}

.service-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
}

.service-benefit-box {
  --benefit-a: #1f6feb;
  --benefit-b: #00bcd4;
  position: relative !important;
  isolation: isolate !important;
  min-height: 342px !important;
  padding: 28px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 18px !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(242, 248, 255, 0.56)) padding-box,
    linear-gradient(135deg, var(--benefit-a), var(--benefit-b)) border-box !important;
  box-shadow:
    0 28px 70px rgba(8, 31, 58, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.84) !important;
  backdrop-filter: blur(20px) saturate(155%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(155%) !important;
}

.service-benefit-box:nth-child(2) { --benefit-a: #0ea5e9; --benefit-b: #2563eb; }
.service-benefit-box:nth-child(3) { --benefit-a: #7c3aed; --benefit-b: #06b6d4; }
.service-benefit-box:nth-child(4) { --benefit-a: #ff6b00; --benefit-b: #f59e0b; }
.service-benefit-box:nth-child(5) { --benefit-a: #0891b2; --benefit-b: #22c55e; }
.service-benefit-box:nth-child(6) { --benefit-a: #0b2a55; --benefit-b: #14b8a6; }

.service-benefit-box::before {
  content: "" !important;
  position: absolute !important;
  width: 190px !important;
  height: 190px !important;
  right: -64px !important;
  top: -58px !important;
  border-radius: 44px !important;
  background: linear-gradient(135deg, color-mix(in srgb, var(--benefit-a) 20%, transparent), color-mix(in srgb, var(--benefit-b) 18%, transparent)) !important;
  transform: rotate(18deg) !important;
  opacity: 1 !important;
  z-index: -1 !important;
}

.service-benefit-box::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  background: linear-gradient(110deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.75) 48%, transparent 58%, transparent 100%) !important;
  transform: translateX(-135%) skewX(-10deg) !important;
  transition: transform 700ms ease !important;
  pointer-events: none !important;
}

.service-benefit-box:hover {
  transform: translateY(-12px) !important;
  border-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow:
    0 38px 92px rgba(8, 31, 58, 0.16),
    0 0 44px color-mix(in srgb, var(--benefit-a) 24%, transparent) !important;
}

.service-benefit-box:hover::after {
  transform: translateX(135%) skewX(-10deg) !important;
}

.benefit-visual {
  position: relative;
  width: 122px;
  height: 104px;
  display: block;
  border-radius: 26px !important;
  background: linear-gradient(135deg, var(--benefit-a), var(--benefit-b)) !important;
  box-shadow:
    0 22px 48px color-mix(in srgb, var(--benefit-a) 26%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.36) !important;
  transform: perspective(700px) rotateY(-10deg);
  transition: transform 360ms ease;
}

.benefit-visual::before,
.benefit-visual::after,
.benefit-visual i::before,
.benefit-visual i::after {
  content: "";
  position: absolute;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
}

.benefit-visual::before {
  width: 58px;
  height: 12px;
  left: 22px;
  top: 24px;
  box-shadow:
    0 22px 0 rgba(255, 255, 255, 0.58),
    0 44px 0 rgba(255, 255, 255, 0.48);
}

.benefit-visual::after {
  width: 42px;
  height: 42px;
  right: -12px;
  top: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  border: 8px solid rgba(255, 255, 255, 0.58);
}

.benefit-visual i::before {
  width: 44px;
  height: 44px;
  right: 18px;
  bottom: -12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.12));
  transform: rotate(18deg);
}

.benefit-visual i::after {
  width: 20px;
  height: 68px;
  left: -8px;
  bottom: -12px;
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(34deg);
}

.service-benefit-box:hover .benefit-visual {
  transform: perspective(700px) rotateX(7deg) rotateY(-16deg) translateY(-4px);
}

.service-benefit-box h3 {
  position: relative !important;
  z-index: 2 !important;
  margin: 0 !important;
  color: var(--navy) !important;
  font-size: clamp(1.24rem, 1.55vw, 1.52rem) !important;
  line-height: 1.18 !important;
}

.service-benefit-box p {
  position: relative !important;
  z-index: 2 !important;
  margin: 0 !important;
  color: #40566f !important;
  font-size: 0.98rem !important;
  line-height: 1.6 !important;
}

.benefit-card-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.benefit-card-cta::after {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--benefit-a), var(--benefit-b));
  transition: width 260ms ease;
}

.service-benefit-box:hover .benefit-card-cta::after {
  width: 58px;
}

@media (max-width: 1024px) {
  .premium-service-tiles,
  #home-services .premium-service-tiles,
  .services-page-cards,
  .service-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .premium-service-tiles,
  #home-services .premium-service-tiles,
  .services-page-cards,
  .service-benefit-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .premium-service-tiles .service-tile,
  #home-services .premium-service-tiles .service-tile,
  .services-page-cards .service-tile,
  .service-benefit-box {
    min-height: auto !important;
    padding: 24px !important;
    border-radius: 20px !important;
  }

  .service-abstract,
  .benefit-visual {
    width: 108px;
    height: 92px;
  }

  .premium-service-tiles .service-tile p,
  #home-services .premium-service-tiles .service-tile p,
  .services-page-cards .service-tile p {
    min-height: 0 !important;
  }
}

body:not(.home-page) .page-hero {
  min-height: 480px;
  align-items: center;
  padding: 132px 0 70px;
  overflow: hidden;
}

body:not(.home-page) .page-hero .container {
  width: min(100% - 96px, 1180px);
  margin: 0 auto;
  text-align: left;
}

body:not(.home-page) .page-hero h1 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4.2vw, 4.45rem);
  line-height: 1.04;
}

body:not(.home-page) .page-hero p {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

body:not(.home-page) .page-hero .banner-slider {
  width: min(100%, 660px);
  margin: 28px 0 0;
  mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent 100%);
}

body:not(.home-page) .page-hero .metric {
  min-width: 150px;
  padding: 22px 24px;
}

body:not(.home-page) .section-nav {
  top: 104px;
}

@media (max-width: 980px) {
  body:not(.home-page) .page-hero {
    min-height: 440px;
    padding: 116px 0 60px;
  }

  body:not(.home-page) .page-hero .container {
    width: min(100% - 32px, var(--max));
  }
}

@media (max-width: 720px) {
  body:not(.home-page) .page-hero {
    min-height: 420px;
    padding: 108px 0 52px;
  }

  body:not(.home-page) .page-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  body:not(.home-page) .page-hero .banner-slider {
    width: 100%;
  }
}

/* Premium individual service pages */
.service-detail-page {
  background:
    radial-gradient(circle at 10% 12%, rgba(31, 111, 235, 0.14), transparent 32%),
    radial-gradient(circle at 88% 22%, rgba(255, 107, 0, 0.08), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 38%, #f3f8ff 100%);
  color: var(--navy);
}

.service-detail-page main {
  overflow: hidden;
}

.premium-service-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 132px 0 70px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.24) 100%),
    url("../images/home-hero-global-corporate-alt.png") center / cover no-repeat;
}

.premium-service-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 54%, rgba(31, 111, 235, 0.08) 54% 58%, transparent 58%),
    radial-gradient(circle at 76% 70%, rgba(31, 111, 235, 0.16), transparent 28%);
}

.premium-service-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  align-items: center;
  gap: 58px;
}

.service-eyebrow,
.service-section-heading span,
.service-showcase-copy span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-eyebrow::before,
.service-section-heading span::before,
.service-showcase-copy span::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--orange);
}

.premium-service-copy h1 {
  max-width: 740px;
  color: var(--navy);
  font-size: clamp(2.6rem, 5.2vw, 5.8rem);
  line-height: 0.98;
  margin-bottom: 18px;
  text-shadow: 0 18px 42px rgba(255, 255, 255, 0.7);
}

.premium-service-copy h2 {
  max-width: 680px;
  color: #174a83;
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  line-height: 1.06;
}

.premium-service-copy p {
  max-width: 640px;
  color: #40566f;
  font-size: 1.12rem;
}

.service-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.premium-service-visual,
.service-showcase-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 34px 90px rgba(8, 31, 58, 0.18);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.premium-service-visual::before,
.service-showcase-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.44) 44%, transparent 56%);
  transform: translateX(-90%);
  animation: serviceShine 7s ease-in-out infinite;
}

.premium-service-visual img,
.service-showcase-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.03);
}

.visual-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(8, 31, 58, 0.13);
  backdrop-filter: blur(14px);
}

.visual-chip-one {
  left: 24px;
  top: 24px;
}

.visual-chip-two {
  right: 24px;
  bottom: 24px;
}

.service-page-section {
  position: relative;
  padding: 92px 0;
}

.service-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-section-heading.center span {
  justify-content: center;
}

.service-section-heading.center span::before {
  display: none;
}

.service-section-heading h2,
.service-showcase-copy h2,
.service-final-cta h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.65rem);
}

.service-section-heading p,
.service-showcase-copy p,
.service-final-cta p {
  color: #52657a;
  font-size: 1.06rem;
}

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

.service-benefit-box,
.service-step,
.service-tech-card,
.service-result-card,
.service-faq,
.service-choose-list span {
  position: relative;
  border: 1px solid rgba(31, 111, 235, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(238, 247, 255, 0.58));
  box-shadow: 0 22px 54px rgba(8, 31, 58, 0.09);
  backdrop-filter: blur(16px);
}

.service-benefit-box {
  min-height: 210px;
  padding: 28px;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-benefit-box::after,
.service-step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-110%);
  transition: transform 520ms ease;
}

.service-benefit-box:hover,
.service-step:hover,
.service-tech-card:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 111, 235, 0.34);
  box-shadow: 0 30px 72px rgba(31, 111, 235, 0.14);
}

.service-benefit-box:hover::after,
.service-step:hover::after {
  transform: translateX(110%);
}

.service-benefit-box b {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f4ff, #ffffff);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(31, 111, 235, 0.12);
}

.service-benefit-box h3,
.service-step h3 {
  font-size: 1.14rem;
}

.service-benefit-box p,
.service-step p {
  color: #5c6c80;
}

.service-choose-section {
  background:
    linear-gradient(90deg, rgba(8, 31, 58, 0.92), rgba(18, 78, 130, 0.72)),
    url("../images/home-hero-global-corporate.png") center / cover no-repeat;
}

.service-choose-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
}

.service-choose-section h2,
.service-choose-section p {
  color: var(--white);
}

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

.service-choose-list span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 20px 22px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 900;
}

.service-choose-list span::before {
  content: "✓";
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.service-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.service-step {
  min-height: 220px;
  padding: 26px 20px;
  border-radius: 22px;
  overflow: hidden;
}

.service-step b {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 2rem;
  line-height: 1;
}

.service-showcase-section {
  padding: 96px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(232, 244, 255, 0.78));
}

.service-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  align-items: center;
  gap: 48px;
}

.service-tech-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.service-tech-card {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 18px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-results-section {
  padding: 92px 0;
  background:
    linear-gradient(135deg, rgba(8, 31, 58, 0.96), rgba(31, 111, 235, 0.68)),
    url("../images/home-hero-global-corporate-alt.png") center / cover no-repeat;
}

.service-results-section h2,
.service-results-section .service-section-heading span {
  color: var(--white);
}

.service-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-result-card {
  min-height: 158px;
  display: grid;
  align-content: center;
  justify-items: center;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.service-result-card strong {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.service-result-card span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.service-faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 42px;
}

.service-faq-list {
  display: grid;
  gap: 14px;
}

.service-faq {
  width: 100%;
  padding: 22px 24px;
  border-radius: 18px;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}

.service-faq span {
  display: block;
  font-weight: 900;
  font-size: 1.02rem;
}

.service-faq p {
  display: none;
  margin: 14px 0 0;
  color: #52657a;
}

.service-faq[aria-expanded="true"] {
  border-color: rgba(31, 111, 235, 0.28);
  box-shadow: 0 26px 62px rgba(31, 111, 235, 0.12);
}

.service-faq[aria-expanded="true"] p {
  display: block;
}

.service-final-cta {
  padding: 96px 0 110px;
}

.service-final-cta-inner {
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(31, 111, 235, 0.16);
  border-radius: 32px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(232, 244, 255, 0.72)),
    url("../images/home-hero-global-corporate.png") center / cover no-repeat;
  box-shadow: 0 34px 90px rgba(8, 31, 58, 0.13);
}

@keyframes serviceShine {
  0%,
  38% {
    transform: translateX(-100%);
  }

  68%,
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 1100px) {
  .premium-service-hero-grid,
  .service-choose-grid,
  .service-showcase-grid,
  .service-faq-wrap {
    grid-template-columns: 1fr;
  }

  .service-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-timeline,
  .service-tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .premium-service-hero {
    min-height: auto;
    padding: 118px 0 56px;
  }

  .premium-service-hero-grid {
    gap: 30px;
  }

  .premium-service-visual,
  .service-showcase-visual,
  .premium-service-visual img,
  .service-showcase-visual img {
    min-height: 290px;
  }

  .service-benefit-grid,
  .service-choose-list,
  .service-timeline,
  .service-tech-grid,
  .service-results-grid {
    grid-template-columns: 1fr;
  }

  .service-page-section,
  .service-showcase-section,
  .service-results-section,
  .service-final-cta {
    padding: 64px 0;
  }
}

/* Scoped enhancement pass */
.site-header.is-scrolled .nav-wrap {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(8, 31, 58, 0.34);
  box-shadow: 0 24px 68px rgba(8, 31, 58, 0.22);
  backdrop-filter: blur(24px) saturate(150%);
}

.profile-btn::before {
  content: "PDF";
  display: inline-grid;
  min-width: 30px;
  height: 24px;
  margin-right: 9px;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.25);
  color: currentColor;
  font-size: 0.66rem;
  font-weight: 950;
}

#home-services .premium-service-tiles {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

#home-services .premium-service-tiles .service-tile {
  min-height: 310px;
  padding: 0;
  border: 1px solid rgba(31, 111, 235, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 54px rgba(8, 31, 58, 0.1);
  overflow: hidden;
  isolation: isolate;
}

#home-services .service-thumb {
  height: 222px;
  border-radius: 0;
  overflow: hidden;
}

#home-services .service-thumb::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.82) 100%),
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

#home-services .service-thumb img {
  height: 100%;
  object-fit: cover;
}

#home-services .premium-service-tiles .service-tile h3 {
  min-height: 68px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px 22px 22px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.18;
}

#home-services .premium-service-tiles .service-tile:hover {
  transform: translateY(-9px);
  box-shadow: 0 34px 80px rgba(31, 111, 235, 0.18);
}

.logo-ticker-section {
  background:
    linear-gradient(180deg, #ffffff, #f3f9ff);
}

.logo-ticker {
  border-top: 1px solid rgba(31, 111, 235, 0.08);
  border-bottom: 1px solid rgba(31, 111, 235, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 20px 54px rgba(8, 31, 58, 0.06);
}

.logo-ticker-track {
  animation-duration: 42s;
}

.logo-ticker a {
  min-width: 170px;
  height: 92px;
  border-radius: 18px;
  border: 1px solid rgba(31, 111, 235, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(8, 31, 58, 0.08);
}

.logo-ticker img {
  max-width: 132px;
  max-height: 56px;
  filter: none;
}

.choice-grid {
  gap: 18px;
}

.choice {
  min-height: 110px;
  padding: 24px 22px 24px 74px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.choice span {
  position: absolute;
  left: 22px;
  top: 24px;
  width: 34px;
  height: 34px;
  color: transparent;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff8a1d, #1f6feb);
}

.choice span::before {
  content: "✓";
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #ffffff;
  font-weight: 950;
}

.choice:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.2);
}

.work-flow {
  position: relative;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.work-flow::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 7%;
  right: 7%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6b00, #1f6feb, #00a8ff, #15b58f);
}

.work-step {
  position: relative;
  min-height: 230px;
  padding: 82px 18px 24px;
  border: 1px solid rgba(31, 111, 235, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(235, 247, 255, 0.72));
  box-shadow: 0 22px 54px rgba(8, 31, 58, 0.09);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.work-step span {
  position: absolute;
  top: 22px;
  left: 18px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff8a1d, #1f6feb);
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(31, 111, 235, 0.2);
}

.work-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 72px rgba(31, 111, 235, 0.15);
}

.service-benefit-box b {
  color: #ffffff;
  background: linear-gradient(135deg, #ff8a1d, #1f6feb);
  font-size: 1.24rem;
}

.service-step {
  border-top: 5px solid var(--blue);
}

.service-step:nth-child(2n) {
  border-top-color: #15b58f;
}

.service-step:nth-child(3n) {
  border-top-color: var(--orange);
}

.service-step b {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(31, 111, 235, 0.12), rgba(255, 107, 0, 0.16));
  color: var(--blue);
  font-size: 1.4rem;
}

.service-tech-card {
  min-height: 118px;
  gap: 9px;
  display: grid;
  align-content: center;
}

.service-tech-card b {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  place-items: center;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(31, 111, 235, 0.14), rgba(255, 255, 255, 0.92));
  color: var(--blue);
  font-size: 1rem;
  box-shadow: inset 0 0 0 1px rgba(31, 111, 235, 0.14);
}

.service-tech-card em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: #52657a;
}

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

.office-card {
  min-height: 210px;
  border-radius: 22px;
  border: 1px solid rgba(31, 111, 235, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(235, 247, 255, 0.72));
  box-shadow: 0 22px 54px rgba(8, 31, 58, 0.09);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.office-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 72px rgba(31, 111, 235, 0.14);
}

.office-card > span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #ff8a1d, #1f6feb);
  color: #ffffff;
  font-weight: 950;
}

.office-card p {
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  #home-services .premium-service-tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-flow::before {
    display: none;
  }
}

@media (max-width: 760px) {
  #home-services .premium-service-tiles,
  .office-card-grid,
  .work-flow {
    grid-template-columns: 1fr;
  }
}

/* Final requested fixes: transparent header, services cards, bright card system */
.site-header,
.home-page .site-header {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-header .nav-wrap,
.home-page .site-header .nav-wrap {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-header .brand,
.home-page .brand {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-header .main-nav a:not(.btn),
.home-page .main-nav a:not(.btn) {
  color: var(--navy) !important;
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.9);
}

.site-header .main-nav a:not(.btn):hover,
.site-header .main-nav a:not(.btn).active,
.home-page .main-nav a:not(.btn):hover,
.home-page .main-nav a:not(.btn).active {
  color: var(--navy) !important;
  background: rgba(255, 255, 255, 0.32) !important;
  border-color: rgba(255, 255, 255, 0.44) !important;
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled .nav-wrap,
.home-page .site-header.is-scrolled .nav-wrap {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.48) !important;
  box-shadow: 0 24px 68px rgba(8, 31, 58, 0.16) !important;
  backdrop-filter: blur(22px) saturate(150%) !important;
}

.site-header.is-scrolled .brand,
.home-page .site-header.is-scrolled .brand {
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.62) !important;
  box-shadow: 0 14px 34px rgba(8, 31, 58, 0.1) !important;
  backdrop-filter: blur(14px) !important;
}

.services-page-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin: 36px 0 58px;
}

.services-page-cards .service-tile {
  min-height: 310px;
  padding: 0;
  border: 1px solid rgba(31, 111, 235, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 54px rgba(8, 31, 58, 0.1);
  overflow: hidden;
  isolation: isolate;
}

.services-page-cards .service-thumb {
  height: 222px;
  border-radius: 0;
  overflow: hidden;
}

.services-page-cards .service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-page-cards .service-thumb::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.82) 100%),
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.services-page-cards .service-tile h3 {
  min-height: 68px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px 22px 22px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.18;
}

.services-page-cards .service-tile:hover,
.services-page-cards .service-tile:focus-visible {
  transform: translateY(-9px);
  box-shadow: 0 34px 80px rgba(31, 111, 235, 0.18);
}

.service-feature {
  scroll-margin-top: 138px;
}

.choose-section,
.section.dark.choose-section,
.service-choose-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(31, 111, 235, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef7ff 54%, #ffffff 100%) !important;
  color: var(--navy) !important;
}

.choose-section h2,
.choose-section p,
.service-choose-section h2,
.service-choose-section p {
  color: var(--navy) !important;
}

.choice,
.service-choose-list span {
  border: 1px solid rgba(31, 111, 235, 0.16) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 247, 255, 0.8)) !important;
  color: var(--navy) !important;
  box-shadow: 0 22px 54px rgba(8, 31, 58, 0.1) !important;
}

.choice strong,
.service-choose-list span {
  color: var(--navy) !important;
}

.choice:hover,
.service-choose-list span:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 107, 0, 0.28) !important;
  box-shadow: 0 32px 74px rgba(31, 111, 235, 0.15) !important;
}

.service-choose-list span::before {
  background: linear-gradient(135deg, var(--orange), var(--blue)) !important;
  color: #ffffff !important;
}

@media (max-width: 1100px) {
  .services-page-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .services-page-cards {
    grid-template-columns: 1fr;
  }
}

/* Final no-circle card cleanup and contact form behavior */
.services-page-cards + .service-feature-list {
  display: none !important;
}

.services-hero + .section-nav {
  display: none !important;
}

.service-benefit-box,
.service-step,
.choice,
.office-card,
.service-tech-card {
  border-radius: 10px !important;
}

.service-benefit-box b,
.service-step b,
.choice span,
.service-tech-card b,
.office-card > span {
  border-radius: 6px !important;
}

.service-benefit-box {
  min-height: 230px;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 245, 255, 0.82)),
    linear-gradient(90deg, rgba(255, 107, 0, 0.08), rgba(31, 111, 235, 0.08)) !important;
}

.service-benefit-box b {
  width: 58px;
  height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--blue)) !important;
  color: #ffffff !important;
}

.service-benefit-box h3 {
  color: var(--navy);
  font-size: 1.22rem;
}

.service-benefit-box p {
  color: #40566f;
}

.service-step b {
  width: 58px;
  height: 42px;
  background: linear-gradient(135deg, #e8f3ff, #fff2e8) !important;
  color: var(--blue);
}

.choice span {
  width: 58px;
  height: 42px;
}

.choice span::before {
  content: "✓";
}

.office-card {
  padding-top: 24px;
}

.office-card > span {
  display: none !important;
}

.office-flag {
  width: 70px;
  height: 44px;
  margin-bottom: 18px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(31, 111, 235, 0.12);
  box-shadow: 0 12px 24px rgba(8, 31, 58, 0.1);
}

.office-card h3 {
  color: var(--navy);
  font-size: 1.22rem;
}

.office-card p,
.office-card a {
  color: #40566f;
  font-weight: 700;
}

.form-message {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 111, 235, 0.14);
  border-radius: 8px;
  background: #f2f8ff;
  color: var(--navy);
  font-weight: 800;
}

.form-message.success {
  border-color: rgba(21, 181, 143, 0.32);
  background: #ecfff8;
  color: #11664f;
}

.form-message.error {
  border-color: rgba(255, 107, 0, 0.32);
  background: #fff4ec;
  color: #8a3a00;
}

button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.industry-icon,
.round-flag,
.round-flag img,
.value-modern span,
.process-card span,
.footer-flags span,
.footer-flags img,
.client-stat,
.contact-info .info-block::before,
.choice span,
.service-benefit-box b,
.service-step b,
.service-tech-card b {
  border-radius: 6px !important;
}

.industry-icon::before,
.industry-icon::after {
  border-radius: 3px !important;
}

/* Final visual cleanup: remove dull round badges and keep inner pages transparent/responsive */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body:not(.home-page) .section-nav {
  position: sticky;
  top: 108px;
  z-index: 60;
  background: rgba(255, 255, 255, 0.2) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(31, 111, 235, 0.12);
  box-shadow: 0 18px 42px rgba(8, 31, 58, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
}

.section-nav {
  background: rgba(255, 255, 255, 0.18) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.34) !important;
  border-bottom: 1px solid rgba(31, 111, 235, 0.12) !important;
  box-shadow: 0 18px 42px rgba(8, 31, 58, 0.08) !important;
  backdrop-filter: blur(18px) saturate(150%) !important;
}

.section-nav a {
  border-radius: 6px !important;
  color: var(--navy) !important;
  background: rgba(255, 255, 255, 0.54) !important;
  border: 1px solid rgba(31, 111, 235, 0.12);
  box-shadow: 0 10px 22px rgba(8, 31, 58, 0.06);
}

.section-nav a:hover,
.section-nav a:focus-visible {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--blue), #11a8d9) !important;
}

body:not(.home-page) .section-nav .container {
  width: min(100% - 40px, 1180px);
  min-height: 56px;
  justify-content: center;
}

body:not(.home-page) .section-nav a {
  min-height: 38px;
  border-radius: 6px !important;
  color: var(--navy) !important;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(31, 111, 235, 0.12);
  box-shadow: 0 10px 22px rgba(8, 31, 58, 0.06);
}

body:not(.home-page) .section-nav a:hover,
body:not(.home-page) .section-nav a:focus-visible {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--blue), #11a8d9);
  border-color: rgba(255, 255, 255, 0.24);
}

.service-benefit-box,
.service-step,
.choice,
.value-modern,
.process-card,
.service-tech-card,
.office-card,
.vision-card,
.panel {
  border-radius: 10px !important;
}

.service-benefit-box b,
.service-step b,
.choice span,
.service-tech-card b,
.value-modern span,
.process-card span,
.industry-icon,
.client-stat,
.contact-info .info-block::before,
.footer-flags span,
.flag-cloud span,
.round-flag,
.whatsapp-float {
  border-radius: 6px !important;
}

.service-benefit-box b,
.service-step b,
.choice span,
.service-tech-card b,
.value-modern span,
.process-card span {
  width: 64px !important;
  height: 44px !important;
  min-width: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff7a1a 0%, #1f6feb 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(31, 111, 235, 0.18) !important;
}

.service-benefit-box b,
.service-step b,
.choice span {
  font-size: 0 !important;
}

.service-benefit-box b::before,
.service-step b::before,
.choice span::before {
  content: "";
  width: 34px;
  height: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 14px 0 rgba(255, 255, 255, 0.62),
    0 -14px 0 rgba(255, 255, 255, 0.34);
}

.service-step b::before {
  width: 30px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
}

.choice span::before {
  width: 28px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.94);
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg) translateY(-2px);
  background: transparent;
  box-shadow: none;
}

.value-modern span::before,
.value-modern::before,
.process-card span::before,
.choice span::after,
.service-benefit-box b::after,
.service-step b::after {
  border-radius: 2px !important;
}

.value-modern span::before {
  width: 30px !important;
  height: 12px !important;
  border-radius: 2px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 13px 0 rgba(255, 255, 255, 0.58),
    0 -13px 0 rgba(255, 255, 255, 0.36) !important;
}

.process-card {
  grid-template-columns: 72px 1fr !important;
  gap: 14px 18px;
}

.process-card span {
  font-size: 0.92rem;
  font-weight: 950;
}

.premium-service-tiles .service-tile,
.services-page-cards .service-tile {
  border-radius: 12px !important;
}

.premium-service-tiles .service-thumb,
.premium-service-tiles .service-thumb img,
.services-page-cards .service-thumb,
.services-page-cards .service-thumb img {
  border-radius: 10px 10px 0 0 !important;
}

.whatsapp-float {
  right: 18px;
  bottom: 18px;
  width: auto;
  min-width: 66px;
  height: 48px;
  padding: 0 18px;
}

@media (max-width: 980px) {
  body:not(.home-page) .section-nav {
    top: 88px;
  }

  body:not(.home-page) .section-nav .container {
    width: min(100% - 24px, 1180px);
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 0;
  }

  body:not(.home-page) .section-nav a {
    font-size: 0.78rem;
    padding: 0 11px;
  }
}

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

  .site-header,
  .home-page .site-header {
    top: 8px;
  }

  .site-header .nav-wrap,
  .home-page .site-header .nav-wrap {
    padding: 0 12px;
    min-height: 62px;
    border-radius: 14px;
  }

  .site-header .brand,
  .home-page .brand {
    min-width: 128px;
    padding: 5px 8px;
  }

  .site-header .brand img,
  .home-page .brand img {
    width: 118px;
    height: 38px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .page-hero,
  body:not(.home-page) .page-hero {
    min-height: 440px;
    padding: 118px 0 58px;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
    line-height: 1.02;
  }

  .page-hero .banner-slider {
    margin-top: 24px;
    max-width: 100%;
  }

  .service-benefit-box b,
  .service-step b,
  .choice span,
  .service-tech-card b,
  .value-modern span,
  .process-card span {
    width: 56px !important;
    height: 40px !important;
    min-width: 56px;
  }

  .process-card {
    grid-template-columns: 64px 1fr !important;
  }
}

/* Final responsive repair: sub-page heroes, logos, process cards and mobile layout */
body {
  min-width: 0;
}

.site-header,
.home-page .site-header {
  top: 22px;
}

.site-header > .container,
.home-page .site-header > .container {
  width: min(100% - 56px, 1420px);
}

.site-header .nav-wrap,
.home-page .site-header .nav-wrap {
  min-height: 76px;
  padding: 0 22px;
  gap: 22px;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.site-header .brand,
.home-page .brand {
  min-width: 210px;
}

.site-header .brand img,
.home-page .brand img {
  width: 178px;
  height: 54px;
}

.site-header.is-scrolled .nav-wrap,
.home-page .site-header.is-scrolled .nav-wrap,
.site-header .main-nav.open,
.home-page .main-nav.open {
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(31, 111, 235, 0.16) !important;
  box-shadow: 0 24px 70px rgba(8, 31, 58, 0.14) !important;
  backdrop-filter: blur(20px) saturate(155%) !important;
}

.hero,
.home-page .hero {
  min-height: 100svh;
  overflow: hidden;
  background-position: center center !important;
  background-size: cover !important;
}

.home-page .hero .container {
  width: min(100% - 56px, 1320px);
}

.home-page .hero h1 {
  max-width: 820px;
  font-size: clamp(4rem, 6.1vw, 7.2rem);
  line-height: 1.02;
}

.page-hero,
body:not(.home-page) .page-hero {
  min-height: 620px !important;
  height: auto !important;
  display: grid !important;
  align-items: center !important;
  padding: 142px 0 96px !important;
  overflow: hidden !important;
  background-position: center center !important;
  background-size: cover !important;
}

.about-hero {
  background-position: center center !important;
}

.services-hero,
.clients-hero,
.contact-hero {
  background-position: center center !important;
}

.page-hero .container,
body:not(.home-page) .page-hero .container {
  width: min(100% - 56px, 1180px);
  margin: 0 auto;
  text-align: left;
  transform: none !important;
}

.page-hero h1,
body:not(.home-page) .page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 5.2vw, 6.4rem) !important;
  line-height: 1.05 !important;
  letter-spacing: 0;
}

.page-hero p,
body:not(.home-page) .page-hero p {
  max-width: 700px;
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
}

.page-hero .banner-slider,
body:not(.home-page) .page-hero .banner-slider {
  width: min(100%, 760px);
  margin: 34px 0 0;
  overflow: hidden;
}

.section-nav {
  overflow: hidden;
}

.section-nav .container {
  max-width: 100%;
}

.logo-ticker-section {
  overflow: hidden;
  padding: 54px 0 44px;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.logo-ticker-section .section-intro h2 {
  color: var(--orange);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1;
}

.logo-ticker {
  width: 100%;
  overflow: hidden;
  border: 0;
  background: rgba(255, 255, 255, 0.7);
}

.logo-ticker-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: logoTicker 72s linear infinite;
}

.logo-ticker:hover .logo-ticker-track {
  animation-play-state: running;
}

.logo-ticker-item,
.logo-ticker a {
  width: 210px;
  height: 116px;
  flex: 0 0 210px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 26px;
  border: 1px solid rgba(31, 111, 235, 0.1);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(8, 31, 58, 0.08);
  pointer-events: none;
  cursor: default;
}

.logo-ticker img,
.logo-ticker-item img,
.client-logo-grid img,
.client-logo-card img {
  opacity: 1 !important;
  filter: none !important;
  transform: none;
  visibility: visible !important;
}

.logo-ticker img,
.logo-ticker-item img {
  width: 100%;
  height: 76px;
  object-fit: contain;
}

.work-flow {
  position: relative;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.work-flow::before {
  display: none !important;
}

.work-step {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(31, 111, 235, 0.12);
  border-radius: 14px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(236, 247, 255, 0.86)),
    linear-gradient(135deg, rgba(31, 111, 235, 0.18), rgba(255, 107, 0, 0.12));
  box-shadow: 0 24px 60px rgba(8, 31, 58, 0.1);
  overflow: hidden;
  isolation: isolate;
}

.work-step::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 107, 0, 0.18), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(31, 111, 235, 0.18), transparent 32%);
  opacity: 1;
}

.work-step::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 28px;
  width: 62px;
  height: 48px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 55%, transparent 55% 100%),
    linear-gradient(135deg, var(--blue), #15b58f);
  box-shadow: 0 16px 34px rgba(31, 111, 235, 0.18);
}

.work-step:nth-child(2n)::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 55%, transparent 55% 100%),
    linear-gradient(135deg, var(--orange), #d4af37);
}

.work-step:nth-child(3n)::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 55%, transparent 55% 100%),
    linear-gradient(135deg, #6d5dfc, var(--blue));
}

.work-step span {
  width: 72px !important;
  height: 46px !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, var(--navy), var(--blue)) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(8, 31, 58, 0.16);
}

.work-step h3 {
  margin-top: 26px;
  color: var(--navy);
  font-size: 1.32rem;
  line-height: 1.18;
}

.work-step p {
  color: #435970;
  font-size: 1rem;
}

.work-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 86px rgba(31, 111, 235, 0.18);
}

.service-tiles,
.premium-service-tiles,
.services-page-cards,
.choice-grid,
.industry-premium-grid,
.footer-grid,
.contact-wrap,
.form-grid {
  max-width: 100%;
}

@media (max-width: 1180px) {
  .premium-service-tiles,
  .services-page-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .work-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header,
  .home-page .site-header {
    top: 10px;
  }

  .site-header > .container,
  .home-page .site-header > .container,
  .home-page .hero .container,
  .page-hero .container,
  body:not(.home-page) .page-hero .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header .nav-wrap,
  .home-page .site-header .nav-wrap {
    min-height: 64px;
    padding: 0 12px;
    border-radius: 14px;
  }

  .site-header .brand,
  .home-page .brand {
    min-width: 130px;
    margin-right: auto;
  }

  .site-header .brand img,
  .home-page .brand img {
    width: 122px;
    height: 40px;
  }

  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(31, 111, 235, 0.14);
  }

  .site-header .main-nav,
  .home-page .main-nav {
    position: absolute;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border-radius: 14px;
  }

  .site-header .main-nav.open,
  .home-page .main-nav.open {
    display: flex !important;
  }

  .site-header .main-nav a,
  .home-page .main-nav a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero,
  .home-page .hero {
    min-height: 760px;
    padding: 118px 0 80px;
    background-position: 58% center !important;
  }

  .home-page .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 11vw, 5.2rem);
  }

  .page-hero,
  body:not(.home-page) .page-hero {
    min-height: 560px !important;
    padding: 118px 0 76px !important;
    background-position: 58% center !important;
  }

  .page-hero h1,
  body:not(.home-page) .page-hero h1 {
    font-size: clamp(2.6rem, 10vw, 4.8rem) !important;
  }

  .premium-service-tiles,
  .services-page-cards,
  .contact-wrap,
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .logo-ticker-item,
  .logo-ticker a {
    width: 174px;
    height: 96px;
    flex-basis: 174px;
    padding: 16px 20px;
  }

  .logo-ticker img,
  .logo-ticker-item img {
    height: 64px;
  }
}

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

  .hero,
  .home-page .hero {
    min-height: 690px;
    padding: 112px 0 58px;
    background-position: 64% center !important;
  }

  .home-page .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
    line-height: 1.04;
  }

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

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

  .page-hero,
  body:not(.home-page) .page-hero {
    min-height: 510px !important;
    padding: 108px 0 58px !important;
    background-position: 63% center !important;
  }

  .page-hero h1,
  body:not(.home-page) .page-hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.65rem) !important;
  }

  .page-hero p,
  body:not(.home-page) .page-hero p {
    font-size: 1rem;
  }

  .banner-slider,
  .page-hero .banner-slider {
    width: 100%;
  }

  .premium-service-tiles,
  .services-page-cards,
  .choice-grid,
  .industry-premium-grid,
  .work-flow,
  .contact-wrap,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .premium-service-tiles .service-tile,
  .services-page-cards .service-tile {
    min-height: 285px;
  }

  .work-step {
    min-height: 220px;
    padding: 24px;
  }

  .section-nav .container {
    width: min(100% - 20px, var(--max)) !important;
    justify-content: flex-start !important;
    overflow-x: auto;
    padding: 8px 0;
  }

  .section-nav a {
    font-size: 0.76rem;
    padding: 0 11px;
  }

  input,
  select,
  textarea,
  button {
    max-width: 100%;
  }

  .logo-ticker-section {
    padding: 38px 0 34px;
  }
}

/* Final hero/sub-header alignment requested on 17 Jun */
.site-header,
.home-page .site-header {
  top: 18px !important;
  z-index: 120 !important;
}

.site-header > .container,
.home-page .site-header > .container {
  width: min(100% - 72px, 1340px) !important;
}

.site-header .nav-wrap,
.home-page .site-header .nav-wrap {
  min-height: 68px !important;
  padding: 0 18px !important;
}

.site-header .brand,
.home-page .brand {
  min-width: 190px !important;
}

.site-header .brand img,
.home-page .brand img {
  width: 166px !important;
  height: 50px !important;
}

.hero,
.home-page .hero,
.page-hero,
body:not(.home-page) .page-hero {
  min-height: 620px !important;
  height: auto !important;
  padding: 132px 0 78px !important;
  display: grid !important;
  align-items: center !important;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center center !important;
}

.home-page .hero {
  background-position: center center !important;
}

.about-hero,
.services-hero,
.clients-hero,
.contact-hero {
  background-position: center center !important;
}

.hero .container,
.home-page .hero .container,
.page-hero .container,
body:not(.home-page) .page-hero .container {
  width: min(100% - 72px, 1180px) !important;
  margin-inline: auto !important;
  transform: none !important;
}

.hero-content,
.home-page .hero-content {
  max-width: 720px !important;
  margin: 0 !important;
}

.hero h1,
.home-page .hero h1,
.page-hero h1,
body:not(.home-page) .page-hero h1 {
  max-width: 760px !important;
  margin: 0 !important;
  color: var(--navy) !important;
  font-size: clamp(3rem, 4.7vw, 5.3rem) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
}

.page-hero p,
body:not(.home-page) .page-hero p,
.hero-content .lead,
.home-page .hero-content .lead {
  max-width: 680px !important;
  margin: 18px 0 0 !important;
  font-size: clamp(1.05rem, 1.35vw, 1.32rem) !important;
  line-height: 1.5 !important;
}

.banner-slider,
.page-hero .banner-slider,
.home-page .banner-slider,
body:not(.home-page) .page-hero .banner-slider {
  width: min(100%, 720px) !important;
  max-width: 720px !important;
  margin: 28px 0 0 !important;
  overflow: hidden !important;
}

.banner-slider .metric {
  min-width: 150px !important;
}

.section-nav,
body:not(.home-page) .section-nav,
.services-hero + .section-nav {
  display: block !important;
  position: sticky !important;
  top: 96px !important;
  z-index: 95 !important;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.78) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.7) !important;
  border-bottom: 1px solid rgba(31, 111, 235, 0.14) !important;
  box-shadow: 0 14px 34px rgba(8, 31, 58, 0.08) !important;
  backdrop-filter: blur(18px) saturate(145%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(145%) !important;
}

.section-nav .container,
body:not(.home-page) .section-nav .container {
  width: min(100% - 72px, 1180px) !important;
  min-height: 56px !important;
  justify-content: center !important;
  gap: 10px !important;
  overflow-x: auto !important;
}

.section-nav a,
body:not(.home-page) .section-nav a {
  min-height: 38px !important;
  padding: 0 16px !important;
  color: var(--navy) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(31, 111, 235, 0.12) !important;
  box-shadow: 0 10px 24px rgba(8, 31, 58, 0.06) !important;
}

@media (max-width: 980px) {
  .site-header,
  .home-page .site-header {
    top: 10px !important;
  }

  .site-header > .container,
  .home-page .site-header > .container,
  .hero .container,
  .home-page .hero .container,
  .page-hero .container,
  body:not(.home-page) .page-hero .container {
    width: min(100% - 28px, var(--max)) !important;
  }

  .site-header .nav-wrap,
  .home-page .site-header .nav-wrap {
    min-height: 62px !important;
  }

  .site-header .brand,
  .home-page .brand {
    min-width: 138px !important;
  }

  .site-header .brand img,
  .home-page .brand img {
    width: 128px !important;
    height: 40px !important;
  }

  .hero,
  .home-page .hero,
  .page-hero,
  body:not(.home-page) .page-hero {
    min-height: 560px !important;
    padding: 112px 0 64px !important;
    background-position: 58% center !important;
  }

  .hero h1,
  .home-page .hero h1,
  .page-hero h1,
  body:not(.home-page) .page-hero h1 {
    font-size: clamp(2.55rem, 9vw, 4.3rem) !important;
  }

  .section-nav,
  body:not(.home-page) .section-nav,
  .services-hero + .section-nav {
    top: 78px !important;
  }

  .section-nav .container,
  body:not(.home-page) .section-nav .container {
    width: min(100% - 24px, var(--max)) !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 640px) {
  .hero,
  .home-page .hero,
  .page-hero,
  body:not(.home-page) .page-hero {
    min-height: 520px !important;
    padding: 104px 0 50px !important;
    background-position: 62% center !important;
  }

  .hero h1,
  .home-page .hero h1,
  .page-hero h1,
  body:not(.home-page) .page-hero h1 {
    font-size: clamp(2.18rem, 11.5vw, 3.35rem) !important;
    line-height: 1.08 !important;
  }

  .page-hero p,
  body:not(.home-page) .page-hero p,
  .hero-content .lead,
  .home-page .hero-content .lead {
    font-size: 0.98rem !important;
  }

  .banner-slider,
  .page-hero .banner-slider,
  .home-page .banner-slider {
    margin-top: 22px !important;
  }

  .banner-slider .metric {
    min-width: 132px !important;
    padding: 14px 18px !important;
  }

  .section-nav,
  body:not(.home-page) .section-nav,
  .services-hero + .section-nav {
    top: 72px !important;
  }

  .section-nav .container,
  body:not(.home-page) .section-nav .container {
    min-height: 52px !important;
    padding: 8px 0 !important;
  }

  .section-nav a,
  body:not(.home-page) .section-nav a {
    min-height: 34px !important;
    padding: 0 12px !important;
    font-size: 0.76rem !important;
  }
}

/* Final polish: sticky sub-nav, moving client logos, clean process cards and mobile spacing */
@keyframes logoTicker {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.logo-ticker {
  overflow: hidden !important;
}

.logo-ticker-track {
  width: max-content !important;
  min-width: max-content !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 22px !important;
  animation: logoTicker 52s linear infinite !important;
  will-change: transform !important;
}

.logo-ticker:hover .logo-ticker-track {
  animation-play-state: running !important;
}

.logo-ticker-item,
.logo-ticker a {
  flex: 0 0 198px !important;
}

.logo-ticker img,
.logo-ticker-item img {
  opacity: 1 !important;
  filter: none !important;
}

.section-nav,
body:not(.home-page) .section-nav,
.services-hero + .section-nav {
  top: 96px !important;
  z-index: 110 !important;
  transform: translateZ(0);
}

.work-flow {
  align-items: stretch !important;
}

.work-step {
  min-height: 245px !important;
  padding: 34px 30px 32px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 14px !important;
  overflow: hidden !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 247, 255, 0.92)) padding-box,
    linear-gradient(135deg, rgba(31, 111, 235, 0.35), rgba(255, 107, 0, 0.32)) border-box !important;
  border: 1px solid transparent !important;
}

.work-step::before {
  inset: auto 22px 22px auto !important;
  width: 118px !important;
  height: 78px !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, rgba(31, 111, 235, 0.1), rgba(0, 168, 150, 0.16)) !important;
  opacity: 1 !important;
  transform: skewX(-10deg) !important;
}

.work-step::after {
  top: 32px !important;
  right: 32px !important;
  width: 78px !important;
  height: 58px !important;
  border-radius: 12px !important;
  opacity: 0.92 !important;
}

.work-step span {
  position: relative !important;
  z-index: 2 !important;
  width: auto !important;
  min-width: 74px !important;
  height: 44px !important;
  margin: 0 0 4px !important;
  padding: 0 18px !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #0b2a55, #1f6feb) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 28px rgba(31, 111, 235, 0.24) !important;
}

.work-step h3 {
  position: relative !important;
  z-index: 2 !important;
  margin: 0 !important;
  max-width: 82% !important;
  color: var(--navy) !important;
}

.work-step p {
  position: relative !important;
  z-index: 2 !important;
  margin: 0 !important;
  max-width: 92% !important;
}

@media (max-width: 980px) {
  .section-nav,
  body:not(.home-page) .section-nav,
  .services-hero + .section-nav {
    top: 78px !important;
  }
}

@media (max-width: 640px) {
  .container,
  .site-header > .container,
  .home-page .site-header > .container,
  .hero .container,
  .home-page .hero .container,
  .page-hero .container,
  body:not(.home-page) .page-hero .container,
  .section-nav .container,
  body:not(.home-page) .section-nav .container {
    width: min(100% - 28px, var(--max)) !important;
  }

  .section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .section-nav,
  body:not(.home-page) .section-nav,
  .services-hero + .section-nav {
    top: 72px !important;
  }

  .logo-ticker-track {
    gap: 14px !important;
    animation-duration: 42s !important;
  }

  .logo-ticker-item,
  .logo-ticker a {
    flex-basis: 158px !important;
    width: 158px !important;
    height: 86px !important;
    padding: 12px 16px !important;
  }

  .logo-ticker img,
  .logo-ticker-item img {
    height: 58px !important;
  }

  .work-step {
    min-height: 216px !important;
    padding: 28px 22px 26px !important;
  }

  .work-step h3,
  .work-step p {
    max-width: 100% !important;
  }
}

/* Mobile rescue: keep header, menu, hero text and sliders inside the phone viewport */
html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (max-width: 760px) {
  .site-header,
  .home-page .site-header {
    position: fixed !important;
    top: 10px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
  }

  .site-header > .container,
  .home-page .site-header > .container {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    margin-inline: auto !important;
  }

  .site-header .nav-wrap,
  .home-page .site-header .nav-wrap {
    width: 100% !important;
    min-height: 62px !important;
    padding: 0 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    border-radius: 16px !important;
    overflow: visible !important;
  }

  .site-header .brand,
  .home-page .brand {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: calc(100% - 62px) !important;
    margin-right: 0 !important;
    padding: 0 !important;
  }

  .site-header .brand img,
  .home-page .brand img {
    width: clamp(132px, 42vw, 168px) !important;
    height: 42px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: left center !important;
  }

  .nav-toggle,
  .home-page .nav-toggle {
    position: relative !important;
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    padding: 0 !important;
    border-radius: 12px !important;
    border: 1px solid rgba(31, 111, 235, 0.18) !important;
    background: rgba(255, 255, 255, 0.92) !important;
    color: var(--navy) !important;
    box-shadow: 0 12px 28px rgba(8, 31, 58, 0.12) !important;
    font-size: 0 !important;
    line-height: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-toggle::before,
  .home-page .nav-toggle::before {
    content: "\2630";
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--navy);
    font-weight: 800;
  }

  .site-header .main-nav,
  .home-page .main-nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    inset: calc(100% + 10px) 0 auto 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 12px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(31, 111, 235, 0.16) !important;
    box-shadow: 0 20px 44px rgba(8, 31, 58, 0.16) !important;
    backdrop-filter: blur(18px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(150%) !important;
  }

  .site-header .main-nav.open,
  .home-page .main-nav.open {
    display: flex !important;
  }

  .site-header .main-nav a,
  .home-page .main-nav a,
  .site-header .main-nav a:not(.btn),
  .home-page .main-nav a:not(.btn) {
    width: 100% !important;
    min-height: 42px !important;
    padding: 10px 12px !important;
    color: var(--navy) !important;
    background: rgba(245, 250, 255, 0.84) !important;
    border: 1px solid rgba(31, 111, 235, 0.12) !important;
    border-radius: 10px !important;
    text-align: center !important;
  }

  .site-header .main-nav .btn.gold,
  .home-page .main-nav .btn.gold {
    margin-left: 0 !important;
    background: var(--orange) !important;
    color: #ffffff !important;
  }

  .hero,
  .home-page .hero,
  .page-hero,
  body:not(.home-page) .page-hero {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    padding: 102px 0 44px !important;
    display: block !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: 58% center !important;
  }

  .hero .container,
  .home-page .hero .container,
  .page-hero .container,
  body:not(.home-page) .page-hero .container {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
    min-height: 0 !important;
    margin-inline: auto !important;
    padding: 0 !important;
    transform: none !important;
  }

  .hero-content,
  .home-page .hero-content,
  .page-hero .container,
  body:not(.home-page) .page-hero .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .hero h1,
  .home-page .hero h1,
  .page-hero h1,
  body:not(.home-page) .page-hero h1 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    font-size: clamp(2.1rem, 10.4vw, 2.9rem) !important;
    line-height: 1.08 !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    text-wrap: balance;
  }

  .page-hero p,
  body:not(.home-page) .page-hero p,
  .hero-content .lead,
  .home-page .hero-content .lead {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 14px !important;
    font-size: 0.98rem !important;
  }

  .banner-slider,
  .page-hero .banner-slider,
  .home-page .banner-slider,
  body:not(.home-page) .page-hero .banner-slider {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 22px !important;
    overflow: hidden !important;
  }

  .banner-slider .slider-track {
    width: max-content !important;
    min-width: max-content !important;
  }

  .banner-slider .metric {
    min-width: 128px !important;
    max-width: 148px !important;
    padding: 12px 14px !important;
  }

  .banner-slider .metric strong {
    font-size: 1.14rem !important;
    white-space: normal !important;
  }

  .banner-slider .metric span {
    font-size: 0.84rem !important;
  }

  .hero-actions,
  .home-page .hero-actions,
  .section-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 22px !important;
  }

  .hero-actions .btn,
  .home-page .hero-actions .btn,
  .section-actions .btn,
  .section-actions button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 0 14px !important;
    font-size: 0.92rem !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .section-nav,
  body:not(.home-page) .section-nav,
  .services-hero + .section-nav {
    top: 82px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .section-nav .container,
  body:not(.home-page) .section-nav .container {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    min-height: 52px !important;
    margin-inline: auto !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overscroll-behavior-inline: contain !important;
    scrollbar-width: none !important;
  }

  .section-nav .container::-webkit-scrollbar {
    display: none !important;
  }

  .section-nav a,
  body:not(.home-page) .section-nav a {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 420px) {
  .site-header > .container,
  .home-page .site-header > .container,
  .hero .container,
  .home-page .hero .container,
  .page-hero .container,
  body:not(.home-page) .page-hero .container {
    width: calc(100% - 22px) !important;
    max-width: calc(100% - 22px) !important;
  }

  .site-header .brand img,
  .home-page .brand img {
    width: clamp(120px, 40vw, 148px) !important;
    height: 38px !important;
  }

  .nav-toggle,
  .home-page .nav-toggle {
    flex-basis: 46px !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
  }

  .hero h1,
  .home-page .hero h1,
  .page-hero h1,
  body:not(.home-page) .page-hero h1 {
    font-size: clamp(1.95rem, 10vw, 2.55rem) !important;
  }
}

/* Active final service-card system: premium abstract glassmorphism */
#home-services .premium-service-tiles,
.premium-service-tiles.services-page-cards,
.service-benefit-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
  align-items: stretch !important;
}

#home-services .premium-service-tiles .service-tile,
.premium-service-tiles.services-page-cards .service-tile,
.premium-service-tiles .service-tile[data-service-card],
.service-benefit-box {
  position: relative !important;
  isolation: isolate !important;
  min-height: 360px !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 30px !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.78) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(241, 248, 255, 0.54)) padding-box,
    linear-gradient(135deg, var(--svc-a, var(--benefit-a, #1f6feb)), var(--svc-b, var(--benefit-b, #00bcd4))) border-box !important;
  box-shadow:
    0 30px 76px rgba(8, 31, 58, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
  backdrop-filter: blur(22px) saturate(155%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(155%) !important;
  transform: translateY(0) !important;
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease !important;
}

#home-services .premium-service-tiles .service-tile::before,
.premium-service-tiles.services-page-cards .service-tile::before,
.premium-service-tiles .service-tile[data-service-card]::before,
.service-benefit-box::before {
  content: "" !important;
  position: absolute !important;
  inset: 1px !important;
  width: auto !important;
  height: auto !important;
  border-radius: 23px !important;
  opacity: 1 !important;
  background:
    radial-gradient(circle at 18% 18%, var(--svc-c, rgba(31, 111, 235, 0.18)), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.9), transparent 17%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.3)) !important;
  transform: none !important;
  z-index: -2 !important;
}

#home-services .premium-service-tiles .service-tile::after,
.premium-service-tiles.services-page-cards .service-tile::after,
.premium-service-tiles .service-tile[data-service-card]::after,
.service-benefit-box::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  border-radius: inherit !important;
  background: linear-gradient(110deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.82) 48%, transparent 58%, transparent 100%) !important;
  transform: translateX(-135%) skewX(-10deg) !important;
  transition: transform 700ms ease !important;
  pointer-events: none !important;
  z-index: 3 !important;
}

#home-services .premium-service-tiles .service-tile:hover,
.premium-service-tiles.services-page-cards .service-tile:hover,
.premium-service-tiles .service-tile[data-service-card]:hover,
.service-benefit-box:hover {
  transform: translateY(-12px) !important;
  border-color: rgba(255, 255, 255, 0.96) !important;
  box-shadow:
    0 40px 96px rgba(8, 31, 58, 0.17),
    0 0 48px color-mix(in srgb, var(--svc-a, var(--benefit-a, #1f6feb)) 24%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.94) !important;
}

#home-services .premium-service-tiles .service-tile:hover::after,
.premium-service-tiles.services-page-cards .service-tile:hover::after,
.premium-service-tiles .service-tile[data-service-card]:hover::after,
.service-benefit-box:hover::after {
  transform: translateX(135%) skewX(-10deg) !important;
}

.service-abstract,
.benefit-visual {
  position: relative !important;
  width: 132px !important;
  height: 112px !important;
  display: block !important;
  margin: 0 0 4px !important;
  border-radius: 26px !important;
  background: linear-gradient(135deg, var(--svc-a, var(--benefit-a, #1f6feb)), var(--svc-b, var(--benefit-b, #00bcd4))) !important;
  box-shadow:
    0 22px 48px color-mix(in srgb, var(--svc-a, var(--benefit-a, #1f6feb)) 28%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.38) !important;
  transform: perspective(700px) rotateY(-10deg) !important;
  transition: transform 360ms ease, box-shadow 360ms ease !important;
}

.service-abstract::before,
.benefit-visual::before {
  content: "" !important;
  position: absolute !important;
  width: 58px !important;
  height: 12px !important;
  left: 22px !important;
  top: 24px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow:
    0 22px 0 rgba(255, 255, 255, 0.58),
    0 44px 0 rgba(255, 255, 255, 0.48) !important;
}

.service-abstract::after,
.benefit-visual::after {
  content: "" !important;
  position: absolute !important;
  width: 42px !important;
  height: 42px !important;
  right: -12px !important;
  top: 18px !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 8px solid rgba(255, 255, 255, 0.58) !important;
}

.service-abstract span::before,
.benefit-visual i::before {
  width: 44px !important;
  height: 44px !important;
  right: 18px !important;
  bottom: -12px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.12)) !important;
  transform: rotate(18deg) !important;
}

.service-abstract span::after,
.benefit-visual i::after {
  width: 20px !important;
  height: 68px !important;
  left: -8px !important;
  bottom: -12px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.16) !important;
  transform: rotate(34deg) !important;
}

.service-tile:hover .service-abstract,
.service-benefit-box:hover .benefit-visual {
  transform: perspective(700px) rotateX(7deg) rotateY(-16deg) translateY(-4px) !important;
}

#home-services .premium-service-tiles .service-tile h3,
.premium-service-tiles.services-page-cards .service-tile h3,
.premium-service-tiles .service-tile[data-service-card] h3,
.service-benefit-box h3 {
  position: relative !important;
  z-index: 2 !important;
  min-height: 0 !important;
  margin: 0 !important;
  color: var(--navy) !important;
  font-size: clamp(1.24rem, 1.65vw, 1.6rem) !important;
  line-height: 1.16 !important;
}

#home-services .premium-service-tiles .service-tile p,
.premium-service-tiles.services-page-cards .service-tile p,
.premium-service-tiles .service-tile[data-service-card] p,
.service-benefit-box p {
  position: relative !important;
  z-index: 2 !important;
  min-height: 0 !important;
  margin: 0 !important;
  color: #40566f !important;
  font-size: 0.98rem !important;
  line-height: 1.6 !important;
  opacity: 1 !important;
  transform: none !important;
}

.tile-more,
#home-services .tile-more,
.benefit-card-cta {
  position: relative !important;
  z-index: 2 !important;
  width: fit-content !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 4px 0 0 !important;
  color: var(--navy) !important;
  font-size: 0.8rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
}

.tile-more::after,
.benefit-card-cta::after {
  content: "" !important;
  width: 38px !important;
  height: 3px !important;
  border-radius: 99px !important;
  background: linear-gradient(90deg, var(--svc-a, var(--benefit-a, #1f6feb)), var(--svc-b, var(--benefit-b, #00bcd4))) !important;
  transition: width 260ms ease !important;
}

.service-tile:hover .tile-more::after,
.service-benefit-box:hover .benefit-card-cta::after {
  width: 58px !important;
}

@media (max-width: 1024px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards,
  .service-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards,
  .service-benefit-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #home-services .premium-service-tiles .service-tile,
  .premium-service-tiles.services-page-cards .service-tile,
  .premium-service-tiles .service-tile[data-service-card],
  .service-benefit-box {
    min-height: auto !important;
    padding: 24px !important;
    border-radius: 20px !important;
  }

  .service-abstract,
  .benefit-visual {
    width: 108px !important;
    height: 92px !important;
  }
}
/* EOF restore: homepage and Services listing remain original image cards */
#home-services .premium-service-tiles,
.premium-service-tiles.services-page-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

#home-services .premium-service-tiles .service-tile,
.premium-service-tiles.services-page-cards .service-tile {
  height: 300px !important;
  min-height: 300px !important;
  display: grid !important;
  grid-template-rows: 1fr auto !important;
  gap: 0 !important;
  padding: 0 !important;
  border-radius: 18px !important;
  border: 1px solid rgba(11, 31, 58, 0.08) !important;
  background: #ffffff !important;
  box-shadow: 0 18px 46px rgba(11, 31, 58, 0.11) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

#home-services .service-thumb,
.premium-service-tiles.services-page-cards .service-thumb {
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#home-services .service-thumb img,
.premium-service-tiles.services-page-cards .service-thumb img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}

#home-services .service-abstract,
.premium-service-tiles.services-page-cards .service-abstract,
#home-services .tile-more,
.premium-service-tiles.services-page-cards .tile-more,
#home-services .service-tile p,
.premium-service-tiles.services-page-cards .service-tile p {
  display: none !important;
}

#home-services .premium-service-tiles .service-tile h3,
.premium-service-tiles.services-page-cards .service-tile h3 {
  min-height: 86px !important;
  margin: 0 !important;
  padding: 24px 26px 26px !important;
  display: flex !important;
  align-items: center !important;
  color: var(--navy) !important;
  background: #ffffff !important;
  font-size: 1.08rem !important;
  line-height: 1.25 !important;
}

@media (max-width: 1100px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  #home-services .premium-service-tiles,
  .premium-service-tiles.services-page-cards {
    grid-template-columns: 1fr !important;
  }
}
