:root {
  --ink: #18202b;
  --muted: #667085;
  --line: #d9e1e8;
  --surface: #ffffff;
  --soft: #f5f8fb;
  --navy: #10233f;
  --cyan: #00a6b4;
  --green: #3da35d;
  --amber: #e6a23c;
  --shadow: 0 20px 55px rgba(17, 35, 62, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--surface);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 35px rgba(16, 35, 63, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  width: 176px;
  height: 48px;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(16, 35, 63, 0.1);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
  font-size: clamp(0.92rem, 0.95vw, 1.04rem);
  font-weight: 900;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  opacity: 0.92;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.language-select {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-select::after {
  position: absolute;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  pointer-events: none;
  transform: rotate(45deg) translateY(-2px);
}

.language-select select {
  width: 128px;
  height: 40px;
  padding: 0 32px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: currentColor;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .language-select select,
.site-header.is-open .language-select select {
  border-color: var(--line);
  background: #fff;
}

.language-select option {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-network,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-network {
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(9, 21, 35, 0.84) 0%, rgba(9, 21, 35, 0.6) 37%, rgba(9, 21, 35, 0.14) 100%),
    linear-gradient(180deg, rgba(9, 21, 35, 0.38) 0%, rgba(9, 21, 35, 0.1) 68%, rgba(255, 255, 255, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(900px, calc(100% - 40px));
  align-self: center;
  margin-left: clamp(20px, 7vw, 92px);
  padding-top: 150px;
  padding-bottom: 72px;
  transform: translateY(24px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 28px;
  padding: 0 11px;
  border: 1px solid rgba(0, 166, 180, 0.22);
  border-radius: 8px;
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(0, 166, 180, 0.08);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--cyan);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff;
}

section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.quick-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 40px));
  margin: clamp(34px, 5vw, 56px) auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 35, 62, 0.06);
}

.quick-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.quick-nav a:last-child {
  border-right: 0;
}

.quick-nav a:hover {
  color: var(--cyan);
  background: var(--soft);
}

.band {
  background: var(--soft);
}

.section-grid,
.section-heading,
.contact-panel,
.timeline,
.service-grid,
.capability-list,
.stat-grid,
.industry-grid,
.case-showcase {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.section-grid p {
  margin: 0;
  font-size: 1.05rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(36px, 5vw, 66px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.stat-grid div {
  min-height: 132px;
  padding: 26px 28px;
  background: #fff;
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat-grid span {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

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

.service-card {
  min-height: 275px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(17, 35, 62, 0.06);
}

.icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  background: var(--navy);
}

.service-card:nth-child(2) .icon {
  background: var(--cyan);
}

.service-card:nth-child(3) .icon {
  background: var(--green);
}

.service-card:nth-child(4) .icon {
  background: var(--amber);
}

.service-card p {
  margin: 14px 0 0;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.capability-list > div {
  min-height: 190px;
  padding: 28px;
  background: #fff;
}

.capability-list p {
  margin: 12px 0 0;
}

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

.industry-grid article {
  min-height: 210px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 166, 180, 0.08), rgba(255, 255, 255, 0) 42%),
    #fff;
  box-shadow: 0 14px 32px rgba(17, 35, 62, 0.06);
}

.industry-grid h3 {
  position: relative;
  padding-top: 46px;
}

.industry-grid h3::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  content: "";
}

.industry-grid p {
  margin: 14px 0 0;
}

.case-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(17, 35, 62, 0.06);
}

.case-list {
  display: grid;
  align-content: start;
  border-right: 1px solid var(--line);
  background: var(--soft);
}

.case-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.case-list button::after {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  opacity: 0.45;
  transform: rotate(45deg);
}

.case-list button:hover,
.case-list button.is-active {
  color: #fff;
  background: var(--navy);
}

.case-list button.is-active::after {
  opacity: 1;
}

.case-stage {
  min-height: 360px;
  padding: clamp(28px, 5vw, 48px);
}

.case-pane h3 {
  max-width: 680px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.case-pane p {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.04rem;
}

.case-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 18px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(0, 166, 180, 0.1);
}

.case-pane dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.case-pane dl div {
  min-height: 110px;
  padding: 22px;
  background: #fff;
}

.case-pane dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-pane dd {
  margin: 12px 0 0;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.35;
}

.case-outcomes {
  margin-top: 34px;
}

.case-outcomes h4 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.25;
}

.case-outcomes ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-outcomes li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.65;
}

.case-outcomes li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 8px;
  background: var(--cyan);
  content: "";
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline div {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.timeline div:last-child {
  border-right: 0;
}

.timeline span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--cyan);
  font-weight: 800;
}

.timeline p {
  margin: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  width: min(1500px, 100%);
  min-height: 360px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #203548 58%, #214533);
  box-shadow: var(--shadow);
}

.contact-panel p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

address {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.55;
}

address strong {
  color: #fff;
  font-size: 1.1rem;
}

address a {
  color: #fff;
  font-weight: 800;
}

.contact-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.contact-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.14);
}

.whatsapp-icon {
  padding: 5px;
  fill: #25d366;
}

.detail-main {
  background: var(--surface);
}

.detail-hero {
  position: relative;
  min-height: 62vh;
  overflow: hidden;
  color: #fff;
}

.detail-hero img,
.detail-hero::after {
  position: absolute;
  inset: 0;
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  background:
    linear-gradient(90deg, rgba(9, 21, 35, 0.88) 0%, rgba(9, 21, 35, 0.56) 48%, rgba(9, 21, 35, 0.1) 100%),
    linear-gradient(180deg, rgba(9, 21, 35, 0.35), rgba(9, 21, 35, 0.18));
  content: "";
}

.detail-hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 40px));
  padding: clamp(150px, 18vw, 210px) 0 clamp(78px, 10vw, 120px);
  margin-left: clamp(20px, 7vw, 92px);
}

.detail-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1;
}

.detail-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.detail-body {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.detail-body p {
  margin: 0 0 20px;
  font-size: 1.06rem;
}

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

.detail-actions .button.secondary {
  border-color: var(--line);
  color: var(--navy);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--cyan);
  font-weight: 800;
}

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

  .capability-list,
  .industry-grid,
  .section-grid,
  .contact-panel,
  .case-showcase {
    grid-template-columns: 1fr;
  }

  .case-list {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    flex-wrap: wrap;
    padding: 13px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    color: var(--ink);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 35px rgba(16, 35, 63, 0.1);
  }

  .language-select {
    margin-left: auto;
  }

  .language-select select {
    width: 108px;
    height: 38px;
    font-size: 0.78rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .quick-nav a:nth-child(2) {
    border-right: 0;
  }

  .quick-nav a {
    border-bottom: 1px solid var(--line);
  }

  .quick-nav a:nth-child(n + 3) {
    border-bottom: 0;
  }

  .brand-logo-shell {
    width: 150px;
    height: 42px;
    padding: 6px 10px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 21, 35, 0.93), rgba(9, 21, 35, 0.72)),
      linear-gradient(180deg, rgba(9, 21, 35, 0.2), rgba(255, 255, 255, 0.88));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-top: 132px;
    padding-bottom: 86px;
  }

  .hero h1 {
    max-width: 92vw;
    font-size: clamp(2.1rem, 10.5vw, 3.35rem);
    line-height: 1.06;
  }

  .service-grid,
  .timeline,
  .capability-list,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .timeline div,
  .timeline div:nth-child(2) {
    min-height: 0;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline div:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: auto;
  }

  .case-list button {
    min-height: 64px;
    padding: 0 18px;
  }

  .case-stage {
    min-height: 0;
    padding: 24px 20px;
  }

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

  .detail-hero {
    min-height: 58vh;
  }

  .detail-hero-content {
    padding-top: 126px;
    margin-left: 20px;
  }
}

@media (max-width: 440px) {
  .brand-logo-shell {
    width: 132px;
    height: 38px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  address {
    padding: 20px;
  }

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