:root {
  --page-max-width: 1280px;
  --container-width: 1168px;
  --nav-text: #0f172a;
  --muted: #475569;
  --subtle: #64748b;
  --line: #dbe3ef;
  --panel: #ffffff;
  --panel-soft: #f8fbff;
  --accent: #2563eb;
  --accent-dark: #0f172a;
  --surface: #f5f6f8;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--nav-text);
  display: block;
}

.clients-page,
.clients-page * {
  box-sizing: border-box;
}

.clients-page {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  background: #ffffff;
}

.site-header {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  position: relative;
  height: 103px;
  min-height: 103px;
  display: block;
  padding: 0;
  z-index: 120;
}

.logo-home-link {
  display: inline-block;
  position: absolute;
  left: 53px;
  top: 16px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo {
  width: 207px;
  height: 76px;
  object-fit: cover;
}

.site-nav {
  display: block;
}

.nav-link {
  position: absolute;
  top: 42px;
  width: 112px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  text-decoration: none;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
}

.site-nav .nav-link:nth-child(1) {
  left: 390px;
}

.site-nav .nav-link:nth-child(2) {
  left: 522px;
}

.site-nav .nav-link:nth-child(3) {
  left: 654px;
}

.site-nav .nav-link:nth-child(4) {
  left: 786px;
}

.nav-solutions-trigger {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-solutions-trigger::after {
  content: "▾";
  margin-left: 6px;
  font-size: 13px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav-solutions-trigger.is-open::after {
  transform: rotate(180deg);
}

.nav-solutions-trigger:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 4px;
  border-radius: 4px;
}

.solutions-mega-menu {
  position: absolute;
  left: 50%;
  top: 88px;
  transform: translateX(-50%) translateY(8px);
  width: min(1180px, calc(100vw - 32px));
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 140;
}

.solutions-mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.solutions-mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.solutions-mega-title {
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.solutions-mega-list {
  display: grid;
  gap: 14px;
}

.solutions-mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(30, 41, 59, 0.76);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s ease;
}

.solutions-mega-link .material-symbols-outlined {
  color: rgba(236, 91, 19, 0.78);
  font-size: 20px;
}

.solutions-mega-link:hover {
  color: #ec5b13;
}

.solutions-mega-link-industry:hover {
  color: #2563eb;
}

.solutions-mega-link-industry .material-symbols-outlined {
  color: #2563eb;
}

.solutions-platform-list {
  display: grid;
  gap: 14px;
}

.solutions-platform-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.solutions-platform-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.solutions-platform-icon .material-symbols-outlined {
  font-size: 20px;
}

.solutions-platform-icon-teal { background: #ccfbf1; color: #0f766e; }
.solutions-platform-icon-red { background: #fee2e2; color: #b91c1c; }
.solutions-platform-icon-orange { background: #ffedd5; color: #c2410c; }
.solutions-platform-icon-green { background: #dcfce7; color: #15803d; }
.solutions-platform-icon-blue { background: #dbeafe; color: #1d4ed8; }

.solutions-platform-name {
  margin: 0;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.solutions-platform-meta {
  margin: 3px 0 0;
  color: rgba(30, 41, 59, 0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .solutions-mega-menu {
    width: calc(100vw - 20px);
    max-height: 70vh;
    overflow-y: auto;
    padding: 18px;
  }

  .solutions-mega-menu-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.header-actions {
  position: absolute;
  left: 970px;
  top: 32px;
  width: 247px;
  height: 40px;
}

.language-switch {
  position: absolute;
  left: 0;
  top: 4px;
  width: 89.43px;
  height: 32px;
  background: #e5e7eb;
  border-radius: 8px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.lang-button {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-family: "Inter-ExtraBold", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
  width: 41px;
  height: 24px;
  padding: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
}

.language-switch .lang-button + .lang-button {
  margin-left: 0;
}

.lang-button.active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-cta {
  position: absolute;
  left: 109px;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 138px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.hero-section {
  width: 100%;
  position: relative;
  height: 583px;
  min-height: 583px;
  padding: 0;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  background-image: url("../img/Biru Modern Ucapan Selamat Ulang Tahun Instagram Post (2) 4.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  z-index: 0;
}

.hero-visual {
  position: absolute;
  right: calc(50% - 725px);
  top: 0;
  height: 583px;
  width: auto;
  z-index: 1;
}

.hero-content {
  position: absolute;
  left: calc(50% - 582px);
  top: 124px;
  z-index: 2;
  width: 763px;
  max-width: 763px;
}

.hero-title {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #0f172a;
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: -1.8px;
  font-weight: 700;
}

.hero-description {
  margin: 24px 0 0;
  color: #475569;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  max-width: 505px;
}

.service-page .service-hero-section {
  width: 100%;
  height: 582px;
  min-height: 582px;
  margin: 0;
}

.service-page .hero-banner {
  background-image: none;
  background: #f5f6f8;
  inset: 0;
}

.service-page .service-hero-content {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(860px, calc(100% - 64px));
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-page .service-hero-title {
  max-width: 860px;
  font-family: "Inter", sans-serif;
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: -1.8px;
  font-weight: 700;
  color: #0f172a;
}

.service-page .service-hero-accent {
  color: #2563eb;
}

.service-page .service-hero-description {
  max-width: 760px;
  margin: 24px auto 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  color: #475569;
}

.service-page .service-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  min-width: 136px;
  height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.service-page .service-stats-strip {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.service-page .service-stats-inner {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 30px 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-page .service-stat-item {
  padding: 0 32px;
  text-align: center;
  position: relative;
}

.service-page .service-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 54px;
  background: #e2e8f0;
  transform: translateY(-50%);
}

.service-page .service-stat-value {
  color: #0f172a;
  font-size: 48px;
  line-height: 48px;
  font-weight: 800;
}

.service-page .service-stat-text {
  margin-top: 10px;
  color: #64748b;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.service-page .service-offerings-section {
  width: 100%;
  background: #f5f6f8;
  padding: 58px 48px 76px;
}

.service-page .service-offerings-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.service-page .service-offerings-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-page .service-offerings-title {
  margin: 0;
  color: #0f172a;
  font-size: 34px;
  line-height: 42px;
  font-weight: 700;
}

.service-page .service-offerings-line {
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: #2563eb;
  margin-top: 14px;
}

.service-page .service-card-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-page .service-offering-card {
  min-height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dbe3ef;
  border-top: 4px solid #2563eb;
  border-radius: 18px;
  padding: 24px 24px 22px;
  box-shadow: 0 16px 34px rgba(148, 163, 184, 0.11);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-page .service-offering-card:hover {
  transform: translateY(-4px);
  border-color: #c7d7ec;
  box-shadow: 0 22px 44px rgba(148, 163, 184, 0.16);
}

.service-page .service-card-title {
  margin: 0;
  color: #0f172a;
  font-size: 21px;
  line-height: 29px;
  font-weight: 700;
}

.service-page .service-card-description {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
}

.service-page .service-card-divider {
  height: 1px;
  background: #dbe3ef;
  margin: 18px 0 16px;
}

.service-page .service-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}

.service-page .service-card-list li {
  position: relative;
  padding-left: 22px;
  color: #334155;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}

.service-page .service-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.8px solid #2563eb;
  box-sizing: border-box;
}

.service-page .service-card-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2563eb;
}

.service-page .service-card-link {
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  text-decoration: none;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
}

.service-page .service-card-link::after {
  content: "\2192";
  font-size: 14px;
}

.service-page .additional-services-section {
  width: 100%;
  background: #ffffff;
  padding: 72px 48px 70px;
}

.service-page .additional-services-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.service-page .additional-services-head {
  max-width: 640px;
}

.service-page .additional-services-title {
  margin: 0;
  color: #0f172a;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -1.2px;
}

.service-page .additional-services-description {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

.service-page .additional-services-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-page .additional-service-card {
  min-height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid #dbe3ef;
  border-radius: 16px;
  padding: 22px 20px 20px;
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-page .additional-service-card:hover {
  transform: translateY(-3px);
  border-color: #c8d9ef;
  box-shadow: 0 16px 32px rgba(148, 163, 184, 0.14);
}

.service-page .additional-service-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #eff6ff;
  color: #173b73;
}

.service-page .additional-service-card-title {
  margin: 16px 0 0;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}

.service-page .additional-service-card-text {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
}

.service-page .service-value-section {
  width: 100%;
  background: linear-gradient(180deg, #0a1222 0%, #0d1528 100%);
  padding: 72px 48px 84px;
  position: relative;
  overflow: hidden;
}

.service-page .service-value-section::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
}

.service-page .service-value-section::after {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
}

.service-page .service-value-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-page .service-value-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.service-page .service-value-kicker {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.4px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-page .service-value-title {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -2px;
}

.service-page .service-value-description {
  margin: 16px 0 0;
  color: rgba(226, 232, 240, 0.68);
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}

.service-page .service-value-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-page .service-value-card {
  background: rgba(15, 23, 42, 0.56);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  padding: 26px 24px 24px;
  min-height: 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.service-page .service-value-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.18);
  color: #60a5fa;
}

.service-page .service-value-card-title {
  margin: 16px 0 0;
  color: #ffffff;
  font-size: 29px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.service-page .service-value-card-text {
  margin: 12px 0 0;
  color: rgba(226, 232, 240, 0.68);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.clients-section {
  width: 100%;
  background: var(--surface);
  border-radius: 0;
  margin-top: 0;
  padding: 72px 58px 88px;
}

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

.section-kicker {
  color: var(--accent);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.4px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title {
  margin: 14px 0 12px;
  color: var(--nav-text);
  font-size: 42px;
  line-height: 46px;
  font-weight: 700;
}

.section-description {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 28px;
}

.category-chips {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.category-chip {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.82);
  color: #475569;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.category-chip.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

.category-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.category-grid.all-view {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  gap: 22px;
}

.category-grid.single-view {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}

.category-grid.all-view .category-card {
  display: block;
  padding: 24px 26px;
}

.category-grid.all-view .category-card-header {
  padding: 0 0 14px;
  border-right: 0;
  border-bottom: 1px solid #dde7f3;
}

.category-grid.all-view .category-card-header h3 {
  font-size: 20px;
  line-height: 28px;
}

.category-grid.all-view .client-list {
  margin-top: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.category-grid.all-view .client-item {
  min-height: 96px;
}

.category-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 22px 48px rgba(148, 163, 184, 0.14);
  position: relative;
  overflow: hidden;
}

.category-card-header {
  display: block;
  padding-bottom: 18px;
  border-bottom: 1px solid #dde7f3;
}

.category-card-header h3 {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: var(--nav-text);
}

.client-list {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.client-item {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 246, 255, 0.92) 100%);
  border: 1px solid #d8e4f2;
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.client-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2563eb 0%, #60a5fa 100%);
  opacity: 0.9;
}

.client-item:hover {
  transform: translateY(-2px);
  border-color: #bfd4ea;
  box-shadow: 0 18px 34px rgba(148, 163, 184, 0.18);
}

.client-item img {
  width: 100%;
  max-width: 88px;
  height: 64px;
  object-fit: contain;
  display: block;
  justify-self: center;
  position: relative;
  z-index: 1;
}

.client-item div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.client-item div::before {
  content: "Client Partner";
  color: #2563eb;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.9px;
  font-weight: 700;
  text-transform: uppercase;
}

.client-item strong {
  display: block;
  color: var(--nav-text);
  font-size: 17px;
  line-height: 25px;
  font-weight: 700;
}

.client-item:nth-child(2n)::before {
  background: linear-gradient(180deg, #0f172a 0%, #475569 100%);
}

.client-item:nth-child(3n)::before {
  background: linear-gradient(180deg, #0ea5e9 0%, #2563eb 100%);
}

.client-item:nth-child(4n)::before {
  background: linear-gradient(180deg, #1d4ed8 0%, #38bdf8 100%);
}

.cta-section {
  width: 100%;
  background: linear-gradient(135deg, #0c1828 0%, #0f2e52 50%, #0c1828 100%);
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 56px 80px;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
  top: -180px;
  right: 80px;
  pointer-events: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  bottom: -120px;
  left: 60px;
  pointer-events: none;
}

.cta-full {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.cta-badge-label {
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 9999px;
  padding: 5px 16px;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.cta-main-heading {
  color: #ffffff;
  text-align: center;
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
}

.cta-blue {
  color: #3b82f6;
}

.cta-description {
  color: #94a3b8;
  text-align: center;
  font-family: "Inria Sans", sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  max-width: 560px;
}

.cta-button {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 9999px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  line-height: 20px;
  font-weight: 800;
}

.footer {
  width: 100%;
  background: #ffffff;
  padding: 58px 0 26px;
}

.footer-inner {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.footer-simple {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 38px;
}

.footer-brand-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  max-width: 760px;
  min-width: 0;
}

.footer-brand-top {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.footer-logo {
  width: 207px;
  height: 76px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand-name {
  color: #0f172a;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
}

.footer-brand-tag {
  color: #475569;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.footer-brand-description {
  color: #64748b;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  max-width: 740px;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}

.footer-heading {
  color: #0f172a;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-link,
.footer-contact-item,
.footer-social-link {
  color: #64748b;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  text-decoration: none;
}

.footer-contact-group {
  min-width: 210px;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social-link:hover,
.footer-link:hover {
  color: #0f172a;
}

.footer-bottom-bar {
  border-top: 1px solid #cbd5e1;
  margin-top: 14px;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copyright {
  color: #64748b;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.footer-policy-links {
  min-height: 20px;
}

@media (max-width: 1100px) {
  .site-header {
    position: static;
    display: flex;
    max-width: none;
    height: auto;
    padding: 16px 24px 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-home-link {
    position: static;
  }

  .site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex: 1;
  }

  .nav-link {
    position: static;
    width: auto;
    height: auto;
    display: inline-flex;
  }

  .hero-section {
    height: auto;
    padding: 88px 24px 72px;
  }

  .hero-visual {
    opacity: 0.2;
    right: -120px;
  }

  .hero-content {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    max-width: 620px;
  }

  .clients-section {
    padding: 56px 24px 72px;
  }

  .service-page .service-stats-inner {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-page .service-stat-item {
    padding: 0 0 18px;
  }

  .service-page .service-stat-item:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 72px;
    height: 1px;
    transform: translateX(-50%);
  }

  .service-page .service-offerings-section {
    padding: 56px 24px 72px;
  }

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

  .header-actions {
    position: static;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .language-switch {
    position: static;
  }

  .header-cta {
    position: static;
    left: auto;
    top: auto;
  }

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

  .service-page .service-card-grid,
  .service-page .additional-services-grid,
  .service-page .service-value-grid {
    grid-template-columns: 1fr;
  }

  .category-grid.all-view .client-list {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 48px 24px;
  }

  .footer-simple {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .site-logo {
    width: 170px;
    height: auto;
  }

  .hero-section {
    height: auto;
    min-height: 460px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 42px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 26px;
  }

  .service-page .service-hero-title {
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -1.5px;
  }

  .service-page .service-hero-description {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.7;
  }

  .service-page .service-offerings-title {
    font-size: 34px;
    line-height: 40px;
  }

  .service-page .service-offering-card {
    padding: 22px 20px;
  }

  .section-title {
    font-size: 34px;
    line-height: 40px;
  }

  .category-card {
    padding: 20px;
  }

  .category-grid.all-view .category-card {
    padding: 20px;
  }

  .category-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-item {
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 12px;
    min-height: 88px;
    border-radius: 20px;
  }

  .client-item img {
    max-width: 62px;
    height: 46px;
  }

  .client-item strong {
    font-size: 15px;
    line-height: 22px;
  }

  .cta-main-heading {
    font-size: 28px;
    line-height: 38px;
  }

  .service-page .service-stats-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 24px;
  }

  .service-page .service-stat-item {
    padding: 0;
  }

  .service-page .service-stat-item:not(:last-child)::after {
    display: none;
  }

  .service-page .service-offerings-section,
  .service-page .additional-services-section,
  .service-page .service-value-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .service-page .additional-services-title {
    font-size: 30px;
  }

  .service-page .additional-service-card-title {
    font-size: 20px;
  }

  .service-page .service-value-title {
    font-size: 36px;
    line-height: 1.12;
  }

  .service-page .service-value-card-title {
    font-size: 24px;
  }

  .footer-inner {
    padding: 0 20px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 24px;
  }

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