:root {
  --primary: #130D2E;
  --primary-dark: #130D2E;
  --primary-light: #636780;
  --accent: #252A4E;
  --teal: #130D2E;
  --deep: #130D2E;
  --white: #ffffff;
  --off-white: #f4f4f9;
  --light-bg: #eeeef6;
  --text-dark: #130D2E;
  --text-mid: #636780;
  --text-light: #636780;
  --border: rgba(37, 42, 78, 0.20);
  --shadow: 0 20px 60px rgba(19, 13, 46, 0.25);
  --shadow-hover: 0 40px 80px rgba(37, 42, 78, 0.35);
  --glass: rgba(255, 255, 255, 0.75);
  --radius: 20px;
  --radius-sm: 12px
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%
}

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: var(--off-white)
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px
}

html,
body {
  overflow-x: hidden
}

.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
  mix-blend-mode: multiply
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.5
}

@media (hover:none),
(pointer:coarse) {

  .cursor,
  .cursor-follower {
    display: none !important
  }
}

#navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1000;
  padding: 0 8px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 42, 78, 0.16);
  box-shadow: 0 4px 32px rgba(19, 13, 46, 0.10), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow: 0 8px 48px rgba(19, 13, 46, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  border-color: rgba(37, 42, 78, 0.24)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0
}

.nav-logo img {
  height: 38px;
  width: auto
}

.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  text-decoration: none;
  white-space: nowrap
}

.nav-logo-text span {
  color: var(--primary)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 5px 6px;
  background: #ffffff63;
  border: 1px solid rgba(37, 42, 78, 0.12);
  border-radius: 100px
}

.nav-links li {
  margin: 0;
  padding: 0
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.2px;
  padding: 7px 14px;
  border-radius: 100px;
  transition: all 0.22s;
  display: block;
  white-space: nowrap;
  text-decoration: none;
  position: relative
}

.nav-links a::after {
  display: none
}

.nav-links a:hover {
  color: var(--white);
  background: var(--primary-dark)
}

.nav-links a.active {
  color: var(--white);
  background: var(--primary-dark);
  font-weight: 800
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s
}

.nav-phone:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: rgba(37, 42, 78, 0.06)
}

.nav-phone-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: navPing 2s ease-in-out infinite
}

@keyframes navPing {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.6;
    transform: scale(1.4)
  }
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--text-dark) 0%, #130D2E 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37, 42, 78, 0.25);
  transition: all 0.28s;
  border: none;
  cursor: pointer
}

.nav-cta:hover {
  box-shadow: 0 8px 28px rgba(37, 42, 78, 0.35);
  transform: translateY(-1px);
  color: #fff
}

.nav-cta-arrow {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.28s;
  flex-shrink: 0
}

.nav-cta:hover .nav-cta-arrow {
  transform: rotate(45deg)
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1050
}

.hamburger:hover {
  background: rgba(37, 42, 78, 0.08)
}

.hamburger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.75px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.25s ease;
  transform-origin: center;
  pointer-events: none
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.75px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.75px) rotate(-45deg)
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  visibility: hidden
}

.mobile-menu.open {
  pointer-events: all;
  visibility: visible
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.38s ease
}

.mobile-menu.open .mobile-menu-backdrop {
  background: rgba(37, 42, 78, 0.48);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px)
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  border-left: 1px solid rgba(37, 42, 78, 0.10);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.10);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.23, 1, 0.32, 1)
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0)
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: max(28px, env(safe-area-inset-top, 28px)) 28px max(32px, env(safe-area-inset-bottom, 32px))
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-shrink: 0
}

.mobile-menu-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px
}

.mobile-menu-logo span {
  color: var(--primary)
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  border: 1px solid rgba(37, 42, 78, 0.22);
  background: var(--off-white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent
}

.mobile-menu-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(90deg)
}

.mobile-menu-close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px
}

.mobile-menu-close svg {
  display: block;
  pointer-events: none
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid rgba(37, 42, 78, 0.08)
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 42, 78, 0.08);
  min-height: 52px;
  transition: color 0.2s, padding-left 0.2s
}

.mobile-menu-nav a::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--primary);
  border-top: 1.5px solid var(--primary);
  transform: rotate(45deg) translateX(-4px);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  color: var(--primary);
  padding-left: 6px
}

.mobile-menu-nav a:hover::after,
.mobile-menu-nav a.active::after {
  opacity: 1;
  transform: rotate(45deg) translateX(0)
}

.mobile-menu-footer {
  margin-top: 28px;
  flex-shrink: 0
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  background: var(--text-dark);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 22px
}

.mobile-cta-btn:hover {
  background: var(--primary);
  transform: translateY(-1px);
  color: #fff
}

.mobile-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.mobile-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.5;
  font-family: 'Poppins', sans-serif
}

.mobile-contact-item span {
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px
}

.marquee-section {
  padding: 20px 0;
  background: var(--primary-dark);
  overflow: hidden;
  position: relative
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
  width: max-content
}

.marquee-track span {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px
}

.marquee-track span::before {
  content: '✦';
  opacity: 0.7
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.page-hero {
  min-height: 60vh;
  background: linear-gradient(135deg, #eeeef6 0%, #ffffff 50%, #ececf4 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 6% 80px
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(37, 42, 78, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 42, 78, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  animation: blobFloat 8s ease-in-out infinite
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  animation-delay: 0s
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--deep);
  bottom: 0;
  left: 10%;
  animation-delay: -3s
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: var(--primary-light);
  top: 40%;
  right: 25%;
  animation-delay: -5s
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(30px, -30px) scale(1.05)
  }
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(50px, 50px)
  }
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px)
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 500
}

.breadcrumb span {
  opacity: 0.5
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 42, 78, 0.1);
  border: 1px solid rgba(37, 42, 78, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase
}

.page-hero-label span {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: block
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5)
  }
}

.page-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 24px
}

.page-hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.page-hero-desc {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300
}

section {
  padding: 100px 6%
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary)
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300
}

.section-header {
  margin-bottom: 64px
}

.section-header.center {
  text-align: center
}

.section-header.center .section-label {
  justify-content: center
}

.section-header.center .section-label::before {
  display: none
}

.section-header.center .section-sub {
  margin: 0 auto
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1)
}

.svc-sticky-active {
  opacity: 1 !important;
  transform: none !important;
  transition: box-shadow 0.3s ease !important
}

.reveal.from-left {
  transform: translateX(-70px)
}

.reveal.from-right {
  transform: translateX(70px)
}

.reveal.scale-in {
  transform: scale(0.88)
}

.reveal.visible {
    padding-top: 10px;
  opacity: 1;
  transform: translate(0, 0) scale(1)
}

.reveal-delay-1 {
  transition-delay: 0.12s !important
}

.reveal-delay-2 {
  transition-delay: 0.24s !important
}

.reveal-delay-3 {
  transition-delay: 0.36s !important
}

.reveal-delay-4 {
  transition-delay: 0.48s !important
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: white;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(37, 42, 78, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal), var(--deep));
  opacity: 0;
  transition: opacity 0.35s
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 42, 78, 0.4)
}

.btn-primary:hover::before {
  opacity: 1
}

.btn-primary span {
  position: relative;
  z-index: 1
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px)
}

.btn-white {
  background: white;
  color: var(--primary-dark);
  padding: 15px 34px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2)
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3)
}

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px)
}

.timeline-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0 40px
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  background: rgba(37, 42, 78, 0.12);
  border-radius: 4px;
  overflow: hidden
}

.timeline-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(180deg, var(--primary), var(--deep));
  border-radius: 4px;
  transition: height 0.2s ease
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 56px;
  position: relative
}

.timeline-item:last-child {
  margin-bottom: 0
}

.tl-left {
  flex-direction: row;
  justify-content: flex-end
}

.tl-left .tl-card {
  margin-right: calc(50% + 40px);
  margin-left: 0
}

.tl-left .tl-dot-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%)
}

.tl-right {
  flex-direction: row
}

.tl-right .tl-card {
  margin-left: calc(50% + 40px)
}

.tl-right .tl-dot-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%)
}

.tl-dot-wrap {
  z-index: 2
}

.tl-dot {
  width: 62px;
  height: 62px;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(37, 42, 78, 0.1), 0 8px 24px rgba(37, 42, 78, 0.22);
  transition: all 0.4s
}

.tl-dot span {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--primary)
}

.timeline-item.visible .tl-dot {
  background: linear-gradient(135deg, var(--primary), var(--deep));
  border-color: transparent;
  box-shadow: 0 0 0 8px rgba(37, 42, 78, 0.12), 0 12px 36px rgba(37, 42, 78, 0.3);
  animation: dotPulse 2.4s ease-in-out infinite
}

.timeline-item.visible .tl-dot span {
  color: white
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(37, 42, 78, 0.12), 0 12px 36px rgba(37, 42, 78, 0.3)
  }

  50% {
    box-shadow: 0 0 0 16px rgba(37, 42, 78, 0.06), 0 12px 36px rgba(37, 42, 78, 0.3)
  }
}

.tl-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px 24px;
  width: calc(50% - 60px);
  box-shadow: 0 8px 32px rgba(19, 13, 46, 0.06);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1)
}

.tl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(19, 13, 46, 0.14);
  border-color: rgba(37, 42, 78, 0.3)
}

.tl-left .tl-card::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left-color: white;
  border-right: none;
  filter: drop-shadow(2px 0 2px rgba(19, 13, 46, 0.06))
}

.tl-right .tl-card::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-right-color: white;
  border-left: none;
  filter: drop-shadow(-2px 0 2px rgba(19, 13, 46, 0.06))
}

.tl-icon {
  font-size: 32px;
  margin-bottom: 10px
}

.tl-step-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px
}

.tl-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px
}

.tl-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px
}

.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.tl-tags span {
  font-size: 11px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
  background: rgba(37, 42, 78, 0.08);
  border: 1px solid rgba(37, 42, 78, 0.2);
  padding: 3px 10px;
  border-radius: 20px
}

.timeline-item.reveal {
  opacity: 0
}

.tl-left.reveal {
  transform: translateX(-50px)
}

.tl-right.reveal {
  transform: translateX(50px)
}

.timeline-item.reveal.visible {
  opacity: 1;
  transform: translateX(0)
}

.journey-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto
}

.journey-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border)
}

.journey-fill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--deep));
  height: 0%;
  transition: height 0.1s
}

.journey-item {
  display: flex;
  gap: 48px;
  margin-bottom: 60px;
  align-items: flex-start;
  position: relative
}

.journey-item:nth-child(even) {
  flex-direction: row-reverse
}

.journey-content {
  flex: 1;
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(19, 13, 46, 0.05);
  transition: all 0.3s
}

.journey-content:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px)
}

.journey-dot {
  width: 48px;
  height: 48px;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(37, 42, 78, 0.1);
  position: relative;
  z-index: 2
}

.journey-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px
}

.journey-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px
}

.journey-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7
}

.numbers-bar {
  background: linear-gradient(135deg, var(--text-dark), #1a1640);
  position: relative;
  overflow: hidden;
  padding: 80px 6%
}

.numbers-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(37, 42, 78, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 42, 78, 0.04) 1px, transparent 1px);
  background-size: 40px 40px
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.number-item {
  padding: 48px 24px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.06)
}

.number-item:last-child {
  border-right: none
}

.number-val {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1
}

.number-plus {
  font-size: 0.6em;
  vertical-align: super
}

.number-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
  font-weight: 300
}

.number-icon {
  font-size: 28px;
  margin-bottom: 16px
}

.cta-section {
  padding: 100px 6%;
  background: linear-gradient(135deg, var(--text-dark), #130D2E);
  position: relative;
  overflow: hidden;
  text-align: center
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 42, 78, 0.12), transparent 65%)
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(37, 42, 78, 0.06) 1px, transparent 1px);
  background-size: 20px 20px
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px
}

.cta-title .highlight {
  color: var(--primary-light)
}

.cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  font-weight: 300
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap
}

footer {
  background: #1a1830;
  color: white;
  padding: 80px 6% 32px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10)
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 280px;
  margin-top: 16px
}

.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px
}

.footer-logo-text span {
  color: #a8a4c8
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.05)
}

.social-btn:hover {
  background: #a8a4c8;
  border-color: #a8a4c8;
  color: white;
  transform: translateY(-3px)
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s
}

.footer-links a:hover {
  color: #c8c4e0;
  padding-left: 6px
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.40)
}

.footer-bottom-links {
  display: flex;
  gap: 24px
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s
}

.footer-bottom-links a:hover {
  color: var(--primary-light)
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 500;
  box-shadow: 0 8px 24px rgba(37, 42, 78, 0.35);
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  border: none
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 42, 78, 0.45)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: flex-start
}

.contact-info {
  position: sticky;
  top: 120px
}

.contact-info-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px
}

.contact-info-sub {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(37, 42, 78, 0.1);
  border: 1px solid rgba(37, 42, 78, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0
}

.contact-detail-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px
}

.contact-detail-text span {
  font-size: 14px;
  color: var(--text-light)
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 36px
}

.contact-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s
}

.contact-social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px)
}

.contact-form-wrap {
  background: white;
  border-radius: 28px;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px
}

.form-group {
  margin-bottom: 20px
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all 0.3s;
  outline: none;
  -webkit-appearance: none
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(37, 42, 78, 0.08)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light)
}

.form-group textarea {
  min-height: 140px;
  resize: vertical
}

.form-group select {
  cursor: pointer
}

.form-submit {
  width: 100%;
  padding: 17px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.35s;
  box-shadow: 0 8px 32px rgba(37, 42, 78, 0.3);
  letter-spacing: 0.5px
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 42, 78, 0.4)
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px
}

.form-success .success-icon {
  font-size: 60px;
  margin-bottom: 16px
}

.form-success h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px
}

.form-success p {
  color: var(--text-light)
}

.map-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 40px
}

.map-placeholder {
  background: linear-gradient(135deg, #eeeef6, #e8e8f0);
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px
}

.map-placeholder span {
  font-size: 48px
}

.map-placeholder p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 15px
}

.map-placeholder small {
  font-size: 13px;
  color: var(--text-light)
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: white
}

.faq-q {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.3s;
  gap: 16px
}

.faq-q:hover {
  color: var(--primary)
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(37, 42, 78, 0.1);
  border: 1px solid rgba(37, 42, 78, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--primary);
  font-weight: 700
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 28px 22px
}

.faq-a p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7
}

@media (max-width:1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .contact-info {
    position: static
  }
}

@media (max-width:900px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }
}

@media (max-width:768px) {

  .tl-left .tl-card,
  .tl-right .tl-card {
    margin-left: 0;
    margin-right: 0;
    width: 100%
  }

  .timeline-line {
    left: 24px
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px
  }

  .tl-left,
  .tl-right {
    flex-direction: column;
    justify-content: flex-start
  }

  .tl-left .tl-dot-wrap,
  .tl-right .tl-dot-wrap {
    position: absolute;
    left: 0;
    transform: none
  }

  .tl-left .tl-card::after,
  .tl-right .tl-card::before {
    display: none
  }

  .journey-item,
  .journey-item:nth-child(even) {
    flex-direction: column
  }

  .journey-line,
  .journey-fill {
    left: 24px
  }

  .journey-item {
    padding-left: 60px
  }
}

@media (max-width:600px) {

  .numbers-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .contact-form-wrap {
    padding: 28px 20px
  }
}

.story {
  background: var(--off-white);
  position: relative;
  overflow: hidden
}

.story::before {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 42, 78, 0.06), transparent 70%)
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.story-visual {
  position: relative
}

.story-img-stack {
  position: relative;
  height: 500px
}

.story-img-main {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  background: linear-gradient(135deg, var(--primary), var(--deep));
  border-radius: 24px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  box-shadow: 0 30px 80px rgba(19, 13, 46, 0.2);
  overflow: hidden
}

.story-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 42, 78, 0.3), transparent)
}

.story-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 280px;
  background: linear-gradient(135deg, #f4f4f9, #e8e8f0);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  box-shadow: 0 20px 60px rgba(19, 13, 46, 0.12);
  border: 1px solid var(--border)
}

.story-badge {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: white;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(19, 13, 46, 0.18);
  border: 1px solid var(--border);
  text-align: center;
  animation: floatUp 4s ease-in-out infinite
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.story-badge-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1
}

.story-badge-text {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500
}

.story-year-badge {
  position: absolute;
  top: 10%;
  left: -10%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(37, 42, 78, 0.3);
  animation: floatUp 5s ease-in-out infinite;
  animation-delay: -2s;
  text-align: center
}

.story-year-badge strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: block
}

.story-year-badge span {
  font-size: 11px;
  opacity: 0.85
}

.story-text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300
}

.story-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.story-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border);
  transition: all 0.3s
}

.story-point:hover {
  box-shadow: var(--shadow);
  transform: translateX(8px);
  border-color: var(--primary-light)
}

.story-point-icon {
  width: 40px;
  height: 40px;
  background: rgba(37, 42, 78, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0
}

.story-point-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark)
}

.story-point-text span {
  font-size: 13px;
  color: var(--text-light)
}

.team {
  background: var(--white)
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px
}

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--off-white);
  transition: all 0.4s;
  position: relative
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light)
}

.team-avatar {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.team-avatar-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--light-bg), #e0e0f0)
}

.team-avatar-emoji {
  font-size: 80px;
  position: relative;
  z-index: 1
}

.team-avatar-decor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(37, 42, 78, 0.06), transparent)
}

.team-info {
  padding: 24px 20px
}

.team-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px
}

.team-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px
}

.team-bio {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6
}

.team-social {
  display: flex;
  gap: 8px;
  margin-top: 16px
}

.team-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-light);
  transition: all 0.3s
}

.team-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white
}

.journey-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden
}

.values {
  background: var(--white)
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.value-card {
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  background: var(--off-white)
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--deep));
  opacity: 0;
  transition: opacity 0.4s
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover)
}

.value-card:hover::before {
  opacity: 1
}

.value-card:hover .value-icon,
.value-card:hover .value-title,
.value-card:hover .value-text {
  color: white
}

.value-card:hover .value-icon-wrap {
  background: rgba(255, 255, 255, 0.2)
}

.value-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(37, 42, 78, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: background 0.3s
}

.value-icon {
  font-size: 28px;
  position: relative;
  z-index: 1;
  transition: color 0.3s
}

.value-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: color 0.3s
}

.value-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  transition: color 0.3s
}

@media (max-width:900px) {

  .story-grid,
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:600px) {

  .story-grid,
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr
  }

  .story-img-stack {
    height: 360px
  }
}

.contact-section {
  background: var(--white)
}

.contact-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 42, 78, 0.1), transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: all 0.3s
}

.trust-badge:hover {
  border-color: var(--primary);
  transform: translateX(6px)
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 42, 78, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0
}

.trust-badge-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark)
}

.trust-badge-text span {
  font-size: 12px;
  color: var(--text-light)
}

.faq-section {
  background: var(--off-white)
}

.offices-row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-top: 60px
}

.office-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s
}

.office-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(37, 42, 78, 0.3)
}

.office-flag {
  font-size: 36px;
  margin-bottom: 16px
}

.office-city {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px
}

.office-country {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase
}

.office-address {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6
}

@media (max-width:900px) {
  .offices-row {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:600px) {
  .offices-row {
    grid-template-columns: 1fr
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: #0d0d0d
}

.hero-bg-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background: #0d0d0d
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border: none;
  pointer-events: none
}

.hero::before {
  display: none
}

.hero-text {
  display: none !important
}

.hero-stats {
  display: none !important
}

.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3%;
  pointer-events: none
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none
}

.hero-masonry-phones {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: -160px;
  pointer-events: none
}

.hmp-slot {
  position: relative;
  flex-shrink: 0;
  pointer-events: auto
}

.hmp-slot-left {
  width: 220px;
  margin-bottom: 60px
}

.hmp-slot-centre {
  display: none
}

.hmp-slot-right {
  width: 220px;
  margin-bottom: 60px;
  z-index: 5
}

.hmp-slot-left .hmp-phone {
  animation: hmpFloat1 7s ease-in-out infinite
}

.hmp-slot-centre .hmp-phone {
  animation: hmpFloat2 6s ease-in-out infinite
}

.hmp-slot-right .hmp-phone {
  animation: hmpFloat3 7.5s ease-in-out infinite
}

@keyframes hmpFloat1 {

  0%,
  100% {
    transform: translateY(0) rotateY(-4deg) rotateX(1deg)
  }

  50% {
    transform: translateY(-14px) rotateY(-2deg) rotateX(0deg)
  }
}

@keyframes hmpFloat2 {

  0%,
  100% {
    transform: translateY(0) rotateY(0deg) rotateX(2deg)
  }

  50% {
    transform: translateY(-20px) rotateY(0deg) rotateX(0deg)
  }
}

@keyframes hmpFloat3 {

  0%,
  100% {
    transform: translateY(0) rotateY(4deg) rotateX(1deg)
  }

  50% {
    transform: translateY(-12px) rotateY(2deg) rotateX(0deg)
  }
}

.hmp-phone {
  position: relative;
  width: 100%
}

.hmp-shell {
  position: relative;
  width: 100%;
  background: linear-gradient(175deg, #c8cdd4 0%, #d8dde4 8%, #b8bec7 18%, #cdd2d9 30%, #b2b8c2 42%, #c4cad2 55%, #adb4be 68%, #c0c7d0 80%, #b6bcc6 90%, #cdd2d8 100%);
  border-radius: 52px;
  padding: 8px 6px 9px;
  box-shadow: 0 0 0 1px rgba(80, 90, 105, 0.55), 0 36px 90px rgba(0, 0, 0, 0.60), 0 12px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -1px 0 rgba(0, 0, 0, 0.18)
}

.hmp-shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9) 50%, transparent);
  border-radius: 50%;
  z-index: 2
}

.hmp-shell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(40, 50, 65, 0.4), transparent);
  border-radius: 50%;
  z-index: 2
}

.hmp-btn-action {
  position: absolute;
  left: -4px;
  top: 80px;
  width: 4px;
  height: 32px;
  background: linear-gradient(180deg, #9aa4b0, #b8c0ca, #a0aab5, #bcc4ce, #98a2ae);
  border-radius: 2.5px 0 0 2.5px;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5)
}

.hmp-btn-vol-up {
  position: absolute;
  left: -4px;
  top: 126px;
  width: 4px;
  height: 46px;
  background: linear-gradient(180deg, #9aa4b0, #b8c0ca, #a0aab5, #bcc4ce, #98a2ae);
  border-radius: 2.5px 0 0 2.5px;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5)
}

.hmp-btn-vol-down {
  position: absolute;
  left: -4px;
  top: 182px;
  width: 4px;
  height: 46px;
  background: linear-gradient(180deg, #9aa4b0, #b8c0ca, #a0aab5, #bcc4ce, #98a2ae);
  border-radius: 2.5px 0 0 2.5px;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5)
}

.hmp-btn-power {
  position: absolute;
  right: -4px;
  top: 108px;
  width: 4px;
  height: 64px;
  background: linear-gradient(180deg, #9aa4b0, #b8c0ca, #a0aab5, #bcc4ce, #98a2ae);
  border-radius: 0 2.5px 2.5px 0;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5)
}

.hmp-btn-cam-ctrl {
  position: absolute;
  right: -4px;
  top: 194px;
  width: 4px;
  height: 44px;
  background: linear-gradient(180deg, #9aa4b0, #b8c0ca, #a0aab5, #bcc4ce, #98a2ae);
  border-radius: 0 2.5px 2.5px 0;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5)
}

.hmp-bezel {
  background: #080808;
  border-radius: 43px;
  overflow: hidden;
  position: relative;
  padding: 1.5px
}

.hmp-screen {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: #000;
  border-radius: 41px;
  overflow: hidden;
  position: relative;
  display: block
}

.hmp-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 72px;
  height: 22px;
  background: #000;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.05), 0 2px 8px rgba(0, 0, 0, 0.6)
}

.hmp-island-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a2535, #000);
  border: 0.5px solid rgba(255, 255, 255, 0.08)
}

.hmp-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none
}

.hmp-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.015) 40%, transparent 65%);
  pointer-events: none;
  z-index: 30;
  border-radius: 41px 0 0 41px
}

.hmp-bar {
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 4px;
  background: rgba(255, 255, 255, 0.30);
  border-radius: 3px;
  z-index: 30
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  animation: hintBounce 2.5s ease-in-out infinite
}

.hero-scroll-hint span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8)
}

.hero-scroll-hint svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.8);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

@keyframes hintBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(6px)
  }
}

@media (max-width:1024px) {
  .hero-masonry-phones {
    margin-bottom: -130px
  }

  .hmp-slot-left {
    width: 185px;
    margin-bottom: 60px
  }

  .hmp-slot-centre {
    display: none
  }

  .hmp-slot-right {
    width: 185px;
    margin-bottom: 0
  }

  .hmp-shell {
    border-radius: 44px;
    padding: 10px 8px 12px
  }

  .hmp-bezel {
    border-radius: 36px
  }

  .hmp-screen {
    border-radius: 34px
  }
}

@media (max-width:768px) {
  .hero-inner {
    padding: 0 2%
  }

  .hero-masonry-phones {
    margin-bottom: -90px
  }

  .hmp-slot-left {
    width: 120px;
    margin-bottom: 45px
  }

  .hmp-slot-centre {
    display: none
  }

  .hmp-slot-right {
    width: 120px;
    margin-bottom: 0
  }

  .hmp-shell {
    border-radius: 36px;
    padding: 8px 6px 10px
  }

  .hmp-bezel {
    border-radius: 29px
  }

  .hmp-screen {
    border-radius: 27px
  }

  .hmp-island {
    width: 56px;
    height: 18px;
    top: 7px
  }

  .hmp-island-dot {
    width: 6px;
    height: 6px
  }

  .hmp-btn-action {
    left: -3px;
    top: 56px;
    width: 3px;
    height: 22px
  }

  .hmp-btn-vol-up {
    left: -3px;
    top: 86px;
    width: 3px;
    height: 32px
  }

  .hmp-btn-vol-down {
    left: -3px;
    top: 126px;
    width: 3px;
    height: 32px
  }

  .hmp-btn-power {
    right: -3px;
    top: 74px;
    width: 3px;
    height: 44px
  }

  .hmp-btn-cam-ctrl {
    right: -3px;
    top: 130px;
    width: 3px;
    height: 30px
  }

  .hero-scroll-hint {
    bottom: 20px
  }
}

@media (max-width:480px) {
  .hero-masonry-phones {
    margin-bottom: -70px
  }

  .hmp-slot-left {
    width: 100px;
    margin-bottom: 35px
  }

  .hmp-slot-centre {
    display: none
  }

  .hmp-slot-right {
    width: 100px;
    margin-bottom: 0
  }
}

.hero-label {
  display: none !important
}

.hero-title {
  display: none !important
}

.hero-desc {
  display: none !important
}

.hero-actions {
  display: none !important
}

.hero-stat-item {
  display: none !important
}

.hero-stat-num {
  display: none !important
}

.hero-stat-label {
  display: none !important
}

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-top: 0;
  line-height: 0;
  z-index: 6;
  background: transparent;
  pointer-events: none
}

.hdv-svg {
  display: block;
  width: 100%;
  height: 90px
}

.hdv-wave-line {
  stroke-dasharray: 200 100;
  animation: waveSweep 3s ease-in-out infinite
}

@keyframes waveSweep {
  0% {
    stroke-dashoffset: 0;
    stroke-opacity: 0.5
  }

  50% {
    stroke-dashoffset: -500;
    stroke-opacity: 1
  }

  100% {
    stroke-dashoffset: -1000;
    stroke-opacity: 0.5
  }
}

.hdv-wave-line2 {
  stroke-dasharray: 100 150;
  animation: waveSweep2 4s ease-in-out infinite reverse
}

@keyframes waveSweep2 {
  0% {
    stroke-dashoffset: 0;
    stroke-opacity: 0.3
  }

  50% {
    stroke-dashoffset: -400;
    stroke-opacity: 0.7
  }

  100% {
    stroke-dashoffset: -800;
    stroke-opacity: 0.3
  }
}

@media (max-width:768px) {
  .hdv-svg {
    height: 60px
  }
}

@media (max-width:480px) {
  .hdv-svg {
    height: 45px
  }
}

.hero-3d-card {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1/1;
  position: relative;
  transform-style: preserve-3d;
  animation: heroCardFloat 6s ease-in-out infinite
}

@keyframes heroCardFloat {

  0%,
  100% {
    transform: translateY(0) rotateX(3deg) rotateY(-5deg)
  }

  50% {
    transform: translateY(-20px) rotateX(-3deg) rotateY(5deg)
  }
}

.hero-main-card {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(19, 13, 46, 0.18), 0 0 0 1px rgba(37, 42, 78, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f4f4f9 0%, #e8e8f0 100%)
}

.hero-card-content {
  position: relative;
  z-index: 2;
  width: 80%
}

.orbit-container {
  position: absolute;
  inset: -20%;
  animation: rotate 20s linear infinite
}

.orbit {
  border-radius: 50%;
  border: 1.5px dashed rgba(37, 42, 78, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.orbit-1 {
  width: 70%;
  padding-top: 70%;
  margin-top: -35%;
  margin-left: -35%
}

.orbit-2 {
  width: 85%;
  padding-top: 85%;
  margin-top: -42.5%;
  margin-left: -42.5%;
  animation: rotate 30s linear infinite reverse;
  opacity: 0.5
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0)
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

.orbit-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: calc(50% - 5px);
  box-shadow: 0 0 10px var(--primary)
}

.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 10px 30px rgba(19, 13, 46, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  border: 1px solid rgba(37, 42, 78, 0.12);
  animation: floatUp 4s ease-in-out infinite
}

.float-card-1 {
  top: 8%;
  right: -8%;
  animation-delay: 0s
}

.float-card-2 {
  bottom: 15%;
  left: -10%;
  animation-delay: -2s
}

.float-card-3 {
  top: 50%;
  right: -12%;
  animation-delay: -1s
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px
}

.float-icon.blue {
  background: rgba(37, 42, 78, 0.12)
}

.float-icon.teal {
  background: rgba(19, 13, 46, 0.12)
}

.float-icon.deep {
  background: rgba(19, 13, 46, 0.08)
}

.float-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark)
}

.float-value {
  font-size: 11px;
  color: var(--text-light)
}

.hero-center-graphic {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary), var(--deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(37, 42, 78, 0.35);
  position: relative
}

.hero-center-inner {
  width: 80%;
  height: 80%;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.hero-center-inner img {
  width: 70%;
  height: 70%;
  object-fit: contain
}

.about {
  background: var(--off-white);
  position: relative;
  overflow: hidden
}

.about::before {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 42, 78, 0.06), transparent 70%)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.about-visual {
  position: relative
}

.about-main-img {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(19, 13, 46, 0.15)
}

.about-main-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 42, 78, 0.08), transparent);
  z-index: 1
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #ececf4, #e8e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(19, 13, 46, 0.18);
  border: 1px solid var(--border);
  text-align: center;
  animation: floatUp 4s ease-in-out infinite
}

.about-badge-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1
}

.about-badge-text {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500
}

.about-badge-2 {
  position: absolute;
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(37, 42, 78, 0.3);
  animation: floatUp 5s ease-in-out infinite;
  animation-delay: -2s;
  display: flex;
  align-items: center;
  gap: 10px
}

.about-badge-2 span {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700
}

.about-text .about-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border);
  transition: all 0.3s
}

.about-point:hover {
  box-shadow: var(--shadow);
  transform: translateX(8px);
  border-color: var(--primary-light)
}

.about-point-icon {
  width: 40px;
  height: 40px;
  background: rgba(37, 42, 78, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0
}

.about-point-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark)
}

.about-point-text span {
  font-size: 13px;
  color: var(--text-light)
}

.services {
  background: var(--white)
}

.numbers-section {
  background: linear-gradient(135deg, var(--text-dark), #1a1640);
  position: relative;
  overflow: hidden;
  padding: 80px 6%
}

.numbers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(37, 42, 78, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 42, 78, 0.04) 1px, transparent 1px);
  background-size: 40px 40px
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.number-item {
  padding: 48px 24px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.06)
}

.number-item:last-child {
  border-right: none
}

.number-val {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1
}

.number-plus {
  font-size: 0.6em;
  vertical-align: super
}

.number-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
  font-weight: 300
}

.number-icon {
  font-size: 28px;
  margin-bottom: 16px
}

.process {
  background: var(--off-white);
  overflow: hidden
}

.process-steps {
  display: flex;
  gap: 0;
  position: relative
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--deep));
  z-index: 0
}

.process-step {
  flex: 1;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  text-align: center
}

.step-num-wrap {
  width: 80px;
  height: 60px;
  margin: 0 auto 24px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--primary);
  position: relative;
  box-shadow: 0 8px 32px rgba(37, 42, 78, 0.2);
  transition: all 0.3s
}

.step-num-wrap:hover {
  transform: scale(1.1);
  background: var(--primary)
}

.step-num-wrap:hover .step-num {
  color: white
}

.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary)
}

.step-icon {
  font-size: 28px;
  margin-bottom: 12px
}

.step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px
}

.step-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6
}

.why-us {
  background: var(--white)
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.why-card {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 28px 22px;
  border: 1px solid var(--border);
  transition: all 0.35s;
  cursor: default;
  position: relative;
  overflow: hidden
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--deep));
  transition: width 0.4s
}

.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
  border-color: var(--primary-light)
}

.why-card:hover::after {
  width: 100%
}

.why-card:nth-child(2) {
  margin-top: 24px
}

.why-card:nth-child(4) {
  margin-top: 24px
}

.why-icon {
  font-size: 32px;
  margin-bottom: 12px
}

.why-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px
}

.why-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6
}

.nvt-section {
  background: linear-gradient(170deg, #eeeef6 0%, #f4f4f9 55%, #ffffff 100%);
  padding: 110px 6vw;
  overflow: hidden
}

.nvt-head {
  max-width: 760px;
  margin: 0 auto 14px;
  text-align: center
}

.nvt-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent)
}

.nvt-label::before {
  content: '';
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent))
}

.nvt-label::after {
  content: '';
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent)
}

.nvt-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.18;
  margin-top: 16px;
  letter-spacing: -0.5px
}

.nvt-title .hl {
  background: linear-gradient(120deg, #252A4E, #5b5fb0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.nvt-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px auto 56px;
  font-size: 14px;
  color: var(--text-mid);
  flex-wrap: wrap
}

.nvt-trust b {
  color: var(--primary);
  font-weight: 700
}

.nvt-trust .stars {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 16px
}

.nvt-trust .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(37, 42, 78, .3)
}

.nvt-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 24px;
  align-items: stretch
}

.nvt-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.nvt-feat {
  position: relative;
  background: linear-gradient(150deg, #1b1442 0%, #130D2E 60%, #0d0920 100%);
  border-radius: 28px;
  padding: 48px 46px;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  box-shadow: 0 30px 70px rgba(19, 13, 46, .35)
}

.nvt-feat::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 110, 220, .35), transparent 65%)
}

.nvt-qmark {
  position: absolute;
  top: 24px;
  right: 34px;
  font-family: 'Montserrat', sans-serif;
  font-size: 160px;
  line-height: .7;
  font-weight: 900;
  color: rgba(255, 255, 255, .06);
  pointer-events: none
}

.nvt-feat-top {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1
}

.nvt-feat-top .stars {
  color: #F59E0B;
  letter-spacing: 2px;
  font-size: 16px
}

.nvt-metric {
  margin-left: auto;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 7px 14px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px
}

.nvt-metric span {
  color: #8b8fe0
}

.nvt-feat-quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.5;
  margin: 28px 0;
  position: relative;
  z-index: 1;
  letter-spacing: -0.3px
}

.nvt-feat-author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 24px
}

.nvt-av {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #5b5fb0, #9da1f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #130D2E;
  flex-shrink: 0
}

.nvt-feat-meta {
  flex: 1
}

.nvt-feat-author .nm {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px
}

.nvt-feat-author .rl {
  font-size: 13px;
  color: #a8abc9;
  margin-top: 2px
}

.nvt-vf {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #a8abc9;
  flex-shrink: 0
}

.nvt-card {
  background: #fff;
  border: 1px solid rgba(37, 42, 78, .12);
  border-radius: 22px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  box-shadow: 0 6px 18px rgba(19, 13, 46, .05);
  position: relative;
  overflow: hidden
}

.nvt-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #5b5fb0, #130D2E);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease
}

.nvt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(19, 13, 46, .14);
  border-color: transparent
}

.nvt-card:hover::before {
  transform: scaleY(1)
}

.nvt-card .stars {
  color: #F59E0B;
  letter-spacing: 1.5px;
  font-size: 13px;
  margin-bottom: 14px
}

.nvt-card-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 20px
}

.nvt-card-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.nvt-av-sm {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #252A4E, #130D2E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0
}

.nvt-card-meta .nm {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--accent)
}

.nvt-card-meta .rl {
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 2px
}

@media (max-width:960px) {
  .nvt-grid {
    grid-template-columns: 1fr
  }

  .nvt-feat {
    min-height: auto
  }
}

@media (max-width:560px) {
  .nvt-right {
    grid-template-columns: 1fr
  }

  .nvt-feat {
    padding: 36px 28px
  }

  .nvt-section {
    padding: 80px 5vw
  }

  .nvt-trust {
    gap: 10px
  }
}

.hero-mobiles-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 520px;
  margin: 0 auto;
  perspective: 1200px;
  transform-style: preserve-3d
}

.phone-frame {
  position: absolute;
  transform-style: preserve-3d
}

.phone-main {
  width: 168px;
  bottom: 20px;
  left: 50%;
  margin-left: -120px;
  z-index: 3;
  animation: phoneFloat1 5.5s ease-in-out infinite;
  transform: rotateY(18deg) rotateX(6deg) translateZ(30px)
}

@keyframes phoneFloat1 {

  0%,
  100% {
    transform: rotateY(18deg) rotateX(6deg) translateZ(30px) translateY(0)
  }

  50% {
    transform: rotateY(14deg) rotateX(3deg) translateZ(40px) translateY(-18px)
  }
}

.phone-secondary {
  width: 136px;
  top: 30px;
  right: 10px;
  z-index: 2;
  opacity: 0.92;
  animation: phoneFloat2 6.5s ease-in-out infinite;
  transform: rotateY(-22deg) rotateX(8deg) translateZ(0)
}

@keyframes phoneFloat2 {

  0%,
  100% {
    transform: rotateY(-22deg) rotateX(8deg) translateZ(0) translateY(0)
  }

  50% {
    transform: rotateY(-18deg) rotateX(4deg) translateZ(10px) translateY(-12px)
  }
}

.phone-shell {
  width: 100%;
  background: linear-gradient(160deg, #1a1640 0%, #252A4E 60%, #130D2E 100%);
  border-radius: 36px;
  border: 2px solid rgba(37, 42, 78, 0.25);
  padding: 14px 8px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 30px 70px rgba(0, 0, 0, 0.45), 0 0 40px rgba(37, 42, 78, 0.12), 4px 8px 20px rgba(0, 0, 0, 0.6)
}

.phone-shell::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 80px;
  width: 3px;
  height: 50px;
  background: linear-gradient(180deg, #2a3f5a, #130D2E);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 30px 0 #130D2E
}

.phone-shell::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 60px;
  width: 3px;
  height: 32px;
  background: linear-gradient(180deg, #2a3f5a, #130D2E);
  border-radius: 3px 0 0 3px;
  box-shadow: 0 42px 0 #130D2E
}

.phone-island {
  width: 70px;
  height: 22px;
  background: #000;
  border-radius: 20px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px
}

.phone-island-cam {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a3a5a, #000);
  border: 1px solid rgba(37, 42, 78, 0.3);
  position: relative
}

.phone-island-cam::after {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(37, 42, 78, 0.7);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.phone-island-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #111;
  border: 1px solid #222
}

.phone-screen {
  width: 100%;
  aspect-ratio: 9/18;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6)
}

.phone-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  transform: scale(1.02)
}

.phone-home-bar {
  width: 40%;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  margin: 10px auto 0
}

.phone-edge-light {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 40%, transparent 60%, rgba(37, 42, 78, 0.05) 100%);
  pointer-events: none
}

.phone-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0
}

.phone-glow-main {
  width: 200px;
  height: 80px;
  background: rgba(37, 42, 78, 0.28);
  bottom: -10px;
  left: 50%;
  margin-left: -130px;
  animation: glowPulse 5.5s ease-in-out infinite
}

.phone-glow-sec {
  width: 150px;
  height: 60px;
  background: rgba(19, 13, 46, 0.22);
  top: 120px;
  right: -10px;
  animation: glowPulse 6.5s ease-in-out infinite
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: .7;
    transform: scaleX(1)
  }

  50% {
    opacity: 1;
    transform: scaleX(1.15)
  }
}

.phone-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px dashed rgba(37, 42, 78, 0.22);
  bottom: 10px;
  left: 50%;
  margin-left: -120px;
  animation: ringRotate 18s linear infinite;
  z-index: 1;
  pointer-events: none
}

.phone-ring::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -5px
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.hero-mobiles-wrap .m-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: 0 12px 36px rgba(19, 13, 46, 0.18), 0 0 0 1px rgba(37, 42, 78, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: floatUp 4s ease-in-out infinite
}

.hero-mobiles-wrap .m-badge-1 {
  top: 5%;
  left: -2%;
  animation-delay: 0s
}

.hero-mobiles-wrap .m-badge-2 {
  bottom: 8%;
  right: -4%;
  animation-delay: -2.2s
}

.hero-mobiles-wrap .m-badge-3 {
  top: 48%;
  left: -8%;
  animation-delay: -1s
}

.m-badge-icon {
  font-size: 22px
}

.m-badge-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2
}

.m-badge-val {
  font-size: 11px;
  color: var(--primary-dark);
  font-weight: 600
}

@media(max-width:1024px) {

  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .services-grid {
    grid-template-columns: 1fr 1fr
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  section {
    padding: 70px 5%
  }

  #services .services-grid {
    display: block;
    gap: 0;
    padding-bottom: 40px
  }

  #services .service-card {
    position: sticky;
    top: 90px;
    width: 100%;
    min-height: 220px;
    margin: 0 0 22px;
    border-radius: 20px;
    border: 1px solid rgba(37,42,78,.08);
    box-shadow: 0 -6px 20px rgba(19,13,46,.05),0 14px 34px rgba(19,13,46,.10);
    opacity: 1 !important;
    transform: none !important;
    transition: box-shadow .35s ease,border-color .35s ease !important;
    will-change: transform, opacity;
    transform-origin: center top;
    backface-visibility: hidden
  }

  #services .service-card:nth-child(1) { z-index: 1 }
  #services .service-card:nth-child(2) { z-index: 2 }
  #services .service-card:nth-child(3) { z-index: 3 }
  #services .service-card:nth-child(4) { z-index: 4 }
  #services .service-card:nth-child(5) { z-index: 5 }
  #services .service-card:nth-child(6) { z-index: 6 }

  #services .service-card:last-child {
    margin-bottom: 0
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .process-steps {
    flex-direction: column
  }

  .process-steps::before {
    display: none
  }

  .why-cards {
    grid-template-columns: 1fr
  }

  .why-card:nth-child(2),
  .why-card:nth-child(4) {
    margin-top: 0
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px
  }
}

@media(max-width:768px) {
  .hero-mobiles-wrap {
    height: 380px;
    max-width: 340px
  }

  .phone-main {
    width: 130px;
    margin-left: -90px
  }

  .phone-secondary {
    width: 108px;
    right: 0
  }

  .phone-ring {
    width: 170px;
    height: 170px;
    margin-left: -90px
  }
}

.nova-phone-scene {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: auto;
  min-height: 580px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center
}

.nps-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0
}

.nps-glow-a {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(150, 160, 175, 0.22) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: npsGlowPulse 4s ease-in-out infinite
}

.nps-glow-b {
  width: 220px;
  height: 90px;
  background: rgba(140, 150, 165, 0.15);
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: npsGlowPulse 5.5s ease-in-out infinite reverse
}

@keyframes npsGlowPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1)
  }
}

.nps-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1.5px dashed rgba(150, 160, 175, 0.28);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: npsRingRotate 22s linear infinite;
  z-index: 1;
  pointer-events: none
}

.nps-ring::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8a9aaf;
  box-shadow: 0 0 14px rgba(138, 154, 175, 0.9);
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -5px
}

@keyframes npsRingRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg)
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

.nps-phone {
  position: relative;
  z-index: 5;
  animation: npsPhoneFloat 6s ease-in-out infinite
}

@keyframes npsPhoneFloat {

  0%,
  100% {
    transform: translateY(0) rotateY(5deg) rotateX(2deg)
  }

  50% {
    transform: translateY(-16px) rotateY(2deg) rotateX(1deg)
  }
}

.nps-phone-shell {
  position: relative;
  width: 210px;
  background: linear-gradient(175deg, #c8cdd4 0%, #d8dde4 8%, #b8bec7 18%, #cdd2d9 30%, #b2b8c2 42%, #c4cad2 55%, #adb4be 68%, #c0c7d0 80%, #b6bcc6 90%, #cdd2d8 100%);
  border-radius: 52px;
  border: none;
  outline: none;
  padding: 11px 9px 13px;
  box-shadow: 0 0 0 1px rgba(80, 90, 105, 0.55), 0 32px 80px rgba(0, 0, 0, 0.45), 0 12px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -1px 0 rgba(0, 0, 0, 0.18)
}

.nps-phone-shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.75) 35%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.75) 65%, transparent 100%);
  border-radius: 50%;
  z-index: 2
}

.nps-phone-shell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(40, 50, 65, 0.4), transparent);
  border-radius: 50%;
  z-index: 2
}

.nps-btn-power {
  position: absolute;
  right: -4px;
  top: 108px;
  width: 4px;
  height: 64px;
  background: linear-gradient(180deg, #9aa4b0 0%, #b8c0ca 20%, #a0aab5 40%, #bcc4ce 60%, #98a2ae 80%, #b0bac4 100%);
  border-radius: 0 2.5px 2.5px 0;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.2)
}

.nps-btn-camera-ctrl {
  position: absolute;
  right: -4px;
  top: 194px;
  width: 4px;
  height: 44px;
  background: linear-gradient(180deg, #9aa4b0 0%, #b8c0ca 20%, #a0aab5 40%, #bcc4ce 60%, #98a2ae 80%, #b0bac4 100%);
  border-radius: 0 2.5px 2.5px 0;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.2)
}

.nps-btn-action {
  position: absolute;
  left: -4px;
  top: 80px;
  width: 4px;
  height: 32px;
  background: linear-gradient(180deg, #9aa4b0 0%, #b8c0ca 20%, #a0aab5 50%, #bcc4ce 80%, #98a2ae 100%);
  border-radius: 2.5px 0 0 2.5px;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.2)
}

.nps-btn-vol-up {
  position: absolute;
  left: -4px;
  top: 126px;
  width: 4px;
  height: 46px;
  background: linear-gradient(180deg, #9aa4b0 0%, #b8c0ca 20%, #a0aab5 50%, #bcc4ce 80%, #98a2ae 100%);
  border-radius: 2.5px 0 0 2.5px;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.2)
}

.nps-btn-vol-down {
  position: absolute;
  left: -4px;
  top: 182px;
  width: 4px;
  height: 46px;
  background: linear-gradient(180deg, #9aa4b0 0%, #b8c0ca 20%, #a0aab5 50%, #bcc4ce 80%, #98a2ae 100%);
  border-radius: 2.5px 0 0 2.5px;
  box-shadow: -2px 0 4px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.2)
}

.nps-bezel {
  background: #080808;
  border-radius: 43px;
  overflow: hidden;
  position: relative;
  padding: 1.5px;
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.04)
}

.nps-screen {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: #000;
  border-radius: 41px;
  overflow: hidden;
  position: relative;
  display: block
}

.nps-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 125%;
  height: 125%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
  border-radius: 0
}

.nps-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 78px;
  height: 24px;
  background: #000;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.05), 0 2px 8px rgba(0, 0, 0, 0.6)
}

.nps-island-inner {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a2535, #000);
  border: 0.5px solid rgba(255, 255, 255, 0.08)
}

.nps-glare {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.02) 40%, transparent 65%);
  pointer-events: none;
  z-index: 30;
  border-radius: 41px 0 0 41px
}

.nps-bar {
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 4px;
  background: rgba(255, 255, 255, 0.30);
  border-radius: 3px;
  z-index: 30
}

.nps-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 9px 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13), 0 0 0 0.5px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 10;
  animation: npsFloatUp 4s ease-in-out infinite
}

.nps-badge-1 {
  top: 8%;
  left: -5%;
  animation-delay: 0s
}

.nps-badge-2 {
  bottom: 14%;
  right: -7%;
  animation-delay: -2s
}

.nps-badge-3 {
  top: 50%;
  left: -10%;
  animation-delay: -1s
}

@keyframes npsFloatUp {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.nps-badge-icon {
  font-size: 20px;
  line-height: 1
}

.nps-badge-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  white-space: nowrap
}

.nps-badge-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #6a7a8a;
  white-space: nowrap
}

.hero-mobiles-wrap {
  display: none !important
}

.mobile-hero-command {
  display: none !important
}

@media (max-width:1024px) {
  .nova-phone-scene {
    max-width: 380px;
    height: 520px
  }

  .nps-phone-shell {
    width: 182px;
    border-radius: 46px;
    padding: 10px 8px 12px
  }

  .nps-bezel {
    border-radius: 37px
  }

  .nps-screen {
    border-radius: 35px
  }

  .nps-ring {
    width: 290px;
    height: 290px
  }

  .nps-btn-power {
    right: -4px;
    top: 98px;
    height: 56px
  }

  .nps-btn-camera-ctrl {
    right: -4px;
    top: 175px;
    height: 38px
  }

  .nps-btn-action {
    left: -4px;
    top: 72px;
    height: 28px
  }

  .nps-btn-vol-up {
    left: -4px;
    top: 112px;
    height: 40px
  }

  .nps-btn-vol-down {
    left: -4px;
    top: 162px;
    height: 40px
  }
}

@media (max-width:768px) {
  .nova-phone-scene {
    max-width: 270px;
    height: 420px
  }

  .nps-phone-shell {
    width: 158px;
    border-radius: 40px;
    padding: 9px 7px 11px
  }

  .nps-bezel {
    border-radius: 32px
  }

  .nps-screen {
    border-radius: 30px
  }

  .nps-island {
    width: 64px;
    height: 20px;
    top: 8px
  }

  .nps-ring {
    width: 240px;
    height: 240px
  }

  .nps-badge {
    display: none
  }

  .nps-btn-power {
    right: -3px;
    top: 84px;
    width: 3px;
    height: 50px
  }

  .nps-btn-camera-ctrl {
    right: -3px;
    top: 150px;
    width: 3px;
    height: 34px
  }

  .nps-btn-action {
    left: -3px;
    top: 62px;
    width: 3px;
    height: 24px
  }

  .nps-btn-vol-up {
    left: -3px;
    top: 96px;
    width: 3px;
    height: 36px
  }

  .nps-btn-vol-down {
    left: -3px;
    top: 142px;
    width: 3px;
    height: 36px
  }
}

.blog-main {
  background: var(--off-white)
}

.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 80px
}

.featured-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary), var(--deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  position: relative
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase
}

.featured-content {
  padding: 48px 48px 48px 0
}

.post-category {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px
}

.post-category::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--primary)
}

.featured-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px
}

.featured-excerpt {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap
}

.post-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  font-family: 'Montserrat', sans-serif
}

.post-author-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark)
}

.post-date {
  font-size: 12px;
  color: var(--text-light)
}

.post-read-time {
  font-size: 12px;
  color: var(--text-light);
  background: var(--light-bg);
  padding: 3px 10px;
  border-radius: 50px
}

.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--primary);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(37, 42, 78, 0.3)
}

.btn-read:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 42, 78, 0.4)
}

.blog-grid-wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  transition: all 0.4s;
  cursor: pointer;
  display: flex;
  flex-direction: column
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover)
}

.blog-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden
}

.blog-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 20, 40, 0.3))
}

.blog-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.blog-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 10px
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border)
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 8px
}

.author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  font-family: 'Montserrat', sans-serif
}

.author-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid)
}

.blog-read-time {
  font-size: 11px;
  color: var(--text-light)
}

.blog-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  transition: all 0.3s
}

.blog-card:hover .blog-card-arrow {
  background: var(--primary);
  color: white
}

.blog-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start
}

.sidebar-widget {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 28px
}

.sidebar-widget h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border)
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  color: var(--text-mid)
}

.category-item:hover {
  background: var(--light-bg);
  color: var(--primary)
}

.category-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(37, 42, 78, 0.1);
  padding: 2px 8px;
  border-radius: 50px
}

.popular-posts {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.popular-post {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s
}

.popular-post:hover {
  background: var(--light-bg)
}

.popular-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--light-bg), #e8e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0
}

.popular-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 4px
}

.popular-date {
  font-size: 11px;
  color: var(--text-light)
}

.newsletter-widget {
  background: linear-gradient(135deg, var(--primary), var(--deep));
  border: none
}

.newsletter-widget h3 {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2)
}

.newsletter-widget p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px
}

.newsletter-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  margin-bottom: 10px
}

.newsletter-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s
}

.newsletter-btn:hover {
  background: rgba(255, 255, 255, 0.3)
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.tag {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s
}

.tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(37, 42, 78, 0.05)
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px
}

.page-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  background: white;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center
}

.page-btn:hover,
.page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white
}

@media(max-width:1024px) {
  .blog-with-sidebar {
    grid-template-columns: 1fr
  }

  .sidebar-section {
    display: none
  }
}

@media(max-width:900px) {
  .featured-post {
    grid-template-columns: 1fr
  }

  .featured-content {
    padding: 28px
  }

  .blog-grid-wrap {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:600px) {
  .blog-grid-wrap {
    grid-template-columns: 1fr
  }
}

.portfolio-section {
  background: var(--off-white)
}

.filter-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  background: white;
  transition: all 0.3s
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary)
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 8px 24px rgba(37, 42, 78, 0.3)
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  height: 300em
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: all 0.4s;
  border: 1px solid var(--border)
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover)
}

.portfolio-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px
}

.portfolio-card:nth-child(2) .portfolio-thumb {
  aspect-ratio: unset;
  height: 100%
}

.portfolio-thumb-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s
}

.portfolio-card:hover .portfolio-thumb-bg {
  transform: scale(1.08)
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19, 13, 46, 0.9), rgba(19, 13, 46, 0.85));
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1
}

.overlay-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px
}

.overlay-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px
}

.overlay-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px
}

.overlay-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: white;
  color: var(--primary-dark);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s
}

.overlay-link:hover {
  transform: scale(1.05)
}

.portfolio-info {
  padding: 20px 24px
}

.portfolio-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px
}

.portfolio-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px
}

.portfolio-client {
  font-size: 13px;
  color: var(--text-light)
}

.case-studies {
  background: var(--white)
}

.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px
}

.case-study:last-child {
  margin-bottom: 0
}

.case-study:nth-child(even) {
  direction: rtl
}

.case-study:nth-child(even)>* {
  direction: ltr
}

.case-visual {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--light-bg), #e8e8f0);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  box-shadow: var(--shadow)
}

.case-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: rgba(37, 42, 78, 0.08);
  line-height: 1;
  margin-bottom: 8px
}

.case-category {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px
}

.case-category::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--primary)
}

.case-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2
}

.case-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px
}

.case-results {
  display: flex;
  gap: 28px;
  margin-bottom: 32px
}

.case-result {
  text-align: center
}

.case-result-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1
}

.case-result-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px
}

.btn-case {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s
}

.btn-case:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px)
}

.clients-section {
  background: var(--off-white);
  padding: 80px 6%
}

.clients-header {
  text-align: center;
  margin-bottom: 40px
}

.clients-header p {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center
}

@media(max-width:900px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr
  }

  .portfolio-card:nth-child(2) {
    grid-row: auto
  }

  .portfolio-card:nth-child(2) .portfolio-thumb {
    aspect-ratio: 4/3;
    height: auto
  }

  .case-study,
  .case-study:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr
  }
}

@media(max-width:600px) {
  .portfolio-grid {
    grid-template-columns: 1fr
  }

  .case-results {
    gap: 16px
  }
}

.proj-hero {
  min-height: 80vh;
  background: linear-gradient(135deg, #252A4E 0%, #130D2E 60%, #130D2E 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 160px 6% 80px
}

.proj-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(37, 42, 78, 0.07) 1px, transparent 1px);
  background-size: 28px 28px
}

.proj-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: blobFloat 10s ease-in-out infinite
}

.proj-hero-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -150px;
  right: -150px
}

.proj-hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--primary-light);
  bottom: -100px;
  left: 5%;
  animation-delay: -4s
}

.proj-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%
}

.proj-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.proj-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 42, 78, 0.2);
  border: 1px solid rgba(37, 42, 78, 0.35);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 1px;
  text-transform: uppercase
}

.proj-year {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4)
}

.proj-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  margin-bottom: 28px
}

.proj-hero-title .highlight {
  color: var(--primary-light)
}

.proj-hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap
}

.proj-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300
}

.proj-hero-stats {
  display: flex;
  gap: 40px;
  flex-shrink: 0
}

.proj-hero-stat {
  text-align: center
}

.proj-hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1
}

.proj-hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px
}

.proj-showcase {
  background: var(--off-white)
}

.showcase-main {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--deep));
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 40px 80px rgba(37, 42, 78, 0.25)
}

.showcase-main-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.showcase-thumb {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative
}

.showcase-thumb:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover)
}

.showcase-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 13, 46, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 28px;
  color: white
}

.showcase-thumb:hover .showcase-thumb-overlay {
  opacity: 1
}

.proj-overview {
  background: var(--white)
}

.proj-overview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start
}

.proj-brief-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px
}

.proj-brief-text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 28px
}

.proj-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0
}

.proj-info-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--border)
}

.proj-info-block:first-child {
  padding-top: 0
}

.proj-info-block:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.proj-info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px
}

.proj-info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark)
}

.proj-info-value.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.proj-info-tag {
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(37, 42, 78, 0.08);
  border: 1px solid rgba(37, 42, 78, 0.2);
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 600
}

.proj-challenge {
  background: var(--off-white);
  border-radius: 20px;
  padding: 28px;
  margin-top: 32px;
  border: 1px solid var(--border)
}

.proj-challenge-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px
}

.proj-challenge-label::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--primary)
}

.proj-challenge-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75
}

.proj-strategy {
  background: var(--off-white)
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.strategy-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: all 0.4s;
  position: relative;
  overflow: hidden
}

.strategy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--deep));
  opacity: 0;
  transition: opacity 0.4s
}

.strategy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover)
}

.strategy-card:hover::before {
  opacity: 1
}

.strategy-card:hover * {
  color: white !important
}

.strategy-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(37, 42, 78, 0.12);
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: color 0.3s
}

.strategy-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color 0.3s
}

.strategy-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  transition: color 0.3s
}

.proj-results {
  background: var(--white)
}

.results-feature {
  background: linear-gradient(135deg, var(--text-dark) 0%, #130D2E 100%);
  border-radius: 32px;
  padding: 64px;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden
}

.results-feature::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 42, 78, 0.1), transparent 65%)
}

.results-title-row {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1
}

.results-feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: white
}

.results-feature-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px
}

.results-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1
}

.result-metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s
}

.result-metric:hover {
  background: rgba(37, 42, 78, 0.15);
  border-color: rgba(37, 42, 78, 0.3);
  transform: translateY(-4px)
}

.result-metric-icon {
  font-size: 32px;
  margin-bottom: 16px
}

.result-metric-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1
}

.result-metric-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px
}

.result-metric-delta {
  font-size: 12px;
  color: #4ade80;
  margin-top: 6px;
  font-weight: 600
}

.results-timeline-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 40px
}

.timeline-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative
}

.timeline-milestones::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--deep));
  opacity: 0.25
}

.milestone {
  text-align: center;
  padding: 0 16px;
  position: relative
}

.milestone-dot {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: white;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(37, 42, 78, 0.3);
  position: relative;
  z-index: 1
}

.milestone-period {
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif
}

.milestone-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px
}

.milestone-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5
}

.proj-gallery {
  background: var(--off-white)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: transform 0.3s;
  cursor: pointer
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  font-size: 70px;
  border-radius: 24px
}

.gallery-item:hover {
  transform: scale(1.02)
}

.proj-testimonial {
  background: var(--white)
}

.testimonial-card {
  background: var(--off-white);
  border-radius: 32px;
  padding: 64px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center
}

.quote-icon {
  font-size: 80px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: -20px;
  font-family: serif;
  display: block
}

.testimonial-text {
  font-size: 20px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 28px
}

.testimonial-author {
  display: flex;
  gap: 16px;
  align-items: center
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: white;
  flex-shrink: 0
}

.author-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark)
}

.author-role {
  font-size: 13px;
  color: var(--text-light)
}

.rating {
  display: flex;
  gap: 4px;
  margin-top: 6px
}

.star {
  color: #FBBF24;
  font-size: 16px
}

.testimonial-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  writing-mode: vertical-lr;
  text-orientation: mixed;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.4;
  flex-shrink: 0
}

.proj-nav {
  background: var(--off-white);
  padding: 60px 6%
}

.proj-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.proj-nav-card {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.4s;
  text-decoration: none
}

.proj-nav-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.proj-nav-card.next {
  flex-direction: row-reverse;
  text-align: right
}

.proj-nav-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(37, 42, 78, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s
}

.proj-nav-card:hover .proj-nav-arrow {
  background: var(--primary);
  color: white
}

.proj-nav-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif
}

.proj-nav-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px
}

.proj-nav-cat {
  font-size: 13px;
  color: var(--text-light)
}

.btn-cta-white {
  background: white;
  color: var(--primary-dark);
  padding: 15px 34px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  border: none
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3)
}

@media (max-width:1024px) {
  .proj-overview-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .results-metrics {
    grid-template-columns: 1fr 1fr
  }

  .timeline-milestones {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .timeline-milestones::before {
    display: none
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: auto
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .testimonial-logo {
    writing-mode: horizontal-tb
  }

  .strategy-grid {
    grid-template-columns: 1fr 1fr
  }

  .results-feature {
    padding: 40px
  }
}

@media (max-width:600px) {
  .proj-hero-bottom {
    flex-direction: column;
    align-items: flex-start
  }

  .proj-hero-stats {
    gap: 24px
  }

  .showcase-grid {
    grid-template-columns: 1fr 1fr
  }

  .results-metrics {
    grid-template-columns: 1fr
  }

  .timeline-milestones {
    grid-template-columns: 1fr
  }

  .proj-nav-grid {
    grid-template-columns: 1fr
  }

  .strategy-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .testimonial-card {
    padding: 32px 24px
  }
}

.all-services {
  background: var(--white)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.service-card {
  background: linear-gradient(135deg, var(--primary), var(--deep));
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.4s;
  transform-style: preserve-3d
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background:var(--off-white) ;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0
}

.service-card:hover {
  border-color: transparent;
  transform: translateY(-10px) rotateX(4deg);
  box-shadow: var(--shadow-hover)
}

.service-card:hover::before {
  opacity: 1
}

.service-card:hover .service-icon-wrap {
  background: var(--primary-dark)
}

.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .svc-num {
  color: var(--primary-dark)
}

.service-card:hover .service-arrow {
  background: white
  color: rgba(255, 255, 255, 0.2)
}

.svc-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: color 0.3s
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background:  var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: background 0.3s
}

.service-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: color 0.3s
}

.service-desc {
  font-size: 14px;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: color 0.3s
}

.service-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  color: var(--primary);
  font-size: 16px;
  position: relative;
  z-index: 1;
  transition: all 0.3s
}

.process-svc {
  background: var(--off-white)
}

.pricing {
  background: var(--white)
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center
}

.pricing-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  background: var(--off-white)
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--deep));
  border: none;
  transform: scale(1.04);
  box-shadow: 0 30px 80px rgba(37, 42, 78, 0.3)
}

.pricing-card:hover:not(.featured) {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover)
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase
}

.pricing-plan {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px
}

.pricing-card.featured .pricing-plan {
  color: rgba(255, 255, 255, 0.8)
}

.pricing-price {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 8px
}

.pricing-card.featured .pricing-price {
  color: white
}

.pricing-period {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px
}

.pricing-card.featured .pricing-period {
  color: rgba(255, 255, 255, 0.7)
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0
}

.pricing-card.featured .pricing-divider {
  background: rgba(255, 255, 255, 0.2)
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid)
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.9)
}

.pricing-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(37, 42, 78, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0
}

.pricing-card.featured .pricing-features li::before {
  background: rgba(255, 255, 255, 0.2);
  color: white
}

.btn-pricing {
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%
}

.btn-pricing-primary {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: white;
  box-shadow: 0 8px 24px rgba(37, 42, 78, 0.3)
}

.btn-pricing-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(37, 42, 78, 0.4)
}

.btn-pricing-white {
  background: white;
  color: var(--primary-dark)
}

.btn-pricing-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15)
}

.btn-pricing-outline {
  border: 2px solid var(--border);
  color: var(--text-dark);
  background: transparent
}

.btn-pricing-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px)
}

.btn-cta-white {
  background: white;
  color: var(--primary-dark);
  padding: 15px 34px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  border: none
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3)
}

@media (max-width:900px) {

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr
  }

  .pricing-card.featured {
    transform: scale(1)
  }
}

@media (max-width:600px) {

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr
  }
}

.svc-hero {
  min-height: 70vh;
  background: linear-gradient(135deg, #eeeef6 0%, #ffffff 50%, #ececf4 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 6% 80px
}

.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(37, 42, 78, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 42, 78, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite
}

.svc-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%
}

.svc-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 42, 78, 0.1);
  border: 1px solid rgba(37, 42, 78, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase
}

.svc-hero-label span {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: block
}

.svc-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px
}

.svc-hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.svc-hero-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300
}

.svc-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn-primary-solid {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(37, 42, 78, 0.3)
}

.btn-primary-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 42, 78, 0.4)
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.3s
}

.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px)
}

.svc-hero-visual {
  position: relative
}

.svc-hero-icon-box {
  background: linear-gradient(135deg, var(--primary), var(--deep));
  border-radius: 32px;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  box-shadow: 0 40px 80px rgba(37, 42, 78, 0.35);
  position: relative;
  overflow: hidden
}

.svc-hero-icon-box::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%)
}

.svc-stat-badges {
  position: absolute;
  inset: 0
}

.svc-stat-badge {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  font-family: 'Montserrat', sans-serif
}

.svc-stat-badge:nth-child(1) {
  top: 10px;
  left: 0px
}

.svc-stat-badge:nth-child(2) {
  bottom: 24px;
  right: 0px
}

.svc-stat-badge:nth-child(3) {
  top: 50%;
  left: 0px;
  transform: translateY(-50%)
}

.badge-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1
}

.badge-label {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px
}

.svc-overview {
  background: var(--white)
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.overview-features {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--off-white);
  transition: all 0.3s
}

.feature-item:hover {
  border-color: var(--primary);
  transform: translateX(6px);
  box-shadow: var(--shadow)
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 42, 78, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0
}

.feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px
}

.feature-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6
}

.overview-content .section-header {
  margin-bottom: 32px
}

.overview-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px
}

.overview-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6
}

.overview-point::before {
  content: '✦';
  color: var(--primary);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0
}

.svc-deliverables {
  background: var(--off-white)
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.deliverable-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: all 0.4s;
  position: relative;
  overflow: hidden
}

.deliverable-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s
}

.deliverable-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent
}

.deliverable-card:hover::before {
  transform: scaleX(1)
}

.deliverable-icon {
  font-size: 32px;
  margin-bottom: 16px
}

.deliverable-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px
}

.deliverable-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65
}

.svc-process {
  background: var(--white)
}

.svc-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative
}

.svc-steps::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--deep));
  opacity: 0.2
}

.svc-step {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  padding: 36px 0;
  position: relative
}

.svc-step:not(:last-child) {
  border-bottom: 1px solid var(--border)
}

.step-num-wrap-svc {
  position: relative;
  flex-shrink: 0
}

.step-num-svc {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 42, 78, 0.3);
  position: relative;
  z-index: 1
}

.step-body {
  flex: 1
}

.step-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px
}

.step-title-svc {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px
}

.step-desc-svc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75
}

.step-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px
}

.step-tag {
  padding: 4px 14px;
  border-radius: 50px;
  background: rgba(37, 42, 78, 0.08);
  border: 1px solid rgba(37, 42, 78, 0.2);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark)
}

.svc-results {
  background: var(--off-white)
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.result-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.4s;
  position: relative;
  overflow: hidden
}

.result-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--deep));
  opacity: 0;
  transition: opacity 0.4s
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover)
}

.result-card:hover::after {
  opacity: 1
}

.result-card:hover * {
  color: white !important;
  position: relative;
  z-index: 1
}

.result-icon {
  font-size: 36px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1
}

.result-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  position: relative;
  z-index: 1
}

.result-label {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
  position: relative;
  z-index: 1
}

.svc-testimonial {
  background: var(--white)
}

.testimonial-feature {
  background: linear-gradient(135deg, var(--text-dark), #130D2E);
  border-radius: 32px;
  padding: 64px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.testimonial-feature::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 42, 78, 0.12), transparent 65%)
}

.testimonial-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: white;
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
  z-index: 1
}

.testimonial-quote::before {
  content: '"';
  font-size: 80px;
  line-height: 1;
  color: var(--primary);
  display: block;
  margin-bottom: -20px;
  opacity: 0.6
}

.testimonial-author-svc {
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 1
}

.author-avatar-svc {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: white;
  flex-shrink: 0
}

.author-name-svc {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white
}

.author-role-svc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55)
}

.testimonial-case {
  position: relative;
  z-index: 1
}

.case-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.case-metric {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center
}

.case-metric-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1
}

.case-metric-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px
}

.case-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px
}

.svc-faq {
  background: var(--off-white)
}

.faq-q-icon {
  font-size: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--primary)
}

.faq-item.open .faq-q-icon {
  transform: rotate(45deg)
}

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75
}

.svc-related {
  background: var(--white)
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.related-card {
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
  text-decoration: none;
  display: block
}

.related-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, var(--primary), var(--deep))
}

.related-card:hover .related-icon,
.related-card:hover .related-title,
.related-card:hover .related-desc {
  color: white
}

.related-icon {
  font-size: 28px;
  margin-bottom: 14px
}

.related-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  transition: color 0.3s
}

.related-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  transition: color 0.3s
}

@media (max-width:1024px) {
  .svc-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .svc-hero-icon-box {
    max-width: 300px;
    font-size: 60px
  }

  .overview-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .testimonial-feature {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px
  }

  .results-grid {
    grid-template-columns: 1fr 1fr
  }

  .deliverables-grid {
    grid-template-columns: 1fr 1fr
  }

  .related-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:600px) {

  .results-grid,
  .deliverables-grid,
  .related-grid {
    grid-template-columns: 1fr
  }

  .case-metric-grid {
    grid-template-columns: 1fr 1fr
  }

  .svc-hero-actions {
    flex-direction: column
  }

  .svc-steps::before {
    display: none
  }

  .svc-step {
    flex-direction: column;
    gap: 16px
  }
}

@media (max-width:768px) {
  .hero-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center
  }

  .hero-mobiles-wrap {
    display: none !important
  }

  .mobile-hero-command {
    display: block !important;
    position: relative;
    width: 100%;
    overflow: hidden
  }

  .mhc-ticker {
    width: 100%;
    background: rgba(37, 42, 78, 0.06);
    border-top: 1px solid rgba(37, 42, 78, 0.15);
    border-bottom: 1px solid rgba(37, 42, 78, 0.15);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 5
  }

  .mhc-ticker-track {
    display: flex;
    gap: 40px;
    animation: tickerScroll 18s linear infinite;
    width: max-content
  }

  .mhc-ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(37, 42, 78, 0.9);
    white-space: nowrap;
    letter-spacing: 0.5px
  }

  .mhc-ticker-dot {
    width: 6px;
    height: 6px;
    background: #252A4E;
    border-radius: 50%;
    animation: tickerDotPulse 2s infinite;
    flex-shrink: 0
  }

  .mhc-ticker-val {
    color: #ffffff;
    font-weight: 700
  }

  @keyframes tickerScroll {
    from {
      transform: translateX(0)
    }

    to {
      transform: translateX(-50%)
    }
  }

  @keyframes tickerDotPulse {

    0%,
    100% {
      opacity: 1;
      box-shadow: 0 0 0 0 rgba(37, 42, 78, 0.5)
    }

    50% {
      opacity: 0.6;
      box-shadow: 0 0 0 4px rgba(37, 42, 78, 0)
    }
  }

  .mhc-main {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0
  }

  .mhc-radar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    pointer-events: none;
    z-index: 1
  }

  .mhc-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(37, 42, 78, 0.12);
    transform: translate(-50%, -50%) scale(0);
    animation: radarExpand 4s ease-out infinite
  }

  .mhc-ring:nth-child(1) {
    width: 130px;
    height: 130px;
    animation-delay: 0s
  }

  .mhc-ring:nth-child(2) {
    width: 220px;
    height: 220px;
    animation-delay: 1s
  }

  .mhc-ring:nth-child(3) {
    width: 310px;
    height: 310px;
    animation-delay: 2s
  }

  .mhc-ring:nth-child(4) {
    width: 400px;
    height: 400px;
    animation-delay: 3s
  }

  @keyframes radarExpand {
    0% {
      transform: translate(-50%, -50%) scale(0);
      opacity: 0.8;
      border-color: rgba(37, 42, 78, 0.35)
    }

    100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0;
      border-color: rgba(37, 42, 78, 0)
    }
  }

  .mhc-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 2px;
    transform-origin: left center;
    animation: radarSweep 3.5s linear infinite;
    z-index: 2
  }

  .mhc-sweep::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(37, 42, 78, 0.8), transparent);
    border-radius: 2px
  }

  @keyframes radarSweep {
    from {
      transform: rotate(0deg)
    }

    to {
      transform: rotate(360deg)
    }
  }

  .mhc-phone-wrap {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%
  }

  .mhc-phone {
    width: 210px;
    position: relative;
    animation: mhcPhoneFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.65)) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 40px rgba(37, 42, 78, 0.12))
  }

  @keyframes mhcPhoneFloat {

    0%,
    100% {
      transform: translateY(0px)
    }

    50% {
      transform: translateY(-12px)
    }
  }

  .mhc-phone-shell {
    width: 100%;
    position: relative;
    background: linear-gradient(160deg, #362338 0%, #2b1a2e 25%, #1e1220 50%, #261828 75%, #332035 100%);
    border-radius: 52px;
    padding: 13px 9px 13px;
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.14), inset -1px -1px 0 rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 0 1.5px rgba(15, 8, 18, 0.9), 0 24px 56px rgba(0, 0, 0, 0.55), 0 6px 18px rgba(0, 0, 0, 0.45)
  }

  .mhc-phone-shell::before {
    content: '';
    position: absolute;
    right: -4px;
    top: 120px;
    width: 4px;
    height: 70px;
    background: linear-gradient(180deg, #3e2a40 0%, #2b1a2e 40%, #3e2a40 100%);
    border-radius: 0 4px 4px 0;
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.12), inset -1px 0 2px rgba(0, 0, 0, 0.6)
  }

  .mhc-left-buttons {
    position: absolute;
    left: -4px;
    top: 0;
    width: 4px;
    height: 100%;
    pointer-events: none
  }

  .mhc-btn-action {
    position: absolute;
    left: 0;
    top: 82px;
    width: 4px;
    height: 32px;
    background: linear-gradient(180deg, #3e2a40 0%, #2b1a2e 50%, #3e2a40 100%);
    border-radius: 4px 0 0 4px;
    box-shadow: -1px 0 0 rgba(255, 255, 255, 0.12), inset 1px 0 2px rgba(0, 0, 0, 0.5)
  }

  .mhc-btn-vol-up {
    position: absolute;
    left: 0;
    top: 132px;
    width: 4px;
    height: 52px;
    background: linear-gradient(180deg, #3e2a40 0%, #2b1a2e 50%, #3e2a40 100%);
    border-radius: 4px 0 0 4px;
    box-shadow: -1px 0 0 rgba(255, 255, 255, 0.12), inset 1px 0 2px rgba(0, 0, 0, 0.5)
  }

  .mhc-btn-vol-down {
    position: absolute;
    left: 0;
    top: 196px;
    width: 4px;
    height: 52px;
    background: linear-gradient(180deg, #3e2a40 0%, #2b1a2e 50%, #3e2a40 100%);
    border-radius: 4px 0 0 4px;
    box-shadow: -1px 0 0 rgba(255, 255, 255, 0.12), inset 1px 0 2px rgba(0, 0, 0, 0.5)
  }

  .mhc-phone-bezel {
    width: 100%;
    background: #080508;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07), inset 0 1px 3px rgba(255, 255, 255, 0.05)
  }

  .mhc-phone-screen {
    width: 100%;
    aspect-ratio: 393 / 852;
    background: #000;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
    display: block
  }

  .mhc-phone-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    transform: scale(1.04);
    transform-origin: center center
  }

  .mhc-screen-glare {
    position: absolute;
    inset: 0;
    border-radius: 42px;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 20%, transparent 45%);
    pointer-events: none;
    z-index: 3
  }

  .mhc-dynamic-island {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04)
  }

  .mhc-island-cam {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #181018 0%, #000 65%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    flex-shrink: 0
  }

  .mhc-island-cam::after {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(80, 140, 210, 0.5);
    position: absolute;
    top: 2px;
    left: 2px
  }

  .mhc-island-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0c080e;
    border: 1px solid rgba(255, 255, 255, 0.04);
    flex-shrink: 0
  }

  .mhc-phone-bar {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 4px;
    background: rgba(255, 255, 255, 0.32);
    border-radius: 4px;
    z-index: 10
  }

  .mhc-usbc {
    display: none
  }

  .mhc-usbc::before,
  .mhc-usbc::after {
    display: none
  }

  .mhc-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(37, 42, 78, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 6;
    min-width: 130px
  }

  .mhc-card-1 {
    top: 40px;
    left: 10px;
    animation: cardFloat1 4.5s ease-in-out infinite
  }

  .mhc-card-2 {
    top: 40px;
    right: 10px;
    animation: cardFloat2 5s ease-in-out infinite
  }

  .mhc-card-3 {
    bottom: 60px;
    left: 8px;
    animation: cardFloat1 5.5s ease-in-out infinite 1s
  }

  @keyframes cardFloat1 {

    0%,
    100% {
      transform: translateY(0)
    }

    50% {
      transform: translateY(-8px)
    }
  }

  @keyframes cardFloat2 {

    0%,
    100% {
      transform: translateY(-6px)
    }

    50% {
      transform: translateY(4px)
    }
  }

  .mhc-card-icon {
    font-size: 22px;
    flex-shrink: 0
  }

  .mhc-card-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #252A4E;
    line-height: 1.2
  }

  .mhc-card-val {
    font-size: 10.5px;
    color: #0077a8;
    font-weight: 600
  }

  .mhc-dashboard {
    width: 100%;
    background: rgba(4, 20, 34, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(37, 42, 78, 0.18);
    padding: 18px 20px 32px;
    position: relative;
    z-index: 5
  }

  .mhc-dash-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: rgba(37, 42, 78, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px
  }

  .mhc-dash-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(37, 42, 78, 0.1);
    border: 1px solid rgba(37, 42, 78, 0.2);
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 10px;
    color: #4a4e8e;
    font-weight: 600;
    letter-spacing: 0.5px
  }

  .mhc-dash-live::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #252A4E;
    border-radius: 50%;
    animation: tickerDotPulse 1.5s infinite;
    display: block
  }

  .mhc-dash-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
  }

  .mhc-dash-item {
    background: rgba(37, 42, 78, 0.05);
    border: 1px solid rgba(37, 42, 78, 0.1);
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s
  }

  .mhc-dash-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: var(--bar-w, 70%);
    background: linear-gradient(90deg, #252A4E, #0077a8);
    border-radius: 2px
  }

  .mhc-dash-emoji {
    font-size: 18px;
    margin-bottom: 6px;
    display: block
  }

  .mhc-dash-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    display: block
  }

  .mhc-dash-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    margin-top: 4px;
    display: block;
    letter-spacing: 0.3px
  }

  .mhc-services {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 14px 20px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: rgba(4, 20, 34, 0.97)
  }

  .mhc-services::-webkit-scrollbar {
    display: none
  }

  .mhc-svc-tag {
    flex-shrink: 0;
    background: rgba(37, 42, 78, 0.08);
    border: 1px solid rgba(37, 42, 78, 0.2);
    border-radius: 20px;
    padding: 7px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(37, 42, 78, 0.9);
    white-space: nowrap;
    transition: all 0.25s
  }

  .mhc-svc-tag.active {
    background: rgba(37, 42, 78, 0.2);
    border-color: rgba(37, 42, 78, 0.5);
    color: #ffffff
  }

  .mhc-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 80px;
    background: rgba(37, 42, 78, 0.22);
    filter: blur(40px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 5s ease-in-out infinite
  }

  .mhc-dash-num[data-target] {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s, transform 0.5s
  }

  .mhc-dash-num.counted {
    opacity: 1;
    transform: none
  }
}

.mobile-hero-command {
  display: none
}

@media (hover:none),
(pointer:coarse) {

  .cursor,
  .cursor-follower {
    display: none !important
  }
}

html,
body {
  overflow-x: hidden;
  max-width: 100%
}

img,
video,
iframe {
  max-width: 100%;
  height: auto
}

@media (max-width:900px) {

  .nav-links,
  .nav-phone {
    display: none
  }

  .hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center
  }

  #navbar {
    top: 12px;
    width: calc(100% - 24px);
    height: 56px;
    padding: 0 6px 0 16px
  }

  .nav-right {
    gap: 6px
  }

  .nav-cta {
    padding: 8px 16px !important;
    font-size: 12px !important
  }

  .nav-cta-arrow {
    display: none
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:768px) {
  section {
    padding: 70px 5%
  }

  .tl-left .tl-card,
  .tl-right .tl-card {
    margin-left: 0;
    margin-right: 0;
    width: 100%
  }

  .timeline-line {
    left: 24px
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px
  }

  .tl-left,
  .tl-right {
    flex-direction: column;
    justify-content: flex-start
  }

  .tl-left .tl-dot-wrap,
  .tl-right .tl-dot-wrap {
    position: absolute;
    left: 0;
    transform: none
  }

  .tl-left .tl-card::after,
  .tl-right .tl-card::before {
    display: none
  }

  .journey-item,
  .journey-item:nth-child(even) {
    flex-direction: column
  }

  .journey-line,
  .journey-fill {
    left: 24px
  }

  .journey-item {
    padding-left: 60px
  }

  .faq-q {
    padding: 18px 20px;
    font-size: 15px;
    line-height: 1.5
  }
}

@media (max-width:600px) {

  .numbers-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .contact-form-wrap {
    padding: 28px 20px
  }

  .page-hero {
    padding: 110px 5% 56px
  }

  .page-hero-title {
    font-size: clamp(30px, 8vw, 46px)
  }

  .back-to-top {
    bottom: 20px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 18px
  }
}

@media (max-width:480px) {
  #navbar {
    width: calc(100% - 16px);
    top: 8px;
    padding: 0 4px 0 14px
  }

  .nav-cta {
    padding: 7px 12px !important;
    font-size: 11px !important
  }

  .mobile-menu-panel {
    width: 100vw;
    border-left: none
  }

  .mobile-menu-inner {
    padding: 24px 20px max(28px, env(safe-area-inset-bottom, 28px))
  }

  .mobile-menu-header {
    margin-bottom: 28px
  }

  section {
    padding: 56px 5%
  }

  .section-header {
    margin-bottom: 40px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .footer-bottom-links {
    justify-content: center
  }
}

@media (max-width:400px) {
  .numbers-grid {
    grid-template-columns: 1fr
  }

  .nav-cta {
    display: none !important
  }
}

.brand-watermark-section {
  background: #1a1830;
  overflow: hidden;
  padding: 20px 0 40px;
  margin: 0;
  height: auto;
  user-select: none;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%
}

.brand-watermark-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(80px, 12.5vw, 240px);
  font-weight: 900;
  letter-spacing: -0.05em;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  padding: 0 2vw;
  margin: 0;
  flex-shrink: 0;
  width: 100%;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-stroke: 0;
  filter: none;
  display: block;
}

@media (max-width:768px) {
  .brand-watermark-section {
    padding: 14px 0 28px
  }

  .brand-watermark-text {
    font-size: clamp(56px, 13vw, 180px);
    letter-spacing: -0.04em
  }
}

@media (max-width:480px) {
  .brand-watermark-section {
    padding: 10px 0 20px
  }

  .brand-watermark-text {
    font-size: clamp(44px, 12vw, 140px);
    letter-spacing: -0.03em
  }
}