:root {
  --green: #71bf44;
  --green-soft: rgba(113, 191, 68, 0.16);
  --green-strong: rgba(113, 191, 68, 0.28);
  --bg: #050505;
  --panel: #101010;
  --panel-2: #141414;
  --panel-3: #191919;
  --text: #f5f5f5;
  --muted: #b9b9b9;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --max: 1180px;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 12%, rgba(113, 191, 68, 0.22), transparent 22%),
    radial-gradient(circle at 82% 28%, rgba(113, 191, 68, 0.14), transparent 20%),
    linear-gradient(180deg, #030303 0%, #050505 40%, #020202 100%);
}

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

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 6%, rgba(113, 191, 68, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.35), rgba(3, 3, 3, 0.82) 28%, #030303 56%);
}

.page-shell > * {
  position: relative;
  z-index: 1;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
}

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

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

.site-logo {
  width: clamp(150px, 20vw, 250px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #dadada;
  font-size: 14px;
}

.nav a {
  transition: color 0.2s ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav a:hover,
.nav a.active,
.nav a[aria-current="page"] {
  color: var(--green);
}

.btn,
button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  font-family: inherit;
  transition: 0.25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn:hover,
button:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #050505;
  background: linear-gradient(90deg, var(--green), #9ae269);
  box-shadow: 0 14px 34px rgba(113, 191, 68, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.page-main {
  padding: 0 0 70px;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 138px 0 44px;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-hero::before {
  inset: 0 auto 0 50%;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.28), rgba(4, 4, 4, 0.72)),
    linear-gradient(120deg, rgba(113, 191, 68, 0.22), rgba(113, 191, 68, 0.03) 38%, rgba(255, 255, 255, 0.02) 100%),
    url("images/hero-bg.webp") center 26% / cover no-repeat;
  box-shadow: inset 0 -120px 120px rgba(3, 3, 3, 0.76);
  z-index: -2;
}

.page-hero::after {
  top: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(113, 191, 68, 0.28), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(113, 191, 68, 0.18), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: auto, auto, 120px 120px, 120px 120px;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
  z-index: -1;
}

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

.page-hero-about::before {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.22), rgba(4, 4, 4, 0.76)),
    linear-gradient(115deg, rgba(113, 191, 68, 0.16), rgba(113, 191, 68, 0.02) 40%, rgba(255, 255, 255, 0.02) 100%),
    url("images/hero-about-banner.png") center center / cover no-repeat;
}

.page-hero-services::before {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.24), rgba(4, 4, 4, 0.78)),
    linear-gradient(120deg, rgba(113, 191, 68, 0.20), rgba(113, 191, 68, 0.04) 38%, rgba(255, 255, 255, 0.02) 100%),
    url("images/hero-services-banner.png") center center / cover no-repeat;
}

.page-hero-ai-service::before {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.20), rgba(4, 4, 4, 0.76)),
    linear-gradient(120deg, rgba(113, 191, 68, 0.24), rgba(113, 191, 68, 0.06) 42%, rgba(255, 255, 255, 0.02) 100%),
    url("images/hero-ai-service-banner.png") center center / cover no-repeat;
}

.page-hero-projects::before {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.22), rgba(4, 4, 4, 0.78)),
    linear-gradient(120deg, rgba(113, 191, 68, 0.18), rgba(113, 191, 68, 0.04) 36%, rgba(255, 255, 255, 0.02) 100%),
    url("images/hero-projects-banner.png") center center / cover no-repeat;
}

.page-hero-support-project::before {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.18), rgba(4, 4, 4, 0.74)),
    linear-gradient(120deg, rgba(113, 191, 68, 0.18), rgba(113, 191, 68, 0.04) 38%, rgba(255, 255, 255, 0.02) 100%),
    url("images/hero-support-project-banner.png") center center / cover no-repeat;
}

.page-hero-digital-finance::before {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.16), rgba(4, 4, 4, 0.78)),
    linear-gradient(120deg, rgba(113, 191, 68, 0.16), rgba(113, 191, 68, 0.03) 38%, rgba(255, 255, 255, 0.02) 100%),
    url("images/b362b0e5-cd9a-41bc-9728-a8fb814aa892.webp") center center / cover no-repeat;
}

.page-hero-enterprise-platform::before {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.18), rgba(4, 4, 4, 0.78)),
    linear-gradient(120deg, rgba(113, 191, 68, 0.18), rgba(113, 191, 68, 0.04) 40%, rgba(255, 255, 255, 0.02) 100%),
    url("images/13d52ffe-a146-462c-aceb-38a19dc23776.webp") center center / cover no-repeat;
}

.page-hero-automation-project::before {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.14), rgba(4, 4, 4, 0.78)),
    linear-gradient(120deg, rgba(113, 191, 68, 0.22), rgba(113, 191, 68, 0.05) 38%, rgba(255, 255, 255, 0.02) 100%),
    url("images/68899be1-b895-4adb-a6ed-1968d350ab63.webp") center center / cover no-repeat;
}

.page-hero-delivery-approach::before {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.20), rgba(4, 4, 4, 0.78)),
    linear-gradient(120deg, rgba(113, 191, 68, 0.20), rgba(113, 191, 68, 0.04) 38%, rgba(255, 255, 255, 0.02) 100%),
    url("images/hero-projects-banner.png") center center / cover no-repeat;
}

.page-hero-contact::before {
  background:
    linear-gradient(180deg, rgba(8, 6, 4, 0.18), rgba(4, 4, 4, 0.72)),
    linear-gradient(120deg, rgba(205, 168, 104, 0.12), rgba(113, 191, 68, 0.03) 42%, rgba(255, 255, 255, 0.02) 100%),
    url("images/hero-contact-banner.png") center center / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 840px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #d2d2d2;
  font-size: 13px;
}

.crumbs span {
  color: var(--green);
}

.eyebrow {
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

.page-title,
.section-title,
.card-title,
.mini-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-title {
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.96;
  margin: 0;
}

.page-title .accent,
.section-title .accent,
.mini-title .accent {
  color: var(--green);
}

.page-summary,
.section-copy,
.content-card p,
.archive-card p,
.timeline-entry p,
.info-row p,
.faq-item p,
.quote-card p,
.cta-band p,
.contact-card p,
.form-note,
.metric-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.page-summary {
  max-width: 720px;
  margin: 22px 0 0;
}

.hero-actions,
.button-row,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.content-card,
.archive-card,
.metric-card,
.timeline-entry,
.quote-card,
.process-card,
.contact-card,
.form-card,
.cta-band,
.media-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.card-label,
.timeline-year,
.metric-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-title,
.timeline-title,
.info-row h3,
.faq-item h3,
.process-card h3,
.contact-card h3,
.form-card h3,
.metric-card h3 {
  margin: 0 0 12px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  line-height: 1.05;
}

.bullet-list,
.meta-list,
.detail-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.bullet-list li,
.meta-list li,
.detail-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #e9e9e9;
}

.bullet-list li:last-child,
.meta-list li:last-child,
.detail-list li:last-child {
  border-bottom: 0;
}

.meta-list strong,
.detail-list strong {
  color: var(--green);
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.stat-tile {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-tile h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.stat-tile p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section {
  padding: 88px 0 0;
}

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

.section-title {
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1;
  margin: 0 0 18px;
}

.split-grid,
.info-grid,
.contact-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.content-card,
.form-card,
.contact-card,
.media-card {
  padding: 30px;
}

.mini-title {
  font-size: 28px;
  margin: 0 0 16px;
}

.stack-list,
.faq-list {
  display: grid;
  gap: 16px;
}

.info-row,
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.info-row:first-child,
.faq-item:first-child {
  padding-top: 0;
}

.info-row:last-child,
.faq-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.archive-grid,
.metric-grid,
.process-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.archive-card {
  padding: 28px;
}

.archive-card img,
.media-card img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.archive-visual {
  margin: -2px -2px 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #050505;
  background: linear-gradient(135deg, var(--green), #9ae269);
}

.card-title {
  font-size: 30px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #dedede;
  font-size: 13px;
  font-weight: 600;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--green);
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 20px;
}

.timeline-entry {
  padding: 28px;
}

.timeline-title {
  font-size: 28px;
}

.quote-card {
  padding: 34px;
}

.quote-mark {
  font-family: "Oswald", sans-serif;
  font-size: 70px;
  line-height: 1;
  color: var(--green);
}

.metric-card {
  padding: 24px;
}

.metric-card h3 {
  font-size: 26px;
}

.process-card {
  padding: 26px;
}

.process-step {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid rgba(113, 191, 68, 0.24);
}

.case-media {
  margin-top: 22px;
}

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

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

.field,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 15px 16px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

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

.form-note {
  margin: 18px 0 0;
}

.cta-band {
  margin-top: 28px;
  padding: 32px;
}

.footer {
  padding: 56px 0 42px;
  text-align: center;
}

.footer-brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 30px;
}

.footer-brand span {
  color: var(--green);
}

.footer p {
  margin: 16px auto 0;
  max-width: 700px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links,
.footer-meta,
.footer-contact {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: #d9d9d9;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .archive-grid,
  .metric-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav,
  .header-actions .btn-secondary {
    display: none;
  }

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

@media (max-width: 860px) {
  .split-grid,
  .info-grid,
  .contact-grid,
  .case-grid,
  .archive-grid,
  .metric-grid,
  .process-grid,
  .form-grid,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 120px 0 34px;
  }

  .content-card,
  .archive-card,
  .timeline-entry,
  .quote-card,
  .form-card,
  .contact-card,
  .media-card,
  .cta-band {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .page-main {
    padding-bottom: 56px;
  }

  .header-inner {
    min-height: 74px;
  }

  .page-title {
    font-size: clamp(36px, 13vw, 58px);
  }

  .section-title {
    font-size: clamp(30px, 11vw, 48px);
  }

  .hero-actions,
  .button-row,
  .card-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .button-row .btn {
    width: 100%;
  }

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