/* ============================================================
   ABILITY TECH: Shared Stylesheet
   ============================================================ */
:root {
  --lime: #93D43F;
  --lime-bright: #A8E84B;
  --lime-soft: #EAF7D8;
  --green-deep: #4C8C1B;
  --ink: #0E1A2B;
  --ink-2: #142539;
  --ink-3: #1B3149;
  --slate: #566578;
  --slate-light: #8593A4;
  --line: #E7ECF1;
  --bg: #FFFFFF;
  --bg-soft: #F6F9F4;
  --bg-cool: #F4F7FA;
  --white: #FFFFFF;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(14, 26, 43, .05), 0 4px 14px rgba(14, 26, 43, .05);
  --shadow-md: 0 10px 30px rgba(14, 26, 43, .08);
  --shadow-lg: 0 24px 60px rgba(14, 26, 43, .12);
  --maxw: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Sora', sans-serif;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink)
}

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px
}

.narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px
}

.section {
  padding: 104px 0
}

.section.sm {
  padding: 72px 0
}

.section-head {
  max-width: 680px;
  margin-bottom: 54px
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  margin: 18px 0 16px
}

.section-head p {
  font-size: 18px;
  color: var(--slate)
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

.center .eyebrow {
  justify-content: center
}

.bg-soft {
  background: var(--bg-soft)
}

.bg-cool {
  background: var(--bg-cool)
}

.mt-s {
  margin-top: 18px
}

.mt-m {
  margin-top: 32px
}

.mt-l {
  margin-top: 48px
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter';
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: all .25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap
}

.btn svg {
  width: 17px;
  height: 17px;
  transition: transform .25s var(--ease)
}

.btn-primary {
  background: var(--ink);
  color: #fff
}

.btn-primary:hover {
  background: var(--ink-3);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(14, 26, 43, .22)
}

.btn-primary:hover svg {
  transform: translateX(4px)
}

.btn-lime {
  background: linear-gradient(135deg, var(--lime-bright), var(--lime));
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(147, 212, 63, .36)
}

.btn-lime:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(147, 212, 63, .5)
}

.btn-lime:hover svg {
  transform: translateX(4px)
}

.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line)
}

.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px)
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .28)
}

.btn-ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .06)
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px
}

.btn-block {
  width: 100%;
  justify-content: center
}

.arrow::after {
  content: "";
  display: inline-block
}

.txt-link {
  color: var(--green-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.txt-link svg {
  width: 15px;
  height: 15px;
  transition: transform .25s var(--ease)
}

.txt-link:hover svg {
  transform: translateX(4px)
}

/* logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px
}

.logo .mark {
  width: 42px;
  height: 36px;
  flex: none
}

.logo .wm {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.logo .wm-main {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 25px;
  letter-spacing: -.02em;
  color: var(--ink)
}

.logo .wm-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
  padding-left: 2px
}

.logo.light .wm-main {
  color: #fff
}

.logo.light .wm-sub {
  color: #9FB0C2
}

/* header */
header.site {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all .35s var(--ease);
  padding: 18px 0
}

header.site.scrolled {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 11px 0
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  transition: color .2s;
  position: relative
}

.nav-links a:hover {
  color: var(--lime)
}

.nav-links a.active {
  color: var(--lime);
  font-weight: 600
}

/* Over dark hero (transparent header on all pages EXCEPT homepage) */
body:not([data-page="home"]) header.site:not(.scrolled) .logo .wm-main {
  color: #fff
}

body:not([data-page="home"]) header.site:not(.scrolled) .logo .wm-sub {
  color: #9FB0C2
}

body:not([data-page="home"]) header.site:not(.scrolled) .nav-links>a,
body:not([data-page="home"]) header.site:not(.scrolled) .nav-links>.has-drop>a {
  color: rgba(255, 255, 255, 0.72)
}

body:not([data-page="home"]) header.site:not(.scrolled) .nav-links>a:hover,
body:not([data-page="home"]) header.site:not(.scrolled) .nav-links>.has-drop>a:hover,
body:not([data-page="home"]) header.site:not(.scrolled) .nav-links>a.active,
body:not([data-page="home"]) header.site:not(.scrolled) .nav-links>.has-drop>a.active {
  color: var(--lime)
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--lime);
  border-radius: 2px
}

.nav-links a.active[href="about.html"] {
  color: inherit
}

.has-drop {
  position: relative
}

.drop {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 248px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s var(--ease)
}

.has-drop:hover .drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.drop a,
header.site .nav-links .drop a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500
}

.drop a:hover,
header.site .nav-links .drop a:hover {
  background: var(--bg-soft);
  color: var(--ink)
}

.drop a .di {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--lime-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none
}

.drop a .di svg {
  width: 16px;
  height: 16px;
  stroke: var(--green-deep)
}

.drop a span small {
  display: block;
  font-size: 11.5px;
  color: var(--slate-light);
  font-weight: 400
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px
}

.nav-cta .btn {
  padding: 8px 18px;
  font-size: 13.5px
}

.nav-cta .btn svg {
  width: 14px;
  height: 14px
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative
}

.menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--ink);
  border-radius: 3px;
  transition: .3s
}

body:not([data-page="home"]) header.site:not(.scrolled) .menu-btn span {
  background: #fff;
}

header.site .btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line)
}

header.site .btn-ghost:hover {
  border-color: var(--ink);
  background: #fff
}

body:not([data-page="home"]) header.site:not(.scrolled) .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25)
}

body:not([data-page="home"]) header.site:not(.scrolled) .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #fff
}

.menu-btn span:nth-child(1) {
  top: 2px
}

.menu-btn span:nth-child(2) {
  top: 11px
}

.menu-btn span:nth-child(3) {
  top: 20px
}

.menu-btn.open span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg)
}

.menu-btn.open span:nth-child(2) {
  opacity: 0
}

.menu-btn.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg)
}

/* page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 158px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 82% -10%, rgba(147, 212, 63, .15), transparent 60%),
    linear-gradient(180deg, var(--ink), var(--ink-2));
  color: #fff
}

.page-hero.dark {
  background: linear-gradient(180deg, var(--ink), var(--ink-2));
  color: #fff
}

.page-hero.dark h1,
.page-hero.dark .crumb a,
.page-hero.dark .crumb {
  color: #fff
}

.page-hero .grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .75
}

.page-hero.dark .grid-bg {
  opacity: .75;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px)
}

.page-hero .inner {
  position: relative;
  max-width: 840px
}

.crumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  flex-wrap: wrap
}

.crumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color .2s
}

.crumb a:hover {
  color: var(--lime)
}

.crumb .sep {
  opacity: .5
}

.page-hero h1 {
  display: inline-block;
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
  max-width: 800px;
  margin: 0;
  position: relative;
  padding-bottom: 12px
}

.page-hero h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background: var(--lime);
  border-radius: 99px
}

.page-hero .lead {
  font-size: 19px;
  color: #AEBCCB;
  margin-top: 24px;
  max-width: 680px
}

.page-hero.dark .lead {
  color: #AEBCCB
}

.page-hero .ph-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px
}

/* grids & cards */
.grid {
  display: grid;
  gap: 24px
}

.g-2 {
  grid-template-columns: repeat(2, 1fr)
}

.g-3 {
  grid-template-columns: repeat(3, 1fr)
}

.g-4 {
  grid-template-columns: repeat(4, 1fr)
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center
}

@media(min-width: 1001px) {
  .split.reverse {
    grid-template-columns: .95fr 1.05fr
  }

  .split.reverse>*:first-child {
    order: 2
  }

  .split.reverse>*:last-child {
    order: 1
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: all .3s var(--ease)
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(147, 212, 63, 0.12), var(--shadow-md);
  border-color: var(--lime)
}

.card:hover .txt-link svg {
  transform: translateX(4px)
}

.card .ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--lime-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all .3s var(--ease)
}

.card:hover .ic {
  background: var(--lime);
  transform: scale(1.05)
}

.card .ic svg {
  width: 27px;
  height: 27px;
  stroke: var(--green-deep);
  transition: stroke .3s
}

.card:hover .ic svg {
  stroke: var(--ink)
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px
}

.card p {
  font-size: 14.5px;
  color: var(--slate)
}

.card .tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.card .tags i {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px
}

.card-link {
  margin-top: 18px
}

.card.dark {
  background: linear-gradient(160deg, var(--ink), var(--ink-2));
  border: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.card.dark h3 {
  color: #fff
}

.card.dark p {
  color: #AEBCCB
}


/* service card image wrap */
.service-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-cool);
  border: 1px solid var(--line);
  position: relative;
  margin-bottom: 24px;
  transition: border-color .3s var(--ease)
}

.service-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(147, 212, 63, 0.15));
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
  z-index: 1
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease)
}

.card:hover .service-img-wrap img,
.value:hover .service-img-wrap img {
  transform: scale(1.05) translateY(-2px)
}

.card:hover .service-img-wrap::after,
.value:hover .service-img-wrap::after {
  opacity: 1
}

.card:hover .service-img-wrap,
.value:hover .service-img-wrap {
  border-color: var(--lime)
}

/* service card icon overlay badge */
.ic-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
  z-index: 2
}

.ic-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-deep);
  transition: stroke .3s
}

.card:hover .ic-badge,
.value:hover .ic-badge {
  background: var(--lime);
  border-color: var(--lime);
  transform: translateY(-2px) scale(1.05)
}

.card:hover .ic-badge svg,
.value:hover .ic-badge svg {
  stroke: var(--ink)
}

/* product tile */
.prod {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.prod:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #DCE6D0
}

.prod-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative
}

.prod-img-wrap.bg-regintel {
  background: linear-gradient(135deg, #091c14 0%, #153c2b 100%);
}

.prod-img-wrap.bg-soc {
  background: linear-gradient(135deg, #061622 0%, #113450 100%);
}

.prod-img-wrap.bg-cxcare {
  background: linear-gradient(135deg, #12091f 0%, #25123d 100%);
}

.prod-img-wrap.bg-marketing {
  background: linear-gradient(135deg, #1b0e06 0%, #351c0d 100%);
}

.prod-img-wrap.bg-hrai {
  background: linear-gradient(135deg, #0a1b1d 0%, #143538 100%);
}

.prod-img-wrap.bg-crm {
  background: linear-gradient(135deg, #060c18 0%, #14213d 100%);
}

.prod-img-wrap.bg-workflow {
  background: linear-gradient(135deg, #170919 0%, #301334 100%);
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  box-sizing: border-box;
  transition: transform .5s var(--ease)
}

.prod:hover .prod-img-wrap img {
  transform: scale(1.04)
}

.prod-info {
  position: relative
}

.prod h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--ink)
}

.prod p {
  font-size: 13.5px;
  color: var(--slate)
}

.prod .pill {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-light);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  z-index: 5
}

/* product detail showcase */
.prod-showcase {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--bg-cool)
}

.prod-showcase img {
  width: 100%;
  height: auto;
  display: block
}

/* dark blocks */
.dark {
  background: linear-gradient(165deg, var(--ink), var(--ink-2));
  color: #fff;
  position: relative;
  overflow: hidden
}

.dark .section-head h2,
.dark h3 {
  color: #fff
}

.dark .eyebrow {
  color: var(--lime)
}

.dark .eyebrow::before {
  background: var(--lime)
}

.dark .section-head p {
  color: #AEBCCB
}

.dark-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 420px at 88% 0%, rgba(147, 212, 63, .14), transparent 60%), radial-gradient(620px 420px at 0% 100%, rgba(147, 212, 63, .08), transparent 55%)
}

.diff {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: all .3s var(--ease)
}

.diff:hover {
  background: rgba(255, 255, 255, .07);
  transform: translateY(-4px)
}

.diff .num {
  font-family: 'Sora';
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  background: var(--lime);
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none
}

.diff h3 {
  font-size: 18px;
  margin-bottom: 6px
}

.diff p {
  font-size: 14px;
  color: #AEBCCB
}

/* feature list (checks) */
.checks {
  display: grid;
  gap: 14px
}

.checks.cols2 {
  grid-template-columns: 1fr 1fr
}

.checks li {
  list-style: none;
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-3)
}

.checks li .ck {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lime-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 1px
}

.checks li .ck svg {
  width: 13px;
  height: 13px;
  stroke: var(--green-deep);
  stroke-width: 3
}

/* process / timeline */
.steps {
  display: grid;
  gap: 0
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding-bottom: 34px;
  position: relative
}

.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: var(--line)
}

.step .sn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora';
  font-weight: 700;
  font-size: 22px;
  color: var(--green-deep);
  z-index: 1
}

.step h3 {
  font-size: 19px;
  margin-bottom: 7px
}

.step p {
  font-size: 15px;
  color: var(--slate)
}

/* flow (delivery) */
.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch
}

.flow-node {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all .3s var(--ease)
}

.flow-node:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
  box-shadow: 0 12px 30px rgba(147, 212, 63, 0.1), var(--shadow-md)
}

.flow-node .ic {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s var(--ease)
}

.flow-node:hover .ic {
  transform: scale(1.08)
}

.flow-node .ic svg {
  width: 28px;
  height: 28px;
  transition: stroke .3s
}

.flow-node.us .ic {
  background: var(--ink)
}

.flow-node.us .ic svg {
  stroke: var(--lime)
}

.flow-node.pk .ic {
  background: var(--lime-soft)
}

.flow-node.pk .ic svg {
  stroke: var(--green-deep)
}

.flow-node.ip .ic {
  background: var(--ink-3)
}

.flow-node.ip .ic svg {
  stroke: #fff
}

.flow-node h3 {
  font-size: 19px;
  margin-bottom: 8px
}

.flow-node p {
  font-size: 14px;
  color: var(--slate)
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  color: var(--lime)
}

.flow-arrow svg {
  width: 26px;
  height: 26px;
  transition: transform .3s var(--ease)
}

/* industries */
.ind {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 34px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background: var(--white);
  transition: all .3s var(--ease)
}

.ind:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.ind .top {
  position: absolute;
  top: 30px;
  left: 34px;
  right: 34px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start
}

.ind .tag {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--lime-soft);
  padding: 5px 12px;
  border-radius: 999px
}

.ind .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center
}

.ind .ic svg {
  width: 23px;
  height: 23px;
  stroke: var(--lime)
}

.ind h3 {
  font-size: 21px;
  margin-bottom: 9px
}

.ind p {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 14px
}

.ind .entry {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 7px
}

.ind .entry svg {
  width: 15px;
  height: 15px;
  color: var(--lime)
}

/* stats */
.stats-band {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center
}

.stat .n {
  font-family: 'Sora';
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1
}

.stat .n em {
  color: var(--green-deep);
  font-style: normal
}

.stat p {
  font-size: 14.5px;
  color: var(--slate);
  margin-top: 10px
}

/* tabs */
.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px
}

.tab {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition: all .25s var(--ease)
}

.tab:hover {
  border-color: var(--ink)
}

.tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

.tab-panel {
  display: none
}

.tab-panel.active {
  display: block;
  animation: fade .4s var(--ease)
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* accordion / FAQ */
.acc {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white)
}

.acc-item+.acc-item {
  border-top: 1px solid var(--line)
}

.acc-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: 'Sora';
  font-weight: 600;
  font-size: 17px;
  color: var(--ink)
}

.acc-q .pm {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--lime-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s
}

.acc-q .pm svg {
  width: 14px;
  height: 14px;
  stroke: var(--green-deep);
  transition: .3s
}

.acc-item.open .pm {
  background: var(--lime)
}

.acc-item.open .pm svg {
  transform: rotate(45deg)
}

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease)
}

.acc-a p {
  padding: 0 26px 22px;
  font-size: 15px;
  color: var(--slate)
}

/* article / case cards */
.post {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column
}

.post:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.post .thumb {
  height: 184px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px
}

.post .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .5s var(--ease);
  z-index: 0
}

.post:hover .thumb img {
  transform: scale(1.05) translateY(-2px)
}

.post .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 26, 43, 0.55));
  z-index: 1;
  pointer-events: none
}

.post .thumb .cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  background: var(--lime);
  padding: 5px 12px;
  border-radius: 999px;
  position: relative;
  z-index: 2
}

.post .body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.post .meta {
  font-size: 12.5px;
  color: var(--slate-light);
  margin-bottom: 10px
}

.post h3 {
  font-size: 19px;
  margin-bottom: 10px;
  line-height: 1.25
}

.post p {
  font-size: 14px;
  color: var(--slate);
  flex: 1
}

.post .more {
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 7px
}

.post .more svg {
  width: 15px;
  height: 15px;
  transition: transform .25s var(--ease)
}

.post:hover .more svg {
  transform: translateX(4px)
}

/* filter chips */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 38px
}

.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition: all .25s var(--ease)
}

.chip:hover {
  border-color: var(--ink)
}

.chip.active {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime)
}

/* team */
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s var(--ease)
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.team-card .ph {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora';
  font-weight: 800;
  font-size: 54px;
  color: #fff
}

.team-card .info {
  padding: 22px
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 3px
}

.team-card .role {
  font-size: 13.5px;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 10px
}

.team-card p {
  font-size: 13.5px;
  color: var(--slate)
}

.team-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.section-img {
  width: 100%;
  height: 350px;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md)
}

/* values */
.value {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: all .3s var(--ease)
}

.value:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md)
}

.value .vi {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--lime-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px
}

.value .vi svg {
  width: 25px;
  height: 25px;
  stroke: var(--green-deep)
}

.value h3 {
  font-size: 18px;
  margin-bottom: 9px
}

.value p {
  font-size: 14.5px;
  color: var(--slate)
}

/* job rows */
.job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .3s var(--ease)
}

.job:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #DCE6D0
}

.job h3 {
  font-size: 18px;
  margin-bottom: 6px
}

.job .jmeta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.job .jmeta span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 4px 11px;
  border-radius: 999px
}

.job .japply {
  flex: none;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--green-deep)
}

.job .japply svg {
  width: 16px;
  height: 16px;
  transition: transform .25s var(--ease)
}

.job:hover .japply svg {
  transform: translateX(4px)
}

/* pricing / tier cards */
.tier {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  transition: all .3s var(--ease);
  position: relative
}

.tier:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.tier.featured {
  border-color: var(--lime);
  box-shadow: 0 18px 50px rgba(147, 212, 63, .18)
}

.tier .badge-top {
  position: absolute;
  top: -13px;
  left: 34px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px
}

.tier h3 {
  font-size: 22px;
  margin-bottom: 8px
}

.tier .price {
  font-family: 'Sora';
  font-size: 34px;
  font-weight: 800;
  color: var(--ink);
  margin: 14px 0
}

.tier .price small {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-light)
}

.tier p.desc {
  font-size: 14.5px;
  color: var(--slate);
  margin-bottom: 20px
}

/* forms */
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm)
}

.field {
  margin-bottom: 20px
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px
}

.field label .req {
  color: var(--green-deep)
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: 'Inter';
  font-size: 15px;
  color: var(--ink);
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  transition: all .2s;
  outline: none
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--lime);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(147, 212, 63, .14)
}

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

.field.err input,
.field.err select,
.field.err textarea {
  border-color: #E05B5B;
  background: #FEF4F4
}

.field .msg {
  font-size: 12.5px;
  color: #E05B5B;
  margin-top: 6px;
  display: none
}

.field.err .msg {
  display: block
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.form-note {
  font-size: 12.5px;
  color: var(--slate-light);
  margin-top: 14px
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px
}

.form-success.show {
  display: block;
  animation: fade .4s var(--ease)
}

.form-success .si {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lime-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px
}

.form-success .si svg {
  width: 32px;
  height: 32px;
  stroke: var(--green-deep);
  stroke-width: 3
}

.form-success h3 {
  font-size: 22px;
  margin-bottom: 10px
}

.form-success p {
  color: var(--slate)
}

/* info rows / contact */
.info-row {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line)
}

.info-row .ii {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--lime-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none
}

.info-row .ii svg {
  width: 23px;
  height: 23px;
  stroke: var(--green-deep)
}

.info-row h4 {
  font-size: 15px;
  margin-bottom: 3px
}

.info-row p,
.info-row a {
  font-size: 14.5px;
  color: var(--slate)
}

.info-row a:hover {
  color: var(--green-deep)
}

/* prose (article body) */
.prose {
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.8
}

.prose h2 {
  font-size: 27px;
  margin: 38px 0 14px
}

.prose h3 {
  font-size: 21px;
  margin: 30px 0 12px
}

.prose p {
  margin-bottom: 18px
}

.prose ul {
  margin: 0 0 18px 22px
}

.prose li {
  margin-bottom: 8px
}

.prose blockquote {
  border-left: 3px solid var(--lime);
  background: var(--bg-soft);
  padding: 18px 24px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  font-size: 18px;
  color: var(--ink)
}

.prose strong {
  color: var(--ink)
}

/* testimonial slider */
.tslider {
  position: relative;
  background: linear-gradient(160deg, var(--ink), var(--ink-2));
  border-radius: var(--radius-lg);
  padding: 54px 56px;
  color: #fff;
  overflow: hidden
}

.tslide {
  display: none
}

.tslide.active {
  display: block;
  animation: fade .5s var(--ease)
}

.tslide .quote {
  font-family: 'Sora';
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 24px
}

.tslide .who {
  display: flex;
  align-items: center;
  gap: 14px
}

.tslide .who .av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora';
  font-weight: 700;
  overflow: hidden
}

.tslide .who .av img,
.tslide .who .av svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.tslide .who b {
  display: block;
  font-size: 15px
}

.tslide .who span {
  font-size: 13px;
  color: #AEBCCB
}

.tdots {
  display: flex;
  gap: 9px;
  margin-top: 30px
}

.tdot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  cursor: pointer;
  transition: .25s
}

.tdot.active {
  background: var(--lime);
  width: 26px;
  border-radius: 5px
}

/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--ink), var(--ink-3));
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  text-align: center;
  color: #fff
}

.cta::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 212, 63, .22), transparent 65%)
}

.cta::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -90px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 212, 63, .12), transparent 65%)
}

.cta h2 {
  position: relative;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px
}

.cta p {
  position: relative;
  font-size: 18px;
  color: #C7D2DE;
  max-width: 560px;
  margin: 0 auto 32px
}

.cta .cta-btns {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* footer */
footer.site {
  background: var(--ink);
  color: #9FB0C2;
  padding: 74px 0 30px
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.foot-grid .about p {
  font-size: 14.5px;
  margin: 18px 0;
  max-width: 300px;
  color: #9FB0C2
}

.foot-soc {
  display: flex;
  gap: 12px
}

.foot-soc a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s
}

.foot-soc a.soc-linkedin:hover {
  background: #0077b5
}

.foot-soc a.soc-linkedin:hover svg {
  stroke: #fff
}

.foot-soc a.soc-x:hover {
  background: #000
}

.foot-soc a.soc-x:hover svg {
  stroke: #fff
}

.foot-soc a.soc-instagram:hover {
  background: #e1306c
}

.foot-soc a.soc-instagram:hover svg {
  stroke: #fff
}

.foot-soc a.soc-whatsapp:hover {
  background: #25d366
}

.foot-soc a.soc-whatsapp:hover svg {
  stroke: #fff
}

.foot-soc a.soc-facebook:hover {
  background: #1877f2
}

.foot-soc a.soc-facebook:hover svg {
  stroke: #fff
}

.foot-soc a.soc-email:hover {
  background: var(--lime)
}

.foot-soc a.soc-email:hover svg {
  stroke: var(--ink)
}

.foot-soc svg {
  width: 18px;
  height: 18px;
  stroke: #9FB0C2;
  transition: .25s
}

.foot-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: .02em
}

.foot-col a {
  display: block;
  font-size: 14px;
  color: #9FB0C2;
  margin-bottom: 11px;
  transition: color .2s
}

.foot-col a:hover {
  color: var(--lime)
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 14px
}

.foot-bottom p {
  font-size: 13px;
  color: #74859A
}

.foot-bottom .links {
  display: flex;
  gap: 24px
}

.foot-bottom .links a {
  font-size: 13px;
  color: #74859A
}

.foot-bottom .links a:hover {
  color: var(--lime)
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

.reveal[data-d="1"] {
  transition-delay: .08s
}

.reveal[data-d="2"] {
  transition-delay: .16s
}

.reveal[data-d="3"] {
  transition-delay: .24s
}

.reveal[data-d="4"] {
  transition-delay: .32s
}

@media(prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }
}

/* hero (home) */
.hero {
  position: relative;
  padding: 172px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(1100px 540px at 78% -8%, rgba(147, 212, 63, .16), transparent 60%),
    radial-gradient(900px 520px at 12% 8%, rgba(20, 37, 57, .05), transparent 55%),
    linear-gradient(180deg, #FBFDF9, #FFFFFF)
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .5;
  mask-image: radial-gradient(720px 480px at 70% 20%, #000, transparent 75%)
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-3);
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px
}

.badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2.2s infinite
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(147, 212, 63, .55)
  }

  70% {
    box-shadow: 0 0 0 9px rgba(147, 212, 63, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(147, 212, 63, 0)
  }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -.03em
}

.hero h1 .accent {
  color: var(--ink);
  box-shadow: inset 0 -.16em 0 0 var(--lime);
  border-radius: 3px
}

.hero p.lead {
  font-size: 19px;
  color: var(--slate);
  margin: 24px 0 34px;
  max-width: 560px
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-meta {
  display: flex;
  gap: 30px;
  margin-top: 42px;
  flex-wrap: wrap
}

.hero-meta .m strong {
  font-family: 'Sora';
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  letter-spacing: -.02em
}

.hero-meta .m span {
  font-size: 13.5px;
  color: var(--slate-light)
}

.hero-visual {
  position: relative;
  height: 430px
}

.hv-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px 22px
}

.hv-main {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, var(--ink), var(--ink-2));
  border: none;
  color: #fff;
  overflow: hidden
}

.hv-main .nodes {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 260px;
  height: 260px;
  opacity: .5
}

.hv-main h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative
}

.hv-main p {
  color: #C7D2DE;
  font-size: 14.5px;
  position: relative;
  max-width: 300px
}

.hv-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(147, 212, 63, .16);
  color: var(--lime);
  border: 1px solid rgba(147, 212, 63, .3);
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 18px;
  position: relative
}

.hv-stat {
  right: -14px;
  bottom: 34px;
  width: 208px
}

.hv-stat .row {
  display: flex;
  align-items: center;
  gap: 12px
}

.hv-stat .ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--lime-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none
}

.hv-stat .ic svg {
  width: 22px;
  height: 22px
}

.hv-stat strong {
  font-family: 'Sora';
  font-size: 22px;
  font-weight: 700;
  display: block;
  line-height: 1
}

.hv-stat span {
  font-size: 12px;
  color: var(--slate)
}

.hv-mini {
  left: -18px;
  bottom: -16px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 18px
}

.hv-mini .av {
  display: flex
}

.hv-mini .av i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -9px;
  background: var(--bg-cool)
}

.hv-mini .av i:first-child {
  margin-left: 0;
  background: var(--lime)
}

.hv-mini .av i:nth-child(2) {
  background: var(--ink-3)
}

.hv-mini .av i:nth-child(3) {
  background: var(--slate-light)
}

.hv-mini small {
  font-size: 12.5px;
  color: var(--slate);
  font-weight: 500
}

.hv-mini b {
  color: var(--ink)
}

/* trust strip */
.trust {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft)
}

.trust .wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between
}

.trust p {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-light)
}

.trust .items {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  align-items: center
}

.trust .items span {
  font-family: 'Sora';
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-3);
  opacity: .78;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .25s var(--ease);
  cursor: default
}

.trust .items span:hover {
  opacity: 1;
  color: var(--ink)
}

.trust .items span svg.trust-icon {
  width: 20px;
  height: 20px;
  transition: all .25s var(--ease);
  flex-shrink: 0
}

.trust .items span:hover svg.trust-icon {
  transform: scale(1.15) translateY(-1px)
}

/* responsive */
@media(max-width:1000px) {

  .hero-inner,
  .split {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero-visual {
    height: 380px;
    max-width: 480px
  }

  .g-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .flow {
    grid-template-columns: 1fr
  }

  .flow-arrow {
    height: 40px;
    width: 100%;
    margin: 0 auto
  }

  .flow-arrow svg {
    transform: rotate(90deg)
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }

  .cta {
    padding: 54px 30px
  }

  .nav-links {
    gap: 22px
  }
}

@media(max-width:820px) {

  .g-3,
  .checks.cols2 {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:760px) {

  .nav-links,
  .nav-cta .btn-ghost {
    display: none
  }

  .menu-btn {
    display: block
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: var(--shadow-lg)
  }

  .nav-links.open a {
    padding: 9px 0;
    width: 100%
  }

  .nav-links.open .has-drop .drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 12px;
    min-width: 0
  }

  .section {
    padding: 72px 0
  }

  .g-2,
  .g-3,
  .g-4,
  .stats-grid,
  .checks.cols2,
  .form-row {
    grid-template-columns: 1fr
  }

  .section-head h2 {
    font-size: 28px
  }

  .hero {
    padding: 140px 0 70px
  }

  .page-hero {
    padding: 130px 0 50px
  }

  .diff {
    padding: 20px
  }

  .job {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px
  }

  .tslider,
  .form {
    padding: 30px 22px
  }

  .card {
    padding: 22px;
    border-radius: 16px
  }

  .card h3 {
    font-size: 18px
  }

  .card p {
    font-size: 14px
  }

  .service-img-wrap {
    margin-bottom: 18px
  }

  .ic-badge {
    width: 34px;
    height: 34px;
    bottom: 8px;
    right: 8px
  }

  .ic-badge svg {
    width: 16px;
    height: 16px
  }
}

@media(max-width:430px) {
  .hero-visual {
    height: 340px
  }

  .wrap,
  .narrow {
    padding: 0 18px
  }
}