/* Devzone IT ? logo-aligned brand colors */
:root {
  --cg-cyan: #00b4ff;
  --cg-blue: #0077ff;
  --cg-blue-deep: #0052f5;
  --cg-orange: #0077ff;
  --cg-orange-dark: #0052f5;
  --cg-navy: #0a1848;
  --cg-navy-2: #10205c;
  --cg-dark: #060b1c;
  --cg-ink: #060b1c;
  --cg-text: #5a6478;
  --cg-heading: #0a1848;
  --cg-white: #ffffff;
  --cg-light: #f2f6ff;
  --cg-border: #dde5f5;
  --cg-font: "Fira Sans", system-ui, sans-serif;
  --cg-container: 1200px;
  --cg-radius: 8px;
  --cg-shadow: 0 10px 40px rgba(0, 119, 255, 0.1);
  --cg-grad: linear-gradient(135deg, #00b4ff 0%, #0077ff 52%, #0052f5 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--cg-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cg-text);
  background: var(--cg-white);
  -webkit-font-smoothing: antialiased;
}

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

/* Soft content / image protection (forms stay usable) — toggle via admin */
body.cg-protect-content {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
body.cg-protect-content img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}
body.cg-protect-content input,
body.cg-protect-content textarea,
body.cg-protect-content select,
body.cg-protect-content [contenteditable="true"],
body.cg-protect-content .allow-select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--cg-font);
  color: var(--cg-heading);
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2rem, var(--cg-container));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-light {
  background: var(--cg-light);
}

.section-dark {
  background: var(--cg-navy);
  color: #c9c9d6;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--cg-white);
}

.eyebrow {
  display: inline-block;
  color: var(--cg-orange);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 42px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 2px;
  background: var(--cg-orange);
  transform: translateY(-50%);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 18px;
}

.section-title span {
  color: var(--cg-orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  background: linear-gradient(135deg, #22ccff 0%, #0077ff 52%, #0055ff 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 119, 255, 0.38);
  background: linear-gradient(135deg, #3ad4ff 0%, #1a85ff 52%, #0060ff 100%);
}

.btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.btn-outline {
  background: #fff;
  border-color: rgba(0, 119, 255, 0.28);
  color: var(--cg-blue);
  box-shadow: 0 4px 14px rgba(0, 119, 255, 0.1);
}

.btn-outline:hover {
  background: linear-gradient(135deg, #22ccff 0%, #0077ff 52%, #0055ff 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 119, 255, 0.34);
  filter: none;
}

.btn-dark {
  background: linear-gradient(135deg, #0b1220, #16325c);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.28);
}

.btn-dark:hover {
  background: linear-gradient(135deg, #22ccff 0%, #0077ff 52%, #0055ff 100%);
  color: #fff;
  filter: none;
}

/* Header — fixed flush to the top on every page */
.site-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  margin: 0;
  padding: 0;
  background: #fff;
  box-shadow: none;
  overflow: visible;
}

.admin-bar .site-chrome {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-chrome {
    top: 46px;
  }
}

.site-header {
  position: relative;
  z-index: 1000;
  margin: 0;
  padding: 0;
  background: #fff;
  box-shadow: none;
  overflow: visible;
}

.site-header .header-main {
  position: relative;
  z-index: 50;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 8px 30px rgba(10, 24, 72, 0.06);
  overflow: visible;
  transition: box-shadow 0.28s ease;
}

.site-header.is-scrolled .header-main {
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: 0 10px 32px rgba(7, 11, 22, 0.1);
}

.site-header.is-scrolled .header-inner {
  min-height: 55px;
}

/* Reserves space so content is not hidden under the fixed header */
.header-offset {
  height: 55px;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  pointer-events: none;
}

.admin-bar .header-offset {
  height: 72px;
}

/* Inner pages: no spacer gap under the header (hero provides top padding) */
body:not(.home) .header-offset,
body.admin-bar:not(.home) .header-offset {
  height: 0;
}

.header-top {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--cg-navy) 0%, var(--cg-navy-2) 100%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.header-spacer {
  display: none;
  width: 100%;
}

.header-spacer.is-on {
  display: block;
}

@keyframes cgHeaderIn {
  from { transform: translateY(-8px); opacity: 0.92; }
  to { transform: none; opacity: 1; }
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 1rem;
  margin-top: -25px;
}

.header-top-left,
.header-top-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.header-top a {
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.header-top a:hover {
  color: var(--cg-cyan);
}

.header-top-sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.header-top-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-socials .social-icon {
  width: 28px;
  height: 28px;
}

.header-socials .si-fb { background: #1877f2; }
.header-socials .si-ln { background: #0a66c2; }
.header-socials .si-ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.header-socials .si-x { background: #1d1d1d; }
.header-socials .si-yt { background: #ff0000; }

.header-socials a:hover {
  color: #fff;
}

.header-socials a:hover .social-icon {
  transform: translateY(-2px);
}

.header-main {
  background: #fff;
  border-bottom: 1px solid rgba(226, 232, 245, 0.9);
  overflow: visible;
  position: relative;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 65px;
  gap: 1.25rem;
}

.site-logo {
  flex-shrink: 0;
}

.site-logo img {
  height: 46px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
}

.nav-desktop {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-primary > li {
  position: relative;
}

.nav-primary > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 13px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--cg-heading);
  border-radius: 8px;
  position: relative;
}

.nav-primary > li > a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--cg-orange);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-chevron {
  opacity: 0.55;
  transition: transform 0.2s ease;
}

.nav-primary > li:hover > a .nav-chevron,
.nav-primary > li.is-active > a .nav-chevron,
.nav-primary > li.has-mega.is-open > a .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-primary > li > a:hover,
.nav-primary > li.current-menu-item > a,
.nav-primary > li.is-active > a,
.nav-primary > li.has-mega.is-open > a {
  color: var(--cg-orange);
  background: rgba(0, 119, 255, 0.06);
}

.nav-primary > li > a:hover::after,
.nav-primary > li.is-active > a::after,
.nav-primary > li.has-mega.is-open > a::after {
  transform: scaleX(1);
}

.nav-primary .sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 275px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(10, 15, 44, 0.12);
  border: 1px solid var(--cg-border);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
  z-index: 20;
}

.nav-primary > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-primary .sub-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cg-heading);
  border-radius: 8px;
}

.nav-primary .sub-menu a:hover {
  color: var(--cg-orange);
  background: var(--cg-light);
}

/* Mega menus — shared + variants */
.nav-primary > li.has-mega {
  position: static;
}

.dz-mega {
  position: absolute;
  left: 50%;
  top: 100%;
  width: min(1320px, calc(100vw - 3rem));
  transform: translate(-50%, 10px);
  display: grid;
  grid-template-columns: 280px 1fr;
  background: #fff;
  border: 1px solid #e6ebf4;
  border-radius: 0px;
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.04),
    0 28px 64px rgba(10, 24, 72, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 40;
  overflow: visible;
  margin-top: 0px;
}

/* Invisible hit bridge so cursor can travel from nav link into the panel */
.dz-mega::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}

.dz-mega::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cg-cyan), var(--cg-blue), #0055ff);
  z-index: 2;
  pointer-events: none;
}

.dz-mega-products {
  grid-template-columns: 300px 1fr;
}

.dz-mega-products--single {
  grid-template-columns: 280px 1fr;
}

.dz-mega-product-card {
  padding: 8px 4px 4px;
}

.dz-mega-product-card strong {
  display: block;
  margin: 8px 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--cg-heading);
}

.dz-mega-product-card > p {
  margin: 0;
  color: #5c6578;
  line-height: 1.55;
  max-width: 38em;
}

.dz-mega-product-caps {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dz-mega-product-caps li {
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4ff;
  font-size: 12px;
  font-weight: 650;
  color: var(--cg-heading);
}

.dz-mega-product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.dz-mega-product-links a {
  font-size: 13px;
  font-weight: 700;
  color: var(--cg-blue);
  text-decoration: none;
}

.dz-mega-product-links a:hover {
  text-decoration: underline;
}

.dz-mega-industries {
  grid-template-columns: 250px 1fr;
}

.dz-mega-ind-kicker {
  margin: 16px 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}

.dz-mega-ind-kicker:first-of-type {
  margin-top: 2px;
}

.dz-mega-ind-targets {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
}

.dz-mega-ind-targets li {
  position: relative;
  padding: 4px 0 4px 12px;
  color: #445066;
  font-size: 13px;
  line-height: 1.4;
}

.dz-mega-ind-targets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 119, 255, 0.35);
}

.dz-mega-offers {
  grid-template-columns: 260px 1fr;
}

.dz-mega-aside-offers .dz-mega-all {
  margin-top: 16px;
  padding-top: 11px;
  border-top: 0;
}

.dz-mega-aside-cases .dz-mega-all {
  margin-top: 16px;
  padding-top: 11px;
  border-top: 0;
}

.dz-mega-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dz-mega-offer {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 4px;
  padding: 16px 16px 16px 14px;
  border-radius: 14px;
  border: 1px solid #e8eef6;
  background: #fafbfd;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.dz-mega-offer::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cg-cyan), var(--cg-blue));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.dz-mega-offer:hover {
  background: #fff;
  border-color: rgba(0, 119, 255, 0.28);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.dz-mega-offer:hover::before {
  opacity: 1;
}

.dz-mega-offer-num {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 119, 255, 0.12), rgba(34, 204, 255, 0.06));
  border: 1px solid rgba(0, 119, 255, 0.14);
  color: var(--cg-blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.dz-mega-offer strong {
  color: var(--cg-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.dz-mega-offer em {
  grid-column: 2;
  font-style: normal;
  color: #64748b;
  font-size: 12.5px;
  line-height: 1.45;
}

.dz-mega-aside-industries .dz-mega-lead {
  margin-bottom: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.dz-mega-cases {
  grid-template-columns: 260px 1fr;
}

.dz-mega-portfolio {
  grid-template-columns: 220px 1fr;
  max-height: min(78vh, 720px);
  overflow: visible;
  align-items: stretch;
  width: min(1380px, calc(100vw - 1.5rem));
}

.dz-mega-portfolio .dz-mega-aside {
  overflow: auto;
}

.dz-mega-portfolio .dz-mega-main {
  overflow: auto;
  max-height: inherit;
  overscroll-behavior: contain;
}

.dz-mega-portfolio .dz-mega-cols-5 {
  align-items: start;
}

.dz-mega-portfolio .dz-mega-col {
  height: auto;
}

.dz-mega-portfolio .dz-mega-block ul {
  margin: 0;
  padding: 0;
}

.dz-mega-portfolio .dz-mega-block li + li {
  margin-top: 6px;
}

.dz-mega-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.dz-mega-portfolio .dz-mega-col-title a {
  color: inherit;
  text-decoration: none;
}

.dz-mega-portfolio .dz-mega-col-title a:hover {
  color: var(--cg-blue);
}

.dz-mega-portfolio .dz-mega-count {
  margin-left: auto;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: var(--cg-blue);
  background: #eef4ff;
  border-radius: 999px;
  padding: 2px 8px;
}

.dz-mega-portfolio .dz-mega-col-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dz-mega-portfolio .dz-mega-block ul a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.dz-mega-portfolio .dz-mega-block ul a em {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
}

.dz-mega-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-height: min(420px, 62vh);
  overflow: auto;
  padding-right: 4px;
}

.dz-mega-case-item {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 3px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #e8eef6;
  background: #fafbfd;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.dz-mega-case-item:hover {
  background: #fff;
  border-color: rgba(0, 119, 255, 0.28);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.dz-mega-case-num {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 119, 255, 0.12), rgba(34, 204, 255, 0.06));
  border: 1px solid rgba(0, 119, 255, 0.14);
  color: var(--cg-blue);
  font-size: 12px;
  font-weight: 750;
}

.dz-mega-case-item strong {
  color: var(--cg-heading);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.dz-mega-case-item em {
  grid-column: 2;
  font-style: normal;
  color: #64748b;
  font-size: 12px;
  line-height: 1.4;
}

.dz-mega-case-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dz-mega-case-list li + li {
  margin-top: 12px;
}

.dz-mega-case {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 10px;
  color: inherit;
}

.dz-mega-case:hover {
  background: #fff;
}

.dz-mega-case-thumb {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 119, 255, 0.12), rgba(34, 204, 255, 0.06));
  border: 1px solid rgba(0, 119, 255, 0.14);
  color: var(--cg-blue);
  font-size: 16px;
  font-weight: 700;
}

.dz-mega-case-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dz-mega-case-body strong {
  color: var(--cg-heading);
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.35;
}

.dz-mega-case-body em {
  font-style: normal;
  color: #64748b;
  font-size: 12.5px;
  line-height: 1.45;
}

.dz-mega-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 40px;
}

.dz-mega-resources {
  grid-template-columns: minmax(280px, 1.15fr) 1fr 1fr;
  gap: 0;
}

.dz-mega-feat {
  position: relative;
  padding: 30px 28px 26px;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(0, 119, 255, 0.06), transparent 60%),
    #f7f9fc;
  border-right: 1px solid #e6ebf4;
}

.dz-mega-feat h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--cg-heading);
}

.dz-mega-feat .dz-mega-lead {
  margin: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.dz-mega-feature-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e6ebf4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dz-mega-feature-card:hover {
  border-color: rgba(0, 119, 255, 0.28);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.dz-mega-feature-media {
  flex: 0 0 96px;
  width: 96px;
  height: 68px;
  overflow: hidden;
  border-radius: 10px;
  background: #eef3fa;
}

.dz-mega-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dz-mega-feature-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 2px;
}

.dz-mega-feature-title {
  color: var(--cg-heading);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.dz-mega-feature-title:hover {
  color: var(--cg-blue);
}

.dz-mega-feature-link {
  color: var(--cg-blue);
  font-size: 13px;
  font-weight: 650;
}

.dz-mega-feature-link:hover {
  color: #0055ff;
}

.dz-mega-resources > .dz-mega-col {
  padding: 24px 20px 22px;
  background: transparent;
  border: 0;
}

.dz-mega-resources > .dz-mega-col + .dz-mega-col {
  border-left: 1px solid #e6ebf4;
  border-radius: 0;
}

.dz-mega-nav-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 20px 20px;
  background: #fff;
  border-left: 1px solid #e6ebf4;
  min-width: 0;
}

.dz-mega-nav-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef2f7;
}

.dz-mega-nav-num {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0, 119, 255, 0.12), rgba(34, 204, 255, 0.06));
  border: 1px solid rgba(0, 119, 255, 0.16);
  color: var(--cg-blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.dz-mega-nav-head strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cg-heading);
  line-height: 1.25;
}

.dz-mega-nav-head em {
  display: block;
  margin-top: 3px;
  font-style: normal;
  font-size: 12px;
  color: #64748b;
  line-height: 1.35;
}

.dz-mega-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.dz-mega-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  margin: 0 -4px;
  border-radius: 10px;
  color: #445066;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.dz-mega-nav-list a svg {
  flex-shrink: 0;
  opacity: 0;
  color: var(--cg-blue);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.dz-mega-nav-list a:hover {
  color: var(--cg-blue);
  background: rgba(0, 119, 255, 0.05);
}

.dz-mega-nav-list a:hover svg {
  opacity: 1;
  transform: translateX(2px);
}

.dz-mega-nav-list a.is-cta {
  margin-top: 6px;
  border: 1px solid rgba(0, 119, 255, 0.16);
  background: linear-gradient(180deg, rgba(0, 119, 255, 0.08), rgba(34, 204, 255, 0.04));
  color: var(--cg-blue);
  font-weight: 700;
}

.dz-mega-nav-list a.is-cta svg {
  opacity: 0.7;
}

.dz-mega-nav-list a.is-cta:hover {
  background: rgba(0, 119, 255, 0.1);
  border-color: rgba(0, 119, 255, 0.28);
}

.dz-mega-nav-list a.is-cta:hover svg {
  opacity: 1;
}

.nav-primary > li.has-mega.is-open > .dz-mega,
.nav-primary > li.has-mega:hover > .dz-mega,
.nav-primary > li.has-mega:focus-within > .dz-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dz-mega-aside {
  position: relative;
  padding: 30px 24px 26px;
  background:
    radial-gradient(ellipse 80% 55% at 0% 0%, rgba(0, 119, 255, 0.08), transparent 55%),
    linear-gradient(180deg, #f4f7fc 0%, #eef3f9 100%);
  border-right: 1px solid #e6ebf4;
  border-radius: 18px 0 0 18px;
  overflow: auto;
}

.dz-mega-aside-products {
  display: flex;
  flex-direction: column;
}

.dz-mega-main {
  padding: 22px 22px 18px;
  background: #f8fafc;
  border-radius: 0 18px 18px 0;
  overflow: auto;
}

.dz-mega-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cg-blue);
}

.dz-mega-aside h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--cg-heading);
}

.dz-mega-lead {
  margin: 0 0 20px;
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.55;
}

.dz-mega-aside-products .dz-mega-lead {
  margin-bottom: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.dz-mega-testi {
  margin-top: 22px;
}

.dz-mega-testi-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.dz-mega-testi-head span {
  font-size: 15px;
  font-weight: 700;
  color: var(--cg-heading);
}

.dz-mega-testi-head a {
  font-size: 13px;
  font-weight: 650;
  color: var(--cg-blue);
  white-space: nowrap;
}

.dz-mega-testi-head a:hover {
  color: #0055ff;
}

.dz-mega-testi blockquote {
  margin: 0;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.dz-mega-testi blockquote p {
  margin: 0 0 12px;
  color: #445066;
  font-size: 13px;
  line-height: 1.55;
}

.dz-mega-testi footer {
  font-size: 12.5px;
  font-weight: 650;
  color: var(--cg-heading);
}

.dz-mega-cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.dz-mega-cats li + li {
  margin-top: 0;
}

.dz-mega-cats a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--cg-heading);
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.dz-mega-cats a span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #fff;
  border: 1px solid rgba(0, 119, 255, 0.12);
  color: var(--cg-blue);
  font-size: 11px;
  font-weight: 750;
  flex-shrink: 0;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.dz-mega-cats a:hover {
  background: #fff;
  border-color: rgba(0, 119, 255, 0.18);
  color: var(--cg-blue);
  transform: translateX(2px);
}

.dz-mega-cats a:hover span {
  background: linear-gradient(145deg, var(--cg-blue), #0055ff);
  border-color: transparent;
  color: #fff;
}

.dz-mega-cols {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.dz-mega-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dz-mega-col {
  padding: 14px 14px 12px;
  background: #fff;
  border: 1px solid #e6ebf4;
  border-radius: 14px;
  min-width: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dz-mega-col:hover {
  border-color: rgba(0, 119, 255, 0.22);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.dz-mega-block + .dz-mega-block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #eef2f7;
}

.dz-mega-col-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef2f7;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--cg-heading);
}

.dz-mega-col-title span {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0, 119, 255, 0.12), rgba(34, 204, 255, 0.06));
  border: 1px solid rgba(0, 119, 255, 0.16);
  color: var(--cg-blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.02em;
  box-shadow: none;
}

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

.dz-mega-col li + li {
  margin-top: 1px;
}

.dz-mega-col a {
  display: block;
  padding: 6px 8px;
  margin: 0 -8px;
  border-radius: 8px;
  color: #445066;
  font-size: 13px;
  line-height: 1.35;
  transition: color 0.15s ease, background 0.15s ease;
}

.dz-mega-col a:hover {
  color: var(--cg-blue);
  background: rgba(0, 119, 255, 0.05);
}

.dz-mega-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid #e6ebf4;
  background: #fff;
  color: var(--cg-heading);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: none;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, gap 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}

.dz-mega-all:hover {
  color: var(--cg-blue);
  border-color: rgba(0, 119, 255, 0.28);
  background: rgba(0, 119, 255, 0.05);
  gap: 12px;
}

.dz-mega-all--primary,
.dz-mega-aside .dz-mega-all,
.dz-mega-aside-offers .dz-mega-all,
.dz-mega-aside-cases .dz-mega-all,
.dz-mega-aside-industries .dz-mega-all {
  width: fit-content;
  border-color: transparent;
  background: linear-gradient(135deg, #22ccff 0%, #0077ff 52%, #0055ff 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.32);
}

.dz-mega-all--primary:hover,
.dz-mega-aside .dz-mega-all:hover,
.dz-mega-aside-offers .dz-mega-all:hover,
.dz-mega-aside-cases .dz-mega-all:hover,
.dz-mega-aside-industries .dz-mega-all:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #3ad4ff 0%, #1a85ff 52%, #0060ff 100%);
  filter: none;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(0, 119, 255, 0.4);
  transform: translateY(-1px);
}

.dz-mega-main .dz-mega-all:not(.dz-mega-all--primary) {
  background: #fff;
  border-color: #e6ebf4;
  color: var(--cg-heading);
  box-shadow: none;
}

.dz-mega-main .dz-mega-all:not(.dz-mega-all--primary):hover {
  color: var(--cg-blue);
  border-color: rgba(0, 119, 255, 0.28);
  background: rgba(0, 119, 255, 0.05);
  filter: none;
  box-shadow: none;
  transform: none;
}

.dz-mega-main .dz-mega-all--primary {
  background: linear-gradient(135deg, #22ccff 0%, #0077ff 52%, #0055ff 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.32);
}

.dz-mega-main .dz-mega-all--primary:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #3ad4ff 0%, #1a85ff 52%, #0060ff 100%);
  box-shadow: 0 12px 26px rgba(0, 119, 255, 0.4);
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .dz-mega,
  .dz-mega-products,
  .dz-mega-industries,
  .dz-mega-offers,
  .dz-mega-cases {
    grid-template-columns: 240px 1fr;
  }
  .dz-mega-offer-grid,
  .dz-mega-case-grid {
    grid-template-columns: 1fr;
  }
  .dz-mega-resources {
    grid-template-columns: 1fr 1fr;
  }
  .dz-mega-feat {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid #e6ebf4;
  }
  .dz-mega-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dz-mega-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dz-mega-cols-4,
  .dz-mega-cols-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dz-mega-portfolio {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .dz-mega {
    display: none;
  }
  .header-offset {
    height: 64px;
  }
  body:not(.home) .header-offset,
  body.admin-bar:not(.home) .header-offset {
    height: 0;
  }
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cg-cyan) 0%, var(--cg-blue) 55%, var(--cg-blue-deep) 100%);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  border: 0;
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.28);
}

.btn-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 119, 255, 0.35);
  color: #fff !important;
  background: var(--cg-grad);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--cg-light);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cg-heading);
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.2s;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #060a1f 0%, #0d1740 45%, #0a2a6e 100%);
  color: var(--cg-white);
  padding: 30px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero .eyebrow {
  color: var(--cg-cyan);
}

.hero .eyebrow::before {
  background: var(--cg-orange);
}

.hero h1 {
  color: var(--cg-white);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--cg-orange);
}

.hero p {
  color: #d7d7e5;
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 28px;
}

.hero-visual {
  position: relative;
}

.hero-visual img.hero-main {
  width: 100%;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

.hero-shape.s1 {
  width: 180px;
  top: -20px;
  left: -30px;
  animation: floaty 5s ease-in-out infinite;
}

.hero-shape.s2 {
  width: 140px;
  bottom: 10px;
  right: -20px;
  animation: floaty 6s ease-in-out infinite reverse;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Services */
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.services-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

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

/* Services catalog ? professional cards with demo images */
.services-catalog-section {
  padding-top: 40px;
  padding-bottom: 80px;
  background:
    radial-gradient(1200px 420px at 8% -10%, rgba(0, 119, 255, 0.08), transparent 60%),
    radial-gradient(900px 380px at 95% 8%, rgba(34, 204, 255, 0.08), transparent 55%),
    linear-gradient(180deg, #f7f9ff 0%, #ffffff 42%, #ffffff 100%);
}

.services-intro {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.services-intro .section-title {
  margin-left: auto;
  margin-right: auto;
}

.services-intro-lead {
  color: var(--cg-text);
  font-size: 1.06rem;
  line-height: 1.75;
  margin: 14px auto 24px;
  max-width: 720px;
}

.services-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.services-stat {
  min-width: 140px;
  background: #fff;
  border: 1px solid rgba(226, 232, 245, 0.95);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 22px rgba(10, 15, 44, 0.04);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.services-stat strong {
  font-size: 1.8rem;
  color: var(--cg-heading);
  line-height: 1.1;
}

.services-stat span {
  color: #7a8299;
  font-size: 13px;
  font-weight: 500;
}

.services-toolbar {
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 245, 0.95);
  border-radius: 18px;
  padding: 20px 20px 16px;
  box-shadow: 0 10px 30px rgba(10, 15, 44, 0.04);
  backdrop-filter: blur(6px);
}

.services-toolbar-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.services-toolbar-label {
  font-weight: 700;
  color: var(--cg-heading);
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.services-toolbar-hint {
  margin: 0;
  color: #8a90a5;
  font-size: 13px;
}

.services-search-wrap {
  position: relative;
  width: min(100%, 360px);
}

.services-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a90a5;
  pointer-events: none;
}

.services-search {
  width: 100%;
  border: 1px solid var(--cg-border);
  border-radius: 12px;
  padding: 12px 14px 12px 42px;
  font: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.services-search:focus {
  outline: none;
  border-color: rgba(0, 119, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 119, 255, 0.1);
}

.services-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-filter {
  border: 1px solid var(--cg-border);
  background: #fff;
  color: #4b5568;
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.svc-filter em {
  font-style: normal;
  opacity: 0.65;
  margin-left: 4px;
}

.svc-filter:hover {
  border-color: rgba(0, 119, 255, 0.35);
  color: var(--cg-orange);
  transform: translateY(-1px);
}

.svc-filter.is-active {
  background: linear-gradient(135deg, var(--cg-cyan), var(--cg-blue));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 119, 255, 0.25);
}

.svc-filter.is-active em {
  opacity: 0.9;
}

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

.svc-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 245, 0.95);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(10, 15, 44, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

/* display:flex above overrides HTML [hidden] ? force hide filtered cards */
.svc-card[hidden],
.svc-card.is-hidden {
  display: none !important;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(10, 15, 44, 0.12);
  border-color: rgba(0, 119, 255, 0.22);
}

.svc-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #dbe7ff, #eef4ff);
}

.svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.svc-card:hover .svc-media img {
  transform: scale(1.07);
}

.svc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 15, 44, 0.18));
  pointer-events: none;
}

.svc-featured {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(15, 23, 42, 0.88);
  border-radius: 999px;
  padding: 5px 10px;
  backdrop-filter: blur(4px);
}

.svc-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cg-orange);
  margin-bottom: 8px;
}

.svc-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--cg-heading);
  line-height: 1.35;
}

.svc-card h3 a {
  color: inherit;
  text-decoration: none;
}

.svc-card h3 a:hover {
  color: var(--cg-orange);
}

.svc-card p {
  margin: 0 0 18px;
  color: var(--cg-text);
  font-size: 0.94rem;
  line-height: 1.55;
  flex: 1;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--cg-orange);
  text-decoration: none;
  font-size: 0.92rem;
  margin-top: auto;
}

.svc-link svg {
  transition: transform 0.2s ease;
}

.svc-link:hover svg {
  transform: translateX(3px);
}

.services-empty {
  text-align: center;
  color: #6b7280;
  margin-top: 28px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px dashed var(--cg-border);
}

/* Clients */
.clients-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 48%, #ffffff 100%);
}

.clients-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.clients-lead {
  margin: 12px auto 0;
  color: var(--cg-text);
  line-height: 1.7;
}

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

.client-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 245, 0.95);
  border-radius: 14px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 118px;
  box-shadow: 0 8px 22px rgba(10, 15, 44, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(10, 15, 44, 0.1);
  border-color: rgba(0, 119, 255, 0.22);
}

.client-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eef4ff;
  border: 1px solid #dce7fb;
  color: var(--client-color, var(--cg-blue));
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.client-logo {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #f5f8fc;
  border: 1px solid #e6ebf4;
  overflow: hidden;
}

.client-logo img {
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
  filter: grayscale(0.2);
  opacity: 0.9;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.client-logo .client-initials {
  display: none;
  font-weight: 800;
  font-size: 14px;
  color: var(--cg-blue);
}

.client-logo.is-fallback img {
  display: none;
}

.client-logo.is-fallback .client-initials {
  display: grid;
}

.client-card:hover .client-logo img {
  filter: none;
  opacity: 1;
}

a.client-card {
  text-decoration: none;
  color: inherit;
}

.client-name {
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--cg-heading);
  text-align: center;
}

.clients-note {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: #7a8299;
  font-size: 13px;
  font-weight: 500;
}

.clients-note .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c5cbe0;
}

.service-card {
  background: var(--cg-white);
  border: 1px solid var(--cg-border);
  border-radius: 12px;
  padding: 28px 22px 24px;
  box-shadow: var(--cg-shadow);
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card--media {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 119, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 85, 255, 0.12);
}

.service-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #e8eef8;
}

.service-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  border-radius: 0 !important;
  margin: 0 !important;
  transition: transform 0.4s ease;
}

.service-card--media:hover .service-media img {
  transform: scale(1.06);
}

.service-media .num,
.service-card--media .num {
  position: absolute;
  left: 14px;
  bottom: 14px;
  margin: 0;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(10, 15, 44, 0.82);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  backdrop-filter: blur(4px);
}

.service-card .num {
  color: var(--cg-orange);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.service-body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card img,
.service-card .service-icon {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 16px;
  flex: 1;
}

.service-card .more {
  color: var(--cg-orange);
  font-weight: 600;
  font-size: 14px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img.main {
  border-radius: 12px;
  width: 100%;
}

.about-media .badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--cg-orange);
  color: #fff;
  padding: 16px 18px;
  border-radius: 8px;
  font-weight: 700;
  max-width: 220px;
  z-index: 2;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--cg-heading);
  font-weight: 500;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cg-orange);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.stat-card {
  background: var(--cg-white);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--cg-shadow);
}

.stat-card .value {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--cg-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .label {
  color: var(--cg-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

/* CEO */
.ceo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.ceo-photo {
  border-radius: 12px;
  overflow: hidden;
}

.ceo-quote {
  font-size: 1.2rem;
  color: var(--cg-heading);
  font-weight: 500;
  margin-bottom: 18px;
}

.ceo-quote.secondary {
  font-size: 1rem;
  color: var(--cg-text);
  font-weight: 400;
}

.ceo-name {
  margin-top: 24px;
}

.ceo-name strong {
  display: block;
  color: var(--cg-heading);
  font-size: 1.15rem;
}

.ceo-name span {
  color: var(--cg-orange);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Events */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.event-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
  background: #111;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  transition: transform 0.4s ease;
}

.event-card:hover img {
  transform: scale(1.06);
}

.event-card .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
}

.event-card .cap small {
  color: var(--cg-cyan);
  font-weight: 600;
}

/* Hiring */
.hiring-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.hire-card {
  background: var(--cg-white);
  border-radius: 10px;
  padding: 28px 22px;
  box-shadow: var(--cg-shadow);
  border-top: 3px solid var(--cg-orange);
}

.hire-card .step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 119, 255, 0.12);
  color: var(--cg-orange);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 14px;
}

.hire-card h3 {
  font-size: 1.1rem;
}

.why-join {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  background: #fff;
  color: var(--cg-text);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e7ebf3;
}

.why-join h3 {
  color: var(--cg-heading);
}

/* Career page */
.career-intro {
  padding-bottom: 48px;
}

.career-intro-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.career-intro-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.career-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.career-section-head .section-title {
  margin-bottom: 12px;
}

.career-hiring-grid {
  margin-bottom: 0;
}

.career-reqs .hire-card {
  border-top: 0;
  border: 1px solid rgba(226, 232, 245, 0.95);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(10, 15, 44, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.career-reqs .hire-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 15, 44, 0.08);
  border-color: rgba(0, 119, 255, 0.28);
}

.career-reqs .hire-card .step {
  width: 44px;
  height: 44px;
  font-size: 13px;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, rgba(34, 204, 255, 0.16), rgba(0, 119, 255, 0.14));
  color: var(--cg-orange);
}

.career-reqs .hire-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.career-reqs .hire-card p {
  margin: 0;
  color: var(--cg-text);
  font-size: 0.95rem;
  line-height: 1.65;
}

.career-why-wrap {
  padding-top: 12px;
  padding-bottom: 28px;
}

.career-why {
  position: relative;
  overflow: hidden;
  gap: 40px;
  padding: 44px 48px;
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(0, 180, 255, 0.08), transparent 55%),
    radial-gradient(360px 200px at 0% 100%, rgba(0, 119, 255, 0.05), transparent 50%),
    #f7f9fc;
  border: 1px solid #e6ebf4;
  border-radius: 22px;
  box-shadow: none;
}

.career-why-copy .eyebrow {
  margin-bottom: 12px;
  color: var(--cg-blue);
}

.career-why h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin: 0 0 14px;
  max-width: 18ch;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--cg-heading);
}

.career-why p {
  margin: 0;
  color: #5c6578;
  line-height: 1.75;
  max-width: 46ch;
  font-size: 1.02rem;
}

.career-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.career-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--cg-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  padding: 13px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e7ebf3;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.career-perks li:hover {
  border-color: rgba(0, 119, 255, 0.28);
  box-shadow: 0 8px 20px rgba(10, 24, 72, 0.05);
}

.career-perk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 0;
  border-radius: 8px;
  background: rgba(0, 119, 255, 0.08);
  color: var(--cg-blue);
}

.career-perks li svg {
  flex-shrink: 0;
  color: currentColor;
}

.career-job-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.career-job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid rgba(226, 232, 245, 0.95);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(10, 15, 44, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.career-job:hover {
  border-color: rgba(0, 119, 255, 0.28);
  box-shadow: 0 14px 32px rgba(10, 15, 44, 0.08);
  transform: translateY(-2px);
}

.career-job-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cg-orange);
  background: rgba(0, 119, 255, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.career-job-body h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.career-job-body p {
  margin: 0;
  color: var(--cg-text);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 58ch;
}

.career-job-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.career-empty {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 28px;
  border: 1px dashed var(--cg-border);
  border-radius: 14px;
  background: #fff;
}

.career-empty h3 {
  margin-bottom: 10px;
}

.career-empty p {
  margin: 0 0 20px;
  color: var(--cg-text);
}

.career-apply-section {
  padding-top: 70px;
}

.career-apply-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.career-apply-aside .section-title {
  margin-bottom: 14px;
}

.career-apply-aside > p {
  color: var(--cg-text);
  line-height: 1.7;
  margin-bottom: 28px;
}

.career-apply-notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.career-apply-notes li {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cg-border);
}

.career-apply-notes li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.career-apply-notes strong {
  display: block;
  color: var(--cg-heading);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.career-apply-notes span,
.career-apply-notes a {
  color: var(--cg-text);
  font-size: 15px;
}

.career-apply-notes a:hover {
  color: var(--cg-orange);
}

.career-apply-form-wrap {
  background: #fff;
  border: 1px solid rgba(226, 232, 245, 0.95);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 36px rgba(10, 15, 44, 0.06);
}

.career-form .cg-field input:focus,
.career-form .cg-field textarea:focus {
  outline: none;
  border-color: rgba(0, 119, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.12);
}

/* Skills */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.skill-row {
  margin-bottom: 22px;
}

.skill-row .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--cg-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

.bar {
  height: 8px;
  background: #ececf3;
  border-radius: 999px;
  overflow: hidden;
}

.bar > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--cg-cyan), var(--cg-orange), var(--cg-orange-dark));
  border-radius: inherit;
  transition: width 1.2s ease;
}

.exp-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--cg-orange);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}

.exp-badge strong {
  font-size: 2rem;
  line-height: 1;
}

/* Blog cards ? Latest News */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card,
.blog-card--news {
  background: var(--cg-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-card--news:hover {
  box-shadow: 0 12px 32px rgba(26, 26, 75, 0.1);
  transform: translateY(-4px);
}

.blog-card .thumb {
  aspect-ratio: 16 / 11;
  background: #eee;
  overflow: hidden;
  position: relative;
}

.blog-card .thumb-link {
  display: block;
  height: 100%;
}

.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--cg-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0.01em;
}

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

.blog-card h3 {
  font-size: 1.15rem;
  margin: 0 0 16px;
  line-height: 1.4;
}

.blog-card h3 a:hover {
  color: var(--cg-orange);
}

.blog-card .meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.blog-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 12px;
}

.blog-date svg {
  color: var(--cg-orange);
  flex-shrink: 0;
}

.blog-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #7a7a7a;
}

.author-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cg-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--cg-heading);
  white-space: nowrap;
}

.blog-readmore svg {
  color: var(--cg-orange);
}

.blog-readmore:hover {
  color: var(--cg-orange);
}

.btn-blog-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, #22ccff 0%, #0077ff 52%, #0055ff 100%);
  color: #fff;
  font-weight: 700;
  border: 0;
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.3);
}

.btn-blog-all:hover {
  background: linear-gradient(135deg, #3ad4ff 0%, #1a85ff 52%, #0060ff 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 119, 255, 0.38);
}

.btn-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--cg-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

/* Footer — same ink base as homepage hero */
.site-footer {
  margin-top: -35px;
  background:#03264a;
  color: rgba(255, 255, 255, 0.68);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer::before,
.site-footer::after {
  display: none;
}

/* Footer main */
.footer-main {
  padding: clamp(48px, 6vw, 72px) 0 clamp(36px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

.footer-grid-top {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 1.05fr 1.15fr;
  gap: 25px 25px;
  align-items: start;
}

@media (min-width: 901px) and (max-width: 1240px) {
  .footer-grid-top {
    grid-template-columns: 1.15fr 1fr 1fr 1.1fr;
    gap: 32px 28px;
  }
}

.footer-brand {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-col--about p {
  color: rgb(255, 255, 255);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 32ch;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
}

.footer-socials a {
  display: inline-flex;
  text-decoration: none;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.footer-socials a:hover .footer-social-icon {
  background: rgba(0, 119, 255, 0.18);
  border-color: rgba(34, 204, 255, 0.35);
  color: #fff;
  transform: translateY(-2px);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(34, 204, 255, 0.35);
  background: rgba(0, 119, 255, 0.12);
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, gap 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta:hover {
  gap: 11px;
  background: linear-gradient(145deg, var(--cg-blue), #0055ff);
  border-color: transparent;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(0, 119, 255, 0.28);
}

.site-footer h4 {
  color: #fff;
  font-size: 12px;
  margin: 4px 0 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.site-footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cg-blue), var(--cg-cyan));
}

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

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

.footer-links li {
  margin-bottom: 0;
}

.footer-links li + li {
  margin-top: 2px;
}

.footer-links li a {
  display: inline-flex;
  align-items: center;
  font-size: 14.5px;
  color: rgb(255, 255, 255);
  padding: 6px 0;
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease, padding-left 0.2s ease;
}

.footer-links li a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--cg-cyan);
  margin-right: 0;
  transition: width 0.2s ease, margin-right 0.2s ease;
}

.footer-links li a:hover {
  color: #fff;
  padding-left: 2px;
}

.footer-links li a:hover::before {
  width: 10px;
  margin-right: 8px;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgb(255, 255, 255);
  font-size: 14px;
  line-height: 1.45;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cg-cyan);
}

.footer-contact-label {
  display: block;
  font-size: 10.5px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
}

.footer-contact a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}

.footer-contact a:hover {
  color: var(--cg-cyan);
}

/* Footer bottom — same background as main footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  padding: 18px 0;
  font-size: 13px;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  margin: 0;
}

.footer-copy-brand {
  color: var(--cg-cyan);
  font-weight: 600;
  text-decoration: none;
}

.footer-copy-brand:hover {
  color: #fff;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--cg-cyan);
}

/* Social icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.basis-badge {
  margin-top: 10px;
  max-width: 160px;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cg-blue), #0055ff);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 119, 255, 0.4);
  transition: transform 0.2s, opacity 0.2s;
}

.scroll-top.is-visible {
  display: flex;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* Page hero / breadcrumb */
.page-hero {
  background: linear-gradient(135deg, #060a1f, #0a2a6e);
  color: #fff;
  padding: 70px 0 60px;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 10px;
}

.breadcrumb {
  color: #cfcfe0;
  font-size: 14px;
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb a:hover {
  color: var(--cg-orange);
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.cg-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--cg-heading);
  font-weight: 600;
  font-size: 14px;
}

.cg-field input,
.cg-field textarea,
.cg-field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--cg-border);
  border-radius: 6px;
  font: inherit;
  background: #fff;
}

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

.alert {
  padding: 14px 16px;
  border-radius: 6px;
  margin-bottom: 18px;
  background: #e8fff0;
  color: #146c2e;
  border: 1px solid #b7ebc6;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--cg-border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 18px 20px;
  font: inherit;
  font-weight: 600;
  color: var(--cg-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-item .answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--cg-text);
}

.faq-item.is-open .answer {
  display: block;
}

.faq-item.is-open button {
  color: var(--cg-orange);
}

/* Team ? professional profile cards */
.team-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fc 48%, #ffffff 100%);
  overflow: hidden;
}

.team-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.team-head .eyebrow {
  margin-bottom: 10px;
}

.team-head .section-title {
  margin-bottom: 14px;
}

.team-lead {
  margin: 0 auto;
  max-width: 560px;
  color: var(--cg-text);
  font-size: 1.02rem;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.team-card {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(226, 232, 245, 0.95);
  border-radius: 16px;
  padding: 22px 16px 20px;
  box-shadow: 0 10px 30px rgba(10, 15, 44, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(10, 15, 44, 0.1);
  border-color: rgba(0, 119, 255, 0.18);
}

.team-card .photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.team-card .photo {
  aspect-ratio: 1;
  width: min(100%, 160px);
  max-width: 160px;
  height: auto;
  border-radius: 50%;
  padding: 5px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #eef4ff 55%, #dce9fb 100%);
  box-shadow:
    0 0 0 1px rgba(0, 119, 255, 0.08),
    0 12px 28px rgba(10, 15, 44, 0.08);
}

.team-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.35s ease;
}

.team-card:hover .photo img {
  transform: scale(1.05);
}

.team-card .info {
  padding: 0;
}

.team-card h3 {
  font-size: 1.05rem;
  color: var(--cg-heading);
  margin: 0 0 6px;
  font-weight: 700;
}

.team-card .role {
  color: #8a90a5;
  font-weight: 500;
  font-size: 13px;
  margin: 0 0 12px;
}

.team-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.team-socials a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b7288;
  border-radius: 50%;
  background: #f4f7fc;
  border: 1px solid rgba(226, 232, 245, 0.9);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.team-socials a:hover {
  color: #fff;
  background: var(--cg-orange);
  border-color: var(--cg-orange);
  transform: translateY(-2px);
}

.team-socials a svg {
  display: block;
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    max-width: 360px;
    margin-inline: auto;
  }
}

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 36px;
}

.contact-info-card,
.contact-form-card {
  border-radius: 24px;
}

/* Login */
.login-wrap {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--cg-shadow);
}

.login-wrap .wp-login-form label {
  display: block;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--cg-heading);
}

.login-wrap input[type="text"],
.login-wrap input[type="password"] {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--cg-border);
  border-radius: 6px;
  font: inherit;
}

.login-wrap .button,
.login-wrap input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 12px 24px;
  border: 0;
  border-radius: 4px;
  background: var(--cg-orange);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.login-wrap .button:hover,
.login-wrap input[type="submit"]:hover {
  background: var(--cg-orange-dark);
}

.login-wrap .login-remember {
  margin: 12px 0;
  font-weight: 500;
}

/* Products */
.products-section {
  background: var(--cg-light);
}

.products-intro {
  text-align: center;
  max-width: 154ch;
  margin: 0 0 36px;
  color: var(--cg-text);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.product-card {
  background: #eef3fb;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  background: #e7eefb;
  box-shadow: 0 18px 40px rgba(10, 24, 72, 0.08);
}

.product-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dde7f7;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-tag {
  position: static;
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  background: var(--cg-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 0.01em;
}

.product-body {
  padding: 28px 26px 24px;
}

.product-body h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--cg-heading);
}

.product-body p {
  margin: 0 0 16px;
  color: var(--cg-text);
  font-size: 0.98rem;
  line-height: 1.6;
}

.product-caps {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-caps li {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  background: #fff;
  border: 1px solid #dbe3f0;
  border-radius: 999px;
  padding: 4px 10px;
}

.product-card--public .product-meta {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 4px;
}

.product-link-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--cg-ink);
  color: #fff !important;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-link-live:hover {
  background: var(--cg-blue);
  transform: translateY(-1px);
}

.product-link-company {
  font-size: 13px;
  font-weight: 650;
  color: var(--cg-blue) !important;
  text-decoration: none;
}

.product-link-company:hover {
  text-decoration: underline;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-meta strong {
  color: var(--cg-blue);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-go {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cg-ink);
  color: #fff !important;
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-go:hover {
  background: var(--cg-blue);
  transform: translateX(2px);
}

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

.gallery-card {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8eef8;
  box-shadow: 0 10px 28px rgba(10, 15, 44, 0.06);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 14px;
  background: linear-gradient(180deg, transparent, rgba(8, 16, 40, 0.78));
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gallery-card figcaption small {
  opacity: 0.8;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-card figcaption span {
  font-weight: 650;
  font-size: 0.98rem;
}

/* Content prose */
.content-prose {
  max-width: 760px;
}

.content-prose ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.content-prose li {
  margin-bottom: 0.4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.value-card {
  background: var(--cg-light);
  border-radius: 10px;
  padding: 24px;
}

.value-card h4 {
  color: var(--cg-orange);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--cg-border);
  padding: 8px 0 22px;
  box-shadow: 0 16px 30px rgba(10, 15, 44, 0.08);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-weight: 600;
  color: var(--cg-heading);
  border-bottom: 1px solid var(--cg-border);
}

.mobile-nav .sub a {
  padding-left: 14px;
  font-weight: 500;
  font-size: 14px;
  color: #5a6078;
}

.mobile-nav a.is-child {
  padding-left: 14px;
  font-weight: 500;
  font-size: 14px;
  color: #5a6078;
}

.mobile-nav-cta {
  margin-top: 10px;
  text-align: center;
  background: linear-gradient(135deg, var(--cg-cyan), var(--cg-blue));
  color: #fff !important;
  border: 0 !important;
  border-radius: 10px;
  padding: 14px 16px !important;
}

@media (max-width: 1100px) {
  .services-track {
    grid-template-columns: repeat(3, 1fr);
  }
  .hiring-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-desktop,
  .header-cta .btn-header-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-block;
  }
  .header-top-left .header-top-sep,
  .header-top-loc {
    display: none;
  }
  .nav-desktop {
    display: none;
  }
  .hero-grid,
  .about-grid,
  .ceo-grid,
  .skills-grid,
  .why-join,
  .career-why,
  .career-apply-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid-top {
    grid-template-columns: 1fr 1fr;
  }
  .events-grid,
  .blog-grid,
  .menu-grid,
  .products-grid,
  .gallery-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-track {
    grid-template-columns: 1fr 1fr;
  }
  .services-track--home {
    grid-template-columns: 1fr 1fr;
  }
  .services-catalog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .section {
    padding: 64px 0;
  }
}

@media (max-width: 600px) {
  .services-track,
  .services-track--home,
  .services-catalog-grid,
  .clients-grid,
  .events-grid,
  .blog-grid,
  .products-grid,
  .gallery-grid,
  .hiring-grid,
  .stats-grid,
  .values-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    justify-content: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .career-why {
    padding: 32px 24px;
  }

  .career-job {
    flex-direction: column;
    align-items: flex-start;
  }

  .career-job-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .career-apply-form-wrap {
    padding: 22px 18px;
  }
}
