.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: 60px;
  object-fit: contain;
}

.transparent-logo {
  mix-blend-mode: screen;
  animation: spin-slow 20s linear infinite;
}

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

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

:root {
  --navy: #0D1B2A;
  --navy-dark: #0A1520;
  --navy-light: #162336;
  --navy-mid: #0F2337;
  --teal: #2DD4BF;
  --teal-light: #5EEAD4;
  --teal-dark: #0D9488;
  --white: #FFFFFF;
  --slate-50: #F8FAFC;
  --slate-200: #E2E8F0;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-700: #334155;
  --success: #10B981;
  --warning: #F59E0B;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  background: var(--navy-dark);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: var(--navy-dark)
}

::-webkit-scrollbar-thumb {
  background: var(--teal-dark);
  border-radius: 3px
}

/* ── UTILITY ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px
}

.teal {
  color: var(--teal)
}

.section {
  padding: 120px 0
}

.section-alt {
  padding: 120px 0;
  background: var(--navy-light)
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px)
  }

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

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.8
  }

  100% {
    transform: scale(1.4);
    opacity: 0
  }
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes counter {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

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

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.15)
  }

  50% {
    box-shadow: 0 0 50px rgba(45, 212, 191, 0.35)
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 0
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0
  }

  100% {
    background-position: 200% 0
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) forwards
}

.delay-1 {
  animation-delay: 0.15s
}

.delay-2 {
  animation-delay: 0.3s
}

.delay-3 {
  animation-delay: 0.45s
}

.delay-4 {
  animation-delay: 0.6s
}

.delay-5 {
  animation-delay: 0.75s
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: 0.1s
}

.reveal-delay-2 {
  transition-delay: 0.2s
}

.reveal-delay-3 {
  transition-delay: 0.3s
}

.reveal-delay-4 {
  transition-delay: 0.4s
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent
}

nav.scrolled {
  background: rgba(10, 21, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(45, 212, 191, 0.1)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  position: relative
}

.nav-logo-icon svg {
  width: 100%;
  height: 100%
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px
}

.nav-logo-text span {
  color: var(--teal)
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(203, 213, 225, 0.8);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06)
}

.nav-link.active {
  color: var(--teal)
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  border: none;
  outline: none;
  letter-spacing: 0.2px
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  padding: 11px 24px;
  box-shadow: 0 4px 14px rgba(45, 212, 191, 0.25)
}

.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45, 212, 191, 0.35)
}

.btn-primary:active {
  transform: translateY(0)
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  padding: 10px 22px;
  border: 1.5px solid rgba(45, 212, 191, 0.5)
}

.btn-secondary:hover {
  background: rgba(45, 212, 191, 0.08);
  border-color: var(--teal)
}

.btn-ghost {
  background: transparent;
  color: var(--slate-400);
  padding: 10px 20px
}

.btn-ghost:hover {
  color: var(--white)
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 10px
}

.btn-xl {
  padding: 18px 44px;
  font-size: 17px;
  border-radius: 10px
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-400);
  border-radius: 1px;
  transition: all 0.3s
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(45, 212, 191, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(45, 212, 191, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%)
}

.hero-glow-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
  pointer-events: none
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  pointer-events: none
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-ring 2s ease-out infinite
}

.hero-badge span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.3px
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px
}

.hero-title .highlight {
  color: var(--teal);
  display: block
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--slate-400);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.hero-trust-text {
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 500
}

.hero-trust-avatars {
  display: flex
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--navy-dark);
  background: linear-gradient(135deg, var(--teal-dark), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-light);
  margin-left: -8px
}

.avatar:first-child {
  margin-left: 0
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 0
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px
}

.hero-stat-label {
  font-size: 13px;
  color: var(--slate-500);
  margin-top: 2px
}

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-dashboard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(45, 212, 191, 0.15);
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 520px;
  animation: float 6s ease-in-out infinite;
  position: relative;
  overflow: hidden
}

.hero-dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.4), transparent)
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.dash-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate-500);
  margin-left: auto
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px
}

.dash-kpi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px
}

.dash-kpi-label {
  font-size: 10px;
  color: var(--slate-500);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px
}

.dash-kpi-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white)
}

.dash-kpi-change {
  font-size: 11px;
  color: var(--success);
  margin-top: 3px
}

.dash-chart {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px
}

.dash-chart-label {
  font-size: 11px;
  color: var(--slate-500);
  margin-bottom: 12px
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px
}

.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: all 0.3s
}

.dash-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.dash-mini {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px
}

.dash-mini-label {
  font-size: 10px;
  color: var(--slate-500);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.dash-mini-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--teal)
}

.hero-floating-badge {
  position: absolute;
  background: rgba(10, 21, 32, 0.9);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 12px;
  padding: 10px 16px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px
}

.hero-floating-badge.badge-tl {
  top: -20px;
  left: -30px;
  animation: float 5s ease-in-out infinite 1s
}

.hero-floating-badge.badge-br {
  bottom: -10px;
  right: -20px;
  animation: float 7s ease-in-out infinite 0.5s
}

.fb-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(45, 212, 191, 0.12);
  display: flex;
  align-items: center;
  justify-content: center
}

.fb-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.fb-label {
  font-size: 11px;
  color: var(--slate-400)
}

.fb-val {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white)
}

/* ── MARQUEE / LOGOS ── */
.logos-section {
  padding: 48px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04)
}

.logos-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-500);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px
}

.marquee-wrapper {
  overflow: hidden;
  position: relative
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy), transparent)
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy), transparent)
}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 30s linear infinite
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.35;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
  white-space: nowrap
}

.logo-item:hover {
  opacity: 0.7;
  filter: grayscale(0)
}

.logo-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: center
}

.logo-item span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-200)
}

/* ── SERVICES ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px
}

.section-subtitle {
  font-size: 17px;
  color: var(--slate-400);
  max-width: 560px;
  line-height: 1.7
}

.section-header {
  margin-bottom: 64px
}

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

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s
}

.service-card:hover {
  border-color: rgba(45, 212, 191, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(13, 27, 42, 0.5), 0 0 40px rgba(45, 212, 191, 0.06)
}

.service-card:hover::before {
  opacity: 1
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s
}

.service-card:hover .service-icon {
  background: rgba(45, 212, 191, 0.15);
  border-color: rgba(45, 212, 191, 0.3)
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.service-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px
}

.service-desc {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.7;
  margin-bottom: 20px
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s
}

.service-card:hover .service-link {
  gap: 10px
}

.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--teal);
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.15);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 16px;
  letter-spacing: 0.4px
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative
}

.why-visual {
  position: sticky;
  top: 140px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center
}

.why-visual-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s var(--ease);
  transform: scale(0.95)
}

.why-visual-item.active {
  opacity: 1;
  transform: scale(1)
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.why-point-interactive {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 32px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.5s var(--ease);
  opacity: 0.25;
  cursor: pointer
}

.why-point-interactive.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(45, 212, 191, 0.15);
  box-shadow: 0 20px 50px rgba(13, 27, 42, 0.6);
  transform: translateX(10px)
}

.why-point-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0
}

.why-point-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px
}

.why-point-desc {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.6
}

/* ── PROCESS ── */
.process-track {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 64px
}

.process-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.3), transparent)
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative
}

.process-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--navy-mid);
  border: 1px solid rgba(45, 212, 191, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: all 0.3s
}

.process-step:hover .process-num {
  background: rgba(45, 212, 191, 0.12);
  border-color: var(--teal);
  box-shadow: 0 0 30px rgba(45, 212, 191, 0.2)
}

.process-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px
}

.process-desc {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.6
}

/* ── STATS ── */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(45, 212, 191, 0.05));
  border-top: 1px solid rgba(45, 212, 191, 0.1);
  border-bottom: 1px solid rgba(45, 212, 191, 0.1)
}

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

.stat-item {
  text-align: center
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1
}

.stat-suffix {
  color: var(--teal)
}

.stat-label {
  font-size: 15px;
  color: var(--slate-400);
  margin-top: 8px
}

.stat-divider {
  width: 32px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
  margin: 12px auto 0
}

/* ── CASE STUDIES ── */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px
}

.case-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s var(--ease)
}

.case-card:hover {
  border-color: rgba(45, 212, 191, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(13, 27, 42, 0.6)
}

.case-header {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.case-body {
  padding: 24px
}

.case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  background: rgba(45, 212, 191, 0.08);
  border-radius: 4px;
  padding: 3px 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px
}

.case-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3
}

.case-desc {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 20px
}

.case-results {
  display: flex;
  gap: 20px
}

.case-result {
  text-align: center
}

.case-result-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--teal)
}

.case-result-label {
  font-size: 11px;
  color: var(--slate-500);
  margin-top: 2px
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.testimonial-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s var(--ease)
}

.testimonial-card:hover {
  border-color: rgba(45, 212, 191, 0.15);
  box-shadow: 0 10px 40px rgba(13, 27, 42, 0.4)
}

.testimonial-quote {
  font-size: 64px;
  line-height: 0.5;
  color: var(--teal);
  opacity: 0.2;
  font-family: Georgia, serif;
  margin-bottom: 16px
}

.testimonial-text {
  font-size: 15px;
  color: rgba(203, 213, 225, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px
}

.star {
  color: var(--warning);
  font-size: 14px
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(45, 212, 191, 0.3);
  background: linear-gradient(135deg, var(--teal-dark), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-light);
  flex-shrink: 0
}

.t-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white)
}

.t-role {
  font-size: 13px;
  color: var(--slate-500)
}

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s
}

.faq-item.open {
  border-color: rgba(45, 212, 191, 0.2)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  user-select: none
}

.faq-q:hover {
  color: var(--teal)
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s
}

.faq-item.open .faq-icon {
  background: rgba(45, 212, 191, 0.15);
  border-color: var(--teal);
  transform: rotate(45deg)
}

.faq-icon svg {
  color: var(--teal);
  display: block;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px
}

.faq-a-inner {
  padding: 0 24px;
  font-size: 15px;
  color: var(--slate-400);
  line-height: 1.7
}

/* ── FINAL CTA ── */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(45, 212, 191, 0.06));
  border-top: 1px solid rgba(45, 212, 191, 0.1)
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(45, 212, 191, 0.1) 0%, transparent 70%)
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px
}

.cta-title em {
  color: var(--teal);
  font-style: normal
}

.cta-sub {
  font-size: 17px;
  color: var(--slate-400);
  line-height: 1.7;
  margin-bottom: 40px
}

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

.contact-form-inline {
  margin-top: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.form-group {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-input::placeholder {
  color: var(--slate-500);
}

.contact-input:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 600px) {
  .form-group {
    flex-direction: column;
  }
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  padding: 60px 0 30px;
  position: relative;
  border-top: 1px solid rgba(45, 212, 191, 0.08);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.6;
  margin-top: 16px;
}

.footer-contact-small {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  color: rgba(148, 163, 184, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-email-small {
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-email-small:hover {
  color: var(--teal);
}

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

.footer-copy {
  font-size: 13px;
  color: var(--slate-500);
}

.footer-socials {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  transition: all 0.2s var(--ease);
}

.social-btn:hover {
  background: rgba(45, 212, 191, 0.1);
  border-color: rgba(45, 212, 191, 0.3);
  color: var(--teal);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.footer-copy {
  font-size: 13px;
  color: var(--slate-500);
}

/* ── MOBILE NAV DRAWER ── */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav-drawer {
  position: fixed; top: 0; right: 0;
  width: 280px; max-width: 85vw; height: 100%;
  background: #0d1b2a;
  border-left: 1px solid rgba(45,212,191,0.15);
  z-index: 999;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav-drawer.open { transform: translateX(0); }

.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav-logo {
  font-family: var(--font-display); font-size: 16px;
  font-weight: 700; color: var(--white);
}
.mobile-nav-logo span { color: var(--teal); }

.mobile-nav-close {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--slate-400);
  font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.mobile-nav-close:hover { border-color: var(--teal); color: var(--teal); }

.mobile-nav-links {
  display: flex; flex-direction: column;
  padding: 16px; gap: 4px;
  flex: 1; overflow-y: auto;
}
.mobile-nav-link {
  display: block;
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  color: rgba(203,213,225,0.8); text-decoration: none;
  padding: 14px 16px; border-radius: 10px;
  transition: all 0.2s;
}
.mobile-nav-link:hover { color: var(--teal); background: rgba(45,212,191,0.08); }

.mobile-nav-cta {
  padding: 16px 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-cta-btn {
  display: block; width: 100%; text-align: center;
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  color: var(--navy); background: var(--teal);
  padding: 14px 20px; border-radius: 10px;
  text-decoration: none; transition: background 0.2s;
}
.mobile-cta-btn:hover { background: var(--teal-light); }

.hamburger span { transition: transform 0.3s ease, opacity 0.2s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── RESPONSIVE ── */

/* ── LARGE SCREENS ── */
@media(max-width:1280px) {
  .hero-inner { padding: 80px 32px }
  .container { padding: 0 32px }
}

/* ── TABLET LANDSCAPE ── */
@media(max-width:1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 32px }
  .hero-visual { display: none }
  .hero-subtitle { max-width: 100% }

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

  .why-grid { grid-template-columns: 1fr }
  .why-visual { display: none }
  .why-points { padding: 20px 0 }

  .cases-grid { grid-template-columns: 1fr 1fr }
  .testimonials-grid { grid-template-columns: 1fr 1fr }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px }

  .process-track { flex-wrap: wrap; gap: 32px }
  .process-track::before { display: none }
  .process-step { flex: 0 0 calc(50% - 16px) }

  .footer-top { gap: 40px }
}

/* ── TABLET PORTRAIT ── */
@media(max-width:768px) {
  .container { padding: 0 20px }
  .container-wide { padding: 0 20px }
  .section { padding: 80px 0 }
  .section-alt { padding: 80px 0 }

  /* Navbar */
  .nav-links { display: none }
  .hamburger { display: flex }
  .nav-inner { padding: 0 20px }
  .nav-cta .btn-primary { font-size: 13px; padding: 9px 16px }

  /* Hero */
  .hero-inner { padding: 40px 20px; gap: 32px }
  .hero-badge { margin-bottom: 20px }
  .hero-title { font-size: clamp(32px, 8vw, 44px); letter-spacing: -1px; margin-bottom: 16px }
  .hero-subtitle { font-size: 16px; margin-bottom: 28px }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px }
  .hero-ctas .btn-xl, .hero-ctas .btn-lg { width: 100%; justify-content: center }
  .hero-trust { margin-top: 32px; padding-top: 32px }
  .hero-stats { gap: 20px }
  .hero-stat-num { font-size: 22px }

  /* Services */
  .services-grid { grid-template-columns: 1fr }
  .section-header { margin-bottom: 40px }
  .section-title { font-size: clamp(26px, 6vw, 36px) }
  .section-subtitle { font-size: 15px }

  /* Why Us */
  .why-point-interactive { padding: 20px 16px }
  .why-point-num { width: 30px; height: 30px; font-size: 12px }
  .why-point-title { font-size: 15px }

  /* Process */
  .process-track { flex-direction: column; gap: 24px; align-items: center }
  .process-step { flex: none; width: 100%; max-width: 320px }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px }
  .stat-num { font-size: 36px }

  /* Cases & Testimonials */
  .cases-grid { grid-template-columns: 1fr }
  .testimonials-grid { grid-template-columns: 1fr }

  /* FAQ */
  .faq-q { font-size: 14px; padding: 18px 16px }
  .faq-a-inner { padding: 0 16px; font-size: 14px }

  /* CTA */
  .cta-inner { padding: 0 20px }
  .cta-title { font-size: clamp(28px, 7vw, 40px); letter-spacing: -1px }
  .cta-sub { font-size: 15px }
  .cta-email-form { flex-direction: column; align-items: stretch }
  .email-input-wrap { max-width: 100%; min-width: 100% }
  .cta-email-form .btn-xl { width: 100%; justify-content: center }

  /* Footer */
  .footer-top { flex-direction: column; gap: 40px; align-items: flex-start; }
  .footer-contact-small { align-items: flex-start; text-align: left; width: 100%; }
  .footer-socials { justify-content: flex-start; margin-top: 24px; }
  .footer-brand-desc { max-width: 100%; margin: 16px 0 0; }
  .nav-logo { justify-content: flex-start; }
  footer { padding: 60px 0 32px; }
}

/* ── MOBILE ── */
@media(max-width:480px) {
  .container { padding: 0 16px }
  .section { padding: 60px 0 }
  .section-alt { padding: 60px 0 }

  /* Navbar */
  .nav-inner { padding: 0 16px }
  .nav-cta { display: none }

  /* Hero */
  .hero-inner { padding: 32px 16px }
  .hero-title { font-size: 30px; letter-spacing: -0.5px }
  .hero-subtitle { font-size: 15px }
  .hero-badge { padding: 5px 12px; font-size: 11px }
  .hero-stat-num { font-size: 20px }
  .hero-stats { gap: 12px }
  .hero-trust { flex-wrap: wrap }

  /* Buttons */
  .btn-xl { padding: 16px 28px; font-size: 15px }
  .btn-lg { padding: 14px 24px; font-size: 14px }

  /* Services */
  .service-card { padding: 24px }
  .service-icon { width: 44px; height: 44px; margin-bottom: 16px }
  .service-title { font-size: 17px }
  .service-desc { font-size: 13px }

  /* Why Us */
  .why-point-interactive { padding: 16px 12px; gap: 12px }
  .why-point-num { width: 28px; height: 28px; font-size: 11px; border-radius: 8px }
  .why-point-title { font-size: 14px }
  .why-point-desc { font-size: 13px }

  /* Process */
  .process-num { width: 48px; height: 48px; font-size: 16px }
  .process-title { font-size: 14px }
  .process-desc { font-size: 12px }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px }
  .stat-num { font-size: 32px }
  .stat-label { font-size: 13px }

  /* FAQ */
  .faq-q { font-size: 13px; padding: 16px 14px }

  /* CTA */
  .cta-note { font-size: 12px }
  .cta-title { font-size: 26px }

  /* Footer */
  .footer-huge-email { font-size: 24px }
  footer { padding: 48px 0 24px }
  .footer-inner { padding: 0 16px }
  .social-btn { width: 40px; height: 40px }
  .logo-network { width: 44px !important; height: 44px !important }
}