:root {
  --ink: #081219;
  --surface: #f6f8f7;
  --panel: #ffffff;
  --muted: #5f7078;
  --line: #dce5e2;
  --teal: #009b92;
  --green: #2eb872;
  --amber: #f4a51c;
  --blue: #2e7cf6;
  --navy: #0c2533;
  --shadow: 0 24px 60px rgba(8, 18, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 60px);
  background: rgba(246, 248, 247, 0.9);
  border-bottom: 1px solid rgba(220, 229, 226, 0.9);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: cover;
  border: 1px solid rgba(0, 155, 146, 0.32);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(8, 18, 25, 0.16);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.92rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

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

.main-nav a,
.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #20343d;
  font-size: 0.92rem;
  font-weight: 700;
}

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

.nav-item {
  position: relative;
}

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

.has-dropdown .nav-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 40;
  display: none;
  width: 250px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 7px;
  color: #20343d;
  font-size: 0.9rem;
  line-height: 1.25;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  display: block;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 110px clamp(18px, 5vw, 76px) 90px;
  overflow: hidden;
  color: white;
  background: #071219;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 25, 0.9) 0%, rgba(7, 18, 25, 0.62) 42%, rgba(7, 18, 25, 0.16) 100%),
    url("hero-technology.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(0deg, var(--surface), rgba(246, 248, 247, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #65f1d5;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.55rem, 5vw, 5.8rem);
}

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

h3 {
  font-size: 1.25rem;
}

.hero p:not(.eyebrow),
.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.hero-actions,
.cta-band {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  color: #061015;
  background: linear-gradient(135deg, #6ef4d6, #ffcb5d);
}

.btn.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.inline-btn {
  margin-top: 14px;
  color: white;
  background: var(--navy);
}

.stats-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -48px clamp(18px, 5vw, 76px) 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.stats-band div {
  padding: 28px;
  background: white;
}

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

.stats-band strong {
  color: var(--teal);
  font-size: 2rem;
  line-height: 1;
}

.stats-band span {
  margin-top: 8px;
  color: var(--muted);
}

.section,
.split-section,
.service-detail,
.contact-layout {
  padding: 90px clamp(18px, 5vw, 76px);
}

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

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

.service-card,
.feature-grid > div,
.team-card,
.contact-panel,
.contact-info > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(8, 18, 25, 0.06);
}

.service-card,
.feature-grid > div,
.team-card {
  padding: 28px;
}

.service-card p,
.feature-grid p,
.team-card p,
.text-stack p,
.check-list,
.contact-info p {
  color: var(--muted);
}

.service-card a {
  color: var(--teal);
  font-weight: 800;
}

.text-link {
  color: var(--teal);
  font-weight: 800;
}

.card-icon {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: conic-gradient(from 180deg, var(--teal), var(--green), var(--amber), var(--blue), var(--teal));
}

.trade-icon {
  background: linear-gradient(135deg, var(--amber), var(--blue));
}

.digital-icon {
  background: radial-gradient(circle at 30% 30%, #ffffff 0 8%, var(--blue) 9% 45%, var(--teal) 46% 100%);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
  background: #eaf2ef;
}

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

.process-list div {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-left: 4px solid var(--teal);
  background: white;
}

.process-list span,
.detail-number,
.avatar {
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  background: var(--navy);
}

.process-list span {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.cta-band {
  justify-content: space-between;
  margin: 0 clamp(18px, 5vw, 76px) 90px;
  padding: 34px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--navy), #0d746d);
}

.cta-band .eyebrow {
  color: #72f3d9;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.page-hero {
  padding: 112px clamp(18px, 5vw, 76px) 80px;
  color: white;
  background:
    linear-gradient(120deg, rgba(8, 18, 25, 0.94), rgba(14, 91, 88, 0.86)),
    url("hero-technology.png") center / cover no-repeat;
}

.page-hero .eyebrow {
  color: #72f3d9;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 5rem);
}

.muted {
  background: #edf4f2;
}

.text-stack {
  display: grid;
  gap: 14px;
  font-size: 1.06rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 32px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.service-detail:nth-of-type(odd) {
  background: #f7fbfa;
}

.detail-number {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  font-size: 1.35rem;
}

.check-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  font-size: 1.05rem;
}

.team-card {
  min-height: 260px;
}

.avatar {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
}

.contact-panel,
.contact-info > div {
  padding: 28px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

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

.contact-info span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-info strong {
  display: block;
  margin-top: 6px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.78);
  background: #071219;
}

.site-footer strong {
  color: white;
}

.site-footer p {
  margin: 5px 0 0;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: white;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 38px rgba(8, 18, 25, 0.24);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 77px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .main-nav a,
  .nav-link {
    border-radius: 8px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
    background: #f6f8f7;
  }

  .hero {
    min-height: 650px;
  }

  .stats-band,
  .service-grid,
  .feature-grid,
  .team-grid,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .stats-band {
    margin-top: 0;
  }

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

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand strong {
    max-width: 190px;
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .hero,
  .page-hero {
    padding-top: 80px;
  }

  .hero-actions,
  .cta-band,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .section,
  .split-section,
  .service-detail,
  .contact-layout {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}
