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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #F8FAFD;
  color: #111827;
  overflow-x: hidden
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none
}

:root {
  --navy: #06111E;
  --blue: #1347A0;
  --cyan: #00C2E0;
  --white: #FFFFFF;
  --off: #F8FAFD;
  --card: #FFFFFF;
  --slate: #64748B;
  --border: #E8EFF9;
  --green: #059669;
  --amber: #D97706;
  --purple: #7C3AED;
  --red: #DC2626;
  --r: 18px;
}

/* ── URGENCY ── */
.strip {
  background: linear-gradient(90deg, #991B1B, #DC2626, #EA580C);
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.strip p {
  color: #fff;
  font-size: 13px;
  font-weight: 500
}

.strip strong {
  font-weight: 800
}

.strip-btn {
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background .2s;
}

.strip-btn:hover {
  background: rgba(255, 255, 255, .28)
}

.strip-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  transition: all 0.2s;
  margin-left: 10px;
}

.strip-close:hover {
  color: #fff;
  transform: scale(1.1);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  /*  background:rgba(6,17,30,.97);backdrop-filter:blur(20px); */
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  height: 68px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  color: #fff;
  font-size: 15px;
}

.brand-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  letter-spacing: -.3px
}

.nav-links {
  display: flex;
  gap: 4px
}

.nav-links a {
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all .2s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06)
}

.nav-links a.hi {
  color: var(--cyan)
}

.nav-right {
  display: flex;
  gap: 10px;
  align-items: center
}

.btn-login {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  transition: all .2s;
}

.btn-login:hover {
  border-color: rgba(255, 255, 255, .25);
  color: #fff
}

.btn-demo {
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 8px;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(19, 71, 160, .3);
}

.btn-demo:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px)
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 110px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0, 194, 224, .07) 0%, transparent 65%);
  pointer-events: none
}

.hero-bg2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(19, 71, 160, .12) 0%, transparent 65%);
  pointer-events: none
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 194, 224, .25);
  background: rgba(0, 194, 224, .06);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: up .6s ease both;
}

.hero-chip::before {
  content: '●';
  font-size: 7px;
  animation: blink 2s infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .2
  }
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: up .6s .05s ease both;
}

.hero-h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 6vw, 80px);
  line-height: 1.03;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 28px;
  animation: up .6s .1s ease both;
}

.hero-h1 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -2px;
  background: linear-gradient(90deg, var(--cyan), #5FE8FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .5);
  max-width: 700px;
  margin: 0 auto 44px;
  animation: up .6s .15s ease both;
}

.hero-sub strong {
  color: rgba(255, 255, 255, .8)
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: up .6s .2s ease both;
}

.btn-hero {
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(19, 71, 160, .35);
  transition: all .3s;
}

.btn-hero:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(19, 71, 160, .45)
}

.btn-hero2 {
  color: rgba(255, 255, 255, .6);
  font-size: 15px;
  font-weight: 500;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.btn-hero2:hover {
  color: #fff
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  animation: up .6s .25s ease both;
  justify-content: center;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-pill span {
  font-size: 16px;
}

/* ── Hero Showcase ── */
.hero-showcase {
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.showcase-img {
  width: 100%;
  height: auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-showcase:hover .showcase-img {
  transform: scale(1.02) translateY(-10px);
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── ANIMATIONS ── */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease
}

.r.on {
  opacity: 1;
  transform: translateY(0)
}

.rl {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .7s ease, transform .7s ease
}

.rl.on {
  opacity: 1;
  transform: translateX(0)
}

.rr {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .7s ease, transform .7s ease
}

.rr.on {
  opacity: 1;
  transform: translateX(0)
}

.img-rounded-os {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ── LAYOUT ── */
.section {
  padding: 96px 48px
}

.s-light {
  background: var(--off)
}

.s-white {
  background: #fff
}

.s-dark {
  background: var(--navy)
}

.wrap {
  max-width: 1200px;
  margin: 0 auto
}

.stag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-block;
  margin-bottom: 12px
}

.s-dark .stag {
  color: var(--cyan)
}

.stitle {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.stitle em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: -1px
}

.s-dark .stitle {
  color: #fff
}

.s-dark .stitle em {
  color: var(--cyan)
}

.ssub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate);
  max-width: 560px
}

.s-dark .ssub {
  color: rgba(255, 255, 255, .45)
}

/* ── SERVICES GRID ── */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px
}

.services-all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.srv {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
  cursor: default;
}

.srv::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(0, 194, 224, .04), rgba(19, 71, 160, .04));
  transition: opacity .3s;
}

.srv:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .1);
  border-color: var(--cyan)
}

.srv:hover::before {
  opacity: 1
}

.srv-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px
}

.srv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.srv-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .3px;
  white-space: nowrap;
}

.badge-hot {
  background: #FEF2F2;
  color: var(--red)
}

.badge-new {
  background: #ECFDF5;
  color: var(--green)
}

.badge-core {
  background: #EFF6FF;
  color: var(--blue)
}

.badge-tech {
  background: #F5F3FF;
  color: var(--purple)
}

.srv h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--navy)
}

.srv p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 20px
}

.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  transition: gap .2s;
}

.srv:hover .srv-link {
  gap: 8px
}

.srv-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px
}

.srv-tag span {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--off);
  color: var(--slate);
  border: 1px solid var(--border);
}

/* ── BILLOWN DEEP ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.split.flip {
  direction: rtl
}

.split.flip>* {
  direction: ltr
}

.prod-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0, 194, 224, .2);
  background: rgba(0, 194, 224, .06);
  color: var(--blue);
  margin-bottom: 20px;
}

.prod-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--navy);
  margin-bottom: 18px;
}

.prod-title span {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.prod-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 30px
}

.feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px
}

.feat {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.feat-ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: rgba(19, 71, 160, .1);
  color: var(--blue);
  border: 1px solid rgba(19, 71, 160, .15);
}

.feat-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px
}

.feat-body p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--slate)
}

.prod-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn-p {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 20px rgba(19, 71, 160, .3);
  transition: all .3s;
  border: none;
}

.btn-p:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(19, 71, 160, .4);
  color: #fff;
}

.btn-o {
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: #fff;
  transition: all .2s;
}

.btn-o:hover {
  border-color: var(--blue);
  background: var(--off)
}

.btn-i {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 20px rgba(19, 71, 160, .3);
  transition: all .3s;
}

.btn-i:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(19, 71, 160, .4);
  color: #fff;
}

/* ── BILLOWN MOCK ── */
.bw-mock {
  background: linear-gradient(145deg, var(--navy), #162D4A);
  border-radius: 22px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0, 0, 0, .25);
}

.bw-mock::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 194, 224, .12) 0%, transparent 70%)
}

.inv {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .28)
}

.inv-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px
}

.inv-co {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy)
}

.inv-ok {
  background: #ECFDF5;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px
}

.inv-lines {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px
}

.il {
  height: 7px;
  border-radius: 3px;
  background: #F1F5F9
}

.inv-tot {
  background: #F8FAFF;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.tot-l {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .4px
}

.tot-v {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--navy)
}

.inv-stamp {
  position: absolute;
  right: 18px;
  bottom: -8px;
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  transform: rotate(-2deg);
  letter-spacing: .3px
}

.bw-chips {
  display: flex;
  gap: 8px;
  margin-top: 18px
}

.bchip {
  flex: 1;
  background: rgba(0, 194, 224, .08);
  border: 1px solid rgba(0, 194, 224, .15);
  border-radius: 8px;
  padding: 10px;
  text-align: center
}

.bchip .bi {
  font-size: 16px;
  display: block;
  margin-bottom: 3px
}

.bchip .bl {
  font-size: 10px;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: .2px
}

/* ── SHADOC MOCK ── */
.sh-mock {
  background: linear-gradient(145deg, #100822, #1E1040);
  border-radius: 22px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0, 0, 0, .2);
}

.sh-mock::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(124, 58, 237, .2) 0%, transparent 65%)
}

.doc-list {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.doc {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 10px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  transition: all .3s;
}

.doc:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(124, 58, 237, .3)
}

.doc-i {
  font-size: 18px;
  flex-shrink: 0
}

.doc-inf {
  flex: 1
}

.doc-n {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px
}

.doc-m {
  font-size: 11px;
  color: rgba(255, 255, 255, .3)
}

.doc-s {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap
}

.ds-ok {
  background: rgba(5, 150, 105, .15);
  border: 1px solid rgba(5, 150, 105, .25);
  color: #34D399
}

.ds-wait {
  background: rgba(217, 119, 6, .12);
  border: 1px solid rgba(217, 119, 6, .2);
  color: #FCD34D
}

.sh-footer {
  margin-top: 14px;
  background: rgba(124, 58, 237, .08);
  border: 1px solid rgba(124, 58, 237, .15);
  border-radius: 10px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 10px
}

.sh-footer .ico {
  font-size: 22px
}

.sh-footer .tx {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.5
}

.sh-footer .tx strong {
  color: #A78BFA;
  display: block;
  font-size: 13px;
  margin-bottom: 2px
}

/* ── EXPERTISE SERVICES (dev, mobile, outsourcing) ── */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

#expertise {
  width: 100%;
  /* 	height: 100vh; */
  background: url("../img/home.jpg") top center;
  background-size: cover;
  position: relative;
}

#shadoc {
  width: 100%;
  /* 	height: 100vh; */
  background: #f8f9fa;
  background-size: cover;
  position: relative;
}

#billown {
  width: 100%;
  /* 	height: 100vh; */
  background: #f8f9fa;
  background-size: cover;
  position: relative;
}


.exp {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.exp::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--border);
  transition: background .3s;
  border-radius: 4px 0 0 4px
}

.exp:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .08);
  transform: translateY(-3px)
}

.exp:hover::after {
  background: var(--blue)
}

.exp-icon {
  font-size: 36px;
  margin-bottom: 18px;
  display: block;
  color: var(--blue)
}

.exp h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 10px
}

.exp p {
  font-size: 14px;
  line-height: 1.78;
  color: var(--slate);
  margin-bottom: 18px
}

.exp-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.tech {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--off);
  color: var(--slate);
  border: 1px solid var(--border)
}

/* ── CLIENTS SCROLL ── */
.clients-outer {
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent)
}

.clients-track {
  display: flex;
  gap: 36px;
  align-items: center;
  animation: scroll 22s linear infinite;
  white-space: nowrap
}

@keyframes scroll {
  to {
    transform: translateX(-50%)
  }
}

.clogo {
  height: 40px;
  padding: 0 20px;
  background: rgba(0, 0, 0, .04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: rgba(0, 0, 0, .2);
  letter-spacing: 1px;
  flex-shrink: 0;
  transition: all .3s;
}

.clogo:hover {
  background: rgba(19, 71, 160, .08);
  color: var(--blue)
}

/* ── WHY ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.why {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 26px;
  transition: all .3s;
}

.why:hover {
  background: var(--off);
  border-color: var(--blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05)
}

.why-ico {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
  color: var(--blue)
}

.why h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 9px
}

.why p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate)
}

.why-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(19, 71, 160, .08);
  border: 1px solid rgba(19, 71, 160, .15);
  padding: 3px 10px;
  border-radius: 100px
}

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 52px auto 0;
  border: none;
}

.fi {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.fi.op {
  box-shadow: 0 8px 30px rgba(19, 71, 160, .08)
}

.fi:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.fq {
  width: 100%;
  text-align: left;
  padding: 19px 22px;
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background .2s;
  border: none;
  outline: none;
}

.fi.op .fq,
.fq:hover {
  background: var(--off)
}

.ft {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--border);
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: all .2s;
}

.fi.op .ft {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  font-size: 14px;
  line-height: 1.8;
  color: var(--slate);
  transition: all .35s;
  letter-spacing: 0.3px;
  font-family: inherit !important;
}

.fi.op .faq-a {
  max-height: 500px;
  padding: 12px 24px 24px
}

/* ── CTA ── */
.cta-sec {
  background: linear-gradient(135deg, var(--navy) 0%, #152A50 50%, var(--blue) 120%);
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 194, 224, .1) 0%, transparent 60%)
}

.cta-sec h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 56px);
  color: #fff;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.cta-sec p {
  font-size: 18px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 40px;
  position: relative;
  z-index: 1
}

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

.btn-cm {
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 34px;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(19, 71, 160, .4);
  transition: all .3s;
}

.btn-cm:hover {
  background: var(--navy);
  transform: translateY(-2px)
}

.btn-cg {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, .18);
  background: transparent;
  transition: all .2s;
}

.btn-cg:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .05)
}

/* ── FOOTER ── */
footer {
  background: #040C17;
  padding: 60px 48px 32px
}

.fg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 44px
}

.fb h3 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px
}

.fb p {
  font-size: 13px;
  color: rgba(255, 255, 255, .25);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 16px
}

.f-cert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 194, 224, .06);
  border: 1px solid rgba(0, 194, 224, .12);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan)
}

.fc h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .25);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px
}

.fc a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .38);
  margin-bottom: 8px;
  transition: color .2s
}

.fc a:hover {
  color: var(--cyan)
}

.fcontact p {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 7px
}

.fcontact strong {
  color: rgba(255, 255, 255, .55)
}

.fbot {
  border-top: 1px solid rgba(255, 255, 255, .04);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px
}

.fbot p {
  font-size: 11px;
  color: rgba(255, 255, 255, .15)
}

.fbot-links {
  display: flex;
  gap: 18px
}

.fbot-links a {
  font-size: 11px;
  color: rgba(255, 255, 255, .15);
  transition: color .2s
}

.fbot-links a:hover {
  color: rgba(255, 255, 255, .4)
}

/* ── Solutions Logos ── */
.sol-logo {
  max-height: 80px;
  /* Base height */
  width: 100%;
  transition: all 0.4s ease;
  filter: grayscale(100%);
  opacity: 0.6;
  margin: 0 20px;
  margin-left: 20px;
}

.sol-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.sol-logo-xl {
  max-height: 125px;
}

.sol-logo-lg {
  max-height: 105px;
}

/* ── Device Showcase ── */
.device-showcase {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding-bottom: 60px;
}

/* ── Laptop ── */
.device-laptop {
  position: relative;
  width: 100%;
}

.laptop-screen {
  background: #0f1117;
  border: 10px solid #2a2d3a;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  aspect-ratio: 1905 / 910;
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
  display: block;
}

.laptop-chin {
  background: #2a2d3a;
  height: 14px;
  border-radius: 0 0 4px 4px;
  position: relative;
}

.laptop-chin::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 6px;
  background: #1a1d26;
  border-radius: 4px;
}

.laptop-base {
  background: linear-gradient(to bottom, #3a3d4a, #2a2d3a);
  height: 12px;
  border-radius: 0 0 20px 20px;
  width: 104%;
  margin-left: -2%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ── Phone ── */
.device-phone {
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 28%;
  z-index: 10;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.30));
}

.phone-frame {
  background: #1e2130;
  border-radius: 28px;
  border: 6px solid #2a2d3a;
  padding: 10px 6px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.phone-notch {
  width: 36px;
  height: 5px;
  background: #3a3d4a;
  border-radius: 4px;
}

.phone-screen {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 374 / 828;
  background: #0f1117;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
  display: block;
}

.phone-home {
  width: 28px;
  height: 5px;
  background: #3a3d4a;
  border-radius: 4px;
}

/* ── Device Showcase ── */
.device-showcase {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding-bottom: 60px;
}

/* ── Laptop ── */
.device-laptop {
  position: relative;
  width: 100%;
}

.laptop-screen {
  background: #0f1117;
  border: 10px solid #2a2d3a;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  aspect-ratio: 1905 / 910;
  padding: 0;
}

.laptop-chin {
  background: #2a2d3a;
  height: 14px;
  border-radius: 0 0 4px 4px;
  position: relative;
}

.laptop-chin::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 6px;
  background: #1a1d26;
  border-radius: 4px;
}

.laptop-base {
  background: linear-gradient(to bottom, #3a3d4a, #2a2d3a);
  height: 12px;
  border-radius: 0 0 20px 20px;
  width: 104%;
  margin-left: -2%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ── Phone ── */
.device-phone {
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 26%;
  z-index: 10;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.28));
}

.phone-frame {
  background: #1e2130;
  border-radius: 24px;
  border: 5px solid #2a2d3a;
  padding: 8px 5px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.phone-notch {
  width: 32px;
  height: 5px;
  background: #3a3d4a;
  border-radius: 4px;
}

.phone-screen {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #f8f9ff;
  display: flex;
  flex-direction: column;
}

.phone-home {
  width: 26px;
  height: 5px;
  background: #3a3d4a;
  border-radius: 4px;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .device-phone {
    right: -4px;
    width: 24%;
  }
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .device-phone {
    right: -4px;
    width: 26%;
  }
}

@media(max-width:900px) {

  nav,
  nav .nav-links {
    padding: 0 20px
  }

  .nav-links {
    display: none
  }

  .hero,
  .section,
  .cta-sec,
  footer {
    padding-left: 20px;
    padding-right: 20px
  }

  .hero-h1 {
    font-size: 36px;
    letter-spacing: -2px
  }

  .services-intro,
  .split,
  .expertise-grid,
  .fg {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .split.flip {
    direction: ltr
  }

  .services-all,
  .why-grid {
    grid-template-columns: 1fr
  }
}