body.page-template-ai-telesales br {
  display: none;
}

body.page-template-ai-telesales #site-header {
  display: none;
}

body.page-template-ai-telesales #site-topbar {
  display: none;
}

body.page-template-ai-telesales #site-header-sticky {
  display: none;
}

body.page-template-ai-telesales .content-header {
  display: none;
}

body.page-template-ai-telesales .content-body-inner.wrap {
  margin: 0;
  max-width: 100%;
  width: auto;
}

#nkktech-ai-telesales {
  --primary: #0469d8;
  --primary-dark: #0355b8;
  --primary-light: #1a7ae8;
  --primary-lighter: #e6f2ff;
  --secondary: #00a8ff;
  --accent: #00d4ff;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --card-bg: #ffffff;
  --text: #1a202c;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow: rgba(4, 105, 216, 0.1);
  --shadow-lg: rgba(4, 105, 216, 0.15);
  --gradient: linear-gradient(135deg, #0469d8 0%, #00a8ff 100%);
  --gradient-light: linear-gradient(135deg, rgba(4, 105, 216, 0.1) 0%, rgba(0, 168, 255, 0.1) 100%);
}

#nkktech-ai-telesales * {
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Font Awesome icons */
#nkktech-ai-telesales i,
#nkktech-ai-telesales i.fas,
#nkktech-ai-telesales i.far,
#nkktech-ai-telesales i.fab,
#nkktech-ai-telesales i.fal,
#nkktech-ai-telesales i.fad {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
}

#nkktech-ai-telesales html {
  scroll-behavior: smooth;
}

#nkktech-ai-telesales html,
#nkktech-ai-telesales body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
#nkktech-ai-telesales .nkktech-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(4, 105, 216, 0.08);
  transition: all 0.3s ease;
}

#nkktech-ai-telesales .nkktech-nav + p {
  margin: 0;
}

#nkktech-ai-telesales .nkktech-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 80px;
}

#nkktech-ai-telesales .nkktech-nav-inner p {
  margin: 0;
}

#nkktech-ai-telesales .nkktech-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
}

#nkktech-ai-telesales .nkktech-logo-link {
  display: flex;
  align-items: center;
}

#nkktech-ai-telesales .nkktech-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  max-width: 200px;
}

#nkktech-ai-telesales .nkktech-badge {
  font-size: 11px;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 20px;
  color: var(--text-muted);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  white-space: nowrap;
}

#nkktech-ai-telesales .nkktech-badge i {
  color: var(--primary);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

#nkktech-ai-telesales .nkktech-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

#nkktech-ai-telesales .nkktech-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

#nkktech-ai-telesales .nkktech-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.1;
  transition: left 0.3s ease;
}

#nkktech-ai-telesales .nkktech-nav-link:hover::before,
#nkktech-ai-telesales .nkktech-nav-link.active::before {
  left: 0;
}

#nkktech-ai-telesales .nkktech-nav-link:hover {
  color: var(--primary);
  background: var(--primary-lighter);
}

#nkktech-ai-telesales .nkktech-nav-link.active {
  color: var(--primary);
  background: var(--primary-lighter);
}

#nkktech-ai-telesales .nkktech-nav-link i {
  font-size: 14px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

#nkktech-ai-telesales .nkktech-mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  width: 37px;
}

/* Buttons */
#nkktech-ai-telesales .nkktech-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

#nkktech-ai-telesales .nkktech-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

#nkktech-ai-telesales .nkktech-btn:hover::before {
  width: 300px;
  height: 300px;
}

#nkktech-ai-telesales .nkktech-btn-primary {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(4, 105, 216, 0.25);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

#nkktech-ai-telesales .nkktech-btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

#nkktech-ai-telesales .nkktech-btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

#nkktech-ai-telesales .nkktech-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(4, 105, 216, 0.35);
}

#nkktech-ai-telesales .nkktech-btn-secondary {
  background: white;
  color: var(--primary);
  border-color: var(--primary);
}

#nkktech-ai-telesales .nkktech-btn-secondary:hover {
  background: var(--primary-lighter);
  transform: translateY(-2px);
}

#nkktech-ai-telesales .nkktech-btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#nkktech-ai-telesales .nkktech-btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

#nkktech-ai-telesales .nkktech-btn-small {
  padding: 12px 24px;
  font-size: 15px;
  border: none;
}

#nkktech-ai-telesales .nkktech-btn-large {
  padding: 16px 32px;
  font-size: 16px;
  border: none;
}

/* Container */
#nkktech-ai-telesales .nkktech-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Main */
#nkktech-ai-telesales .nkktech-main {
  position: relative;
  min-height: 100vh;
}

/* Pages */
#nkktech-ai-telesales .nkktech-page {
  display: none;
  animation: fadeOut 0.4s ease-out forwards;
}

#nkktech-ai-telesales .nkktech-page.active {
  display: block;
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Hero Section */
#nkktech-ai-telesales .nkktech-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 20%, #f0f7ff 40%, #ffffff 60%, #f8fafc 80%, #e6f2ff 100%);
  min-height: 650px;
  display: flex;
  align-items: center;
}

#nkktech-ai-telesales .nkktech-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}


#nkktech-ai-telesales .nkktech-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

#nkktech-ai-telesales .nkktech-hero-content {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#nkktech-ai-telesales .nkktech-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--gradient);
  color: white;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(4, 105, 216, 0.3);
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

#nkktech-ai-telesales .nkktech-hero-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}


#nkktech-ai-telesales .nkktech-h1 {
  font-size: 64px;
  line-height: 1.1;
  margin: 0 0 24px 0;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  font-family: 'Inter', sans-serif;
}

#nkktech-ai-telesales .nkktech-gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#nkktech-ai-telesales .nkktech-sub {
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1.7;
  margin: 0 0 32px 0;
  max-width: 650px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

#nkktech-ai-telesales .nkktech-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

#nkktech-ai-telesales .nkktech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 20px;
  border-radius: 30px;
  background: var(--primary-lighter);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
}

#nkktech-ai-telesales .nkktech-pill i {
  color: var(--primary);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

#nkktech-ai-telesales .nkktech-pill:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(4, 105, 216, 0.3);
  border-color: var(--primary);
}

#nkktech-ai-telesales .nkktech-pill:hover i {
  color: white;
}

#nkktech-ai-telesales .nkktech-pill i {
  font-size: 12px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

#nkktech-ai-telesales .nkktech-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

#nkktech-ai-telesales .nkktech-hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(4, 105, 216, 0.15);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(4, 105, 216, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  animation: slideInRight 0.8s ease-out;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#nkktech-ai-telesales .nkktech-hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(4, 105, 216, 0.05) 0%, transparent 70%);
  animation: cardGlow 8s ease-in-out infinite;
}

@keyframes cardGlow {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate(10%, 10%);
    opacity: 0.5;
  }
}

#nkktech-ai-telesales .nkktech-hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(4, 105, 216, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  border-color: rgba(4, 105, 216, 0.3);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#nkktech-ai-telesales .nkktech-card-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(4, 105, 216, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}


#nkktech-ai-telesales .nkktech-hero-card:hover .nkktech-card-icon {
  box-shadow: 0 12px 32px rgba(4, 105, 216, 0.4);
}

#nkktech-ai-telesales .nkktech-h2 {
  font-size: 40px;
  margin: 0 0 16px 0;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
}

#nkktech-ai-telesales .nkktech-p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

/* Outbound Links Styling */
#nkktech-ai-telesales .nkktech-p a,
#nkktech-ai-telesales .nkktech-sub a,
#nkktech-ai-telesales .nkktech-small a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

#nkktech-ai-telesales .nkktech-p a:hover,
#nkktech-ai-telesales .nkktech-sub a:hover,
#nkktech-ai-telesales .nkktech-small a:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

#nkktech-ai-telesales .nkktech-p a:focus,
#nkktech-ai-telesales .nkktech-sub a:focus,
#nkktech-ai-telesales .nkktech-small a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

#nkktech-ai-telesales .nkktech-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

#nkktech-ai-telesales .nkktech-kpi {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 247, 255, 0.6) 100%);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#nkktech-ai-telesales .nkktech-kpi::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(4, 105, 216, 0.1), transparent);
  transition: left 0.5s ease;
}

#nkktech-ai-telesales .nkktech-kpi:hover::before {
  left: 100%;
}

#nkktech-ai-telesales .nkktech-kpi:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(4, 105, 216, 0.15);
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 0.95) 100%);
}

#nkktech-ai-telesales .nkktech-kpi:hover b,
#nkktech-ai-telesales .nkktech-kpi:hover span {
  color: var(--text);
}

#nkktech-ai-telesales .nkktech-kpi:hover i {
  color: var(--primary);
}

#nkktech-ai-telesales .nkktech-kpi i {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

#nkktech-ai-telesales .nkktech-kpi b {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin: 12px 0 6px;
  font-family: 'Inter', sans-serif;
}

#nkktech-ai-telesales .nkktech-kpi span {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

#nkktech-ai-telesales .nkktech-hr {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

#nkktech-ai-telesales .nkktech-highlight {
  background: var(--gradient-light);
  border: 1px solid var(--border);
  padding: 16px 20px;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
}

#nkktech-ai-telesales .nkktech-highlight i {
  color: var(--primary);
  margin-right: 8px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

#nkktech-ai-telesales .nkktech-highlight b {
  color: var(--text);
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

#nkktech-ai-telesales .nkktech-small {
  font-size: 14px;
  color: var(--text-muted);
}

/* Sections */
#nkktech-ai-telesales .nkktech-section {
  padding: 80px 0;
  position: relative;
}

#nkktech-ai-telesales .nkktech-section-alt {
  background: var(--bg-alt);
}

#nkktech-ai-telesales .nkktech-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

#nkktech-ai-telesales .nkktech-section-header .nkktech-h2 {
  margin-bottom: 16px;
}

/* Cards */
#nkktech-ai-telesales .nkktech-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(4, 105, 216, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#nkktech-ai-telesales .nkktech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#nkktech-ai-telesales .nkktech-card:hover::before {
  transform: scaleX(1);
}

#nkktech-ai-telesales .nkktech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(4, 105, 216, 0.15);
  border-color: var(--primary);
}

/* Grids */
#nkktech-ai-telesales .nkktech-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

#nkktech-ai-telesales .nkktech-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

/* Products */
#nkktech-ai-telesales .nkktech-product {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#nkktech-ai-telesales .nkktech-product-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(4, 105, 216, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}


#nkktech-ai-telesales .nkktech-product:hover .nkktech-product-icon {
  box-shadow: 0 12px 32px rgba(4, 105, 216, 0.35);
}


#nkktech-ai-telesales .nkktech-product h3 {
  font-size: 24px;
  margin: 0 0 16px 0;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  font-family: 'Inter', sans-serif;
}

#nkktech-ai-telesales .nkktech-feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  flex: 1;
}

#nkktech-ai-telesales .nkktech-feature-list li {
  padding: 12px 0;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
}

#nkktech-ai-telesales .nkktech-feature-list li:last-child {
  border-bottom: none;
}

#nkktech-ai-telesales .nkktech-feature-list li i {
  color: var(--primary);
  margin-top: 4px;
  font-size: 14px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

#nkktech-ai-telesales .nkktech-product-action {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Use Cases */
#nkktech-ai-telesales .nkktech-use-case {
  text-align: center;
}

#nkktech-ai-telesales .nkktech-use-case-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(4, 105, 216, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#nkktech-ai-telesales .nkktech-use-case:hover .nkktech-use-case-icon {
  box-shadow: 0 12px 32px rgba(4, 105, 216, 0.4);
}

#nkktech-ai-telesales .nkktech-use-case b {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

/* Process */
#nkktech-ai-telesales .nkktech-process-card {
  max-width: 900px;
  margin: 0 auto;
}

/* Timeline Wrapper */
#nkktech-ai-telesales .nkktech-timeline-wrapper {
  position: relative;
  padding: 40px 0;
  max-width: 900px;
  margin: 0 auto;
}

#nkktech-ai-telesales .nkktech-timeline-line {
  position: absolute;
  left: 40px;
  top: 40px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(to bottom, 
    var(--primary) 0%, 
    var(--primary) 50%, 
    var(--secondary) 50%, 
    var(--secondary) 100%);
  border-radius: 2px;
  opacity: 0.2;
}

/* Process List */
#nkktech-ai-telesales .nkktech-process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

#nkktech-ai-telesales .nkktech-process-item {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

#nkktech-ai-telesales .nkktech-process-item:nth-child(1) { animation-delay: 0.1s; }
#nkktech-ai-telesales .nkktech-process-item:nth-child(2) { animation-delay: 0.2s; }
#nkktech-ai-telesales .nkktech-process-item:nth-child(3) { animation-delay: 0.3s; }
#nkktech-ai-telesales .nkktech-process-item:nth-child(4) { animation-delay: 0.4s; }
#nkktech-ai-telesales .nkktech-process-item:nth-child(5) { animation-delay: 0.5s; }

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

/* Process Card New */
#nkktech-ai-telesales .nkktech-process-card-new {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: white;
  border-radius: 20px;
  border: 2px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(4, 105, 216, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#nkktech-ai-telesales .nkktech-process-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#nkktech-ai-telesales .nkktech-process-card-new:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(4, 105, 216, 0.15);
  border-color: var(--primary);
}

#nkktech-ai-telesales .nkktech-process-card-new:hover::before {
  transform: scaleY(1);
}

/* Process Number New */
#nkktech-ai-telesales .nkktech-process-number-new {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(4, 105, 216, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#nkktech-ai-telesales .nkktech-process-card-new:hover .nkktech-process-number-new {
  box-shadow: 0 12px 32px rgba(4, 105, 216, 0.4);
  transform: rotate(5deg);
}

#nkktech-ai-telesales .nkktech-process-number-new span {
  font-size: 32px;
  font-weight: 900;
  color: white;
  font-family: 'Inter', sans-serif;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#nkktech-ai-telesales .nkktech-process-icon {
  display: none;
}

/* Process Content New */
#nkktech-ai-telesales .nkktech-process-content-new {
  flex: 1;
  padding-top: 4px;
}

#nkktech-ai-telesales .nkktech-process-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

#nkktech-ai-telesales .nkktech-process-card-new:hover .nkktech-process-title {
  color: var(--primary);
}

#nkktech-ai-telesales .nkktech-process-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* MVP Wrapper - New Design */
#nkktech-ai-telesales .nkktech-mvp-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

#nkktech-ai-telesales .nkktech-mvp-item-new {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeftMVP 0.6s ease-out forwards;
  will-change: transform;
  backface-visibility: hidden;
  position: relative;
  overflow: hidden;
}

#nkktech-ai-telesales .nkktech-mvp-item-new::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#nkktech-ai-telesales .nkktech-mvp-item-new:nth-child(1) { animation-delay: 0.1s; }
#nkktech-ai-telesales .nkktech-mvp-item-new:nth-child(2) { animation-delay: 0.2s; }
#nkktech-ai-telesales .nkktech-mvp-item-new:nth-child(3) { animation-delay: 0.3s; }
#nkktech-ai-telesales .nkktech-mvp-item-new:nth-child(4) { animation-delay: 0.4s; }
#nkktech-ai-telesales .nkktech-mvp-item-new:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeftMVP {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#nkktech-ai-telesales .nkktech-mvp-item-new:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(4, 105, 216, 0.15);
  border-color: var(--primary);
}

#nkktech-ai-telesales .nkktech-mvp-item-new:hover::before {
  transform: scaleY(1);
}

#nkktech-ai-telesales .nkktech-mvp-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}

#nkktech-ai-telesales .nkktech-mvp-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  box-shadow: 0 8px 24px rgba(4, 105, 216, 0.25);
  transition: all 0.4s ease;
}

#nkktech-ai-telesales .nkktech-mvp-item-new:hover .nkktech-mvp-icon {
  box-shadow: 0 12px 32px rgba(4, 105, 216, 0.4);
}

#nkktech-ai-telesales .nkktech-mvp-icon i {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

#nkktech-ai-telesales .nkktech-mvp-number-new {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(4, 105, 216, 0.3);
  font-family: 'Inter', sans-serif;
  transition: all 0.4s ease;
}

#nkktech-ai-telesales .nkktech-mvp-item-new:hover .nkktech-mvp-number-new {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

#nkktech-ai-telesales .nkktech-mvp-content-new {
  flex: 1;
}

#nkktech-ai-telesales .nkktech-mvp-title-new {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

#nkktech-ai-telesales .nkktech-mvp-item-new:hover .nkktech-mvp-title-new {
  color: var(--primary);
}

#nkktech-ai-telesales .nkktech-mvp-desc-new {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

/* MVP Note - New Design */
#nkktech-ai-telesales .nkktech-mvp-note-new {
  margin-top: 60px;
  background: var(--gradient);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(4, 105, 216, 0.2);
  position: relative;
}

#nkktech-ai-telesales .nkktech-mvp-note-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

#nkktech-ai-telesales .nkktech-mvp-note-content {
  padding: 40px;
  position: relative;
  z-index: 1;
}

#nkktech-ai-telesales .nkktech-mvp-note-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

#nkktech-ai-telesales .nkktech-mvp-note-icon-new {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

#nkktech-ai-telesales .nkktech-mvp-note-icon-new i {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

#nkktech-ai-telesales .nkktech-mvp-note-title {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin: 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#nkktech-ai-telesales .nkktech-mvp-note-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

#nkktech-ai-telesales .nkktech-mvp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#nkktech-ai-telesales .nkktech-mvp-list li {
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  color: var(--text-muted);
  line-height: 1.6;
}

#nkktech-ai-telesales .nkktech-delivery-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#nkktech-ai-telesales .nkktech-delivery-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

#nkktech-ai-telesales .nkktech-delivery-list li i {
  color: var(--primary);
  font-size: 18px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* CTA Section */
#nkktech-ai-telesales .nkktech-section-cta {
  background: var(--gradient);
  color: white;
  padding: 100px 0;
}

#nkktech-ai-telesales .nkktech-section-cta .nkktech-h2 {
  color: var(--text);
}

#nkktech-ai-telesales .nkktech-section-cta .nkktech-p {
  color: var(--text-muted);
}

#nkktech-ai-telesales .nkktech-cta-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#nkktech-ai-telesales .nkktech-cta-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

#nkktech-ai-telesales .nkktech-cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(4, 105, 216, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
}

#nkktech-ai-telesales .nkktech-cta-card:hover::before {
  transform: scaleX(1);
}

#nkktech-ai-telesales .nkktech-cta-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(4, 105, 216, 0.3);
}

#nkktech-ai-telesales .nkktech-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

#nkktech-ai-telesales .nkktech-section-cta .nkktech-btn-primary {
  background: white;
  color: var(--primary);
  border-color: transparent;
}

#nkktech-ai-telesales .nkktech-section-cta .nkktech-btn-primary::before {
  background: rgba(4, 105, 216, 0.2);
}

#nkktech-ai-telesales .nkktech-section-cta .nkktech-btn-primary::after {
  background: rgba(4, 105, 216, 0.2);
}

#nkktech-ai-telesales .nkktech-section-cta .nkktech-btn-primary:hover {
  background: var(--bg-alt);
  border-color: rgba(4, 105, 216, 0.3);
}

#nkktech-ai-telesales .nkktech-section-cta .nkktech-btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

#nkktech-ai-telesales .nkktech-section-cta .nkktech-btn-secondary:hover {
  background: var(--primary-lighter);
  border-color: var(--primary);
}

/* Industries Grid */
#nkktech-ai-telesales .nkktech-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

#nkktech-ai-telesales .nkktech-industry-card {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUpIndustry 0.6s ease-out forwards;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

#nkktech-ai-telesales .nkktech-industry-card:nth-child(1) { animation-delay: 0.1s; }
#nkktech-ai-telesales .nkktech-industry-card:nth-child(2) { animation-delay: 0.2s; }
#nkktech-ai-telesales .nkktech-industry-card:nth-child(3) { animation-delay: 0.3s; }
#nkktech-ai-telesales .nkktech-industry-card:nth-child(4) { animation-delay: 0.4s; }
#nkktech-ai-telesales .nkktech-industry-card:nth-child(5) { animation-delay: 0.5s; }
#nkktech-ai-telesales .nkktech-industry-card:nth-child(6) { animation-delay: 0.6s; }

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

#nkktech-ai-telesales .nkktech-industry-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(4, 105, 216, 0.2);
  border-color: var(--primary);
}

#nkktech-ai-telesales .nkktech-industry-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(4, 105, 216, 0.25);
}

#nkktech-ai-telesales .nkktech-industry-icon i {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: relative;
  z-index: 1;
}

#nkktech-ai-telesales .nkktech-industry-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

#nkktech-ai-telesales .nkktech-industry-card:hover .nkktech-industry-title {
  color: var(--primary);
}

#nkktech-ai-telesales .nkktech-industry-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

#nkktech-ai-telesales .nkktech-industries-note {
  text-align: center;
  margin-top: 48px;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: 16px;
  border-left: 4px solid var(--primary);
}

#nkktech-ai-telesales .nkktech-industries-note .nkktech-p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

#nkktech-ai-telesales .nkktech-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 20px;
  opacity: 0.8;
}

#nkktech-ai-telesales .nkktech-card-icon-small {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(4, 105, 216, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#nkktech-ai-telesales .nkktech-card:hover .nkktech-card-icon-small {
  box-shadow: 0 12px 32px rgba(4, 105, 216, 0.35);
}

/* Responsive Design */
@media (max-width: 1024px) {
  #nkktech-ai-telesales .nkktech-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #nkktech-ai-telesales .nkktech-grid3 {
    grid-template-columns: repeat(2, 1fr);
  }

  #nkktech-ai-telesales .nkktech-h1 {
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  /* Tablet adjustments */
  #nkktech-ai-telesales .nkktech-nav {
    position: fixed;
  }

  #nkktech-ai-telesales .nkktech-nav-inner {
    justify-content: unset;
    padding: 20px 24px;
    min-height: 70px;
    position: relative;
  }
  
  #nkktech-ai-telesales .nkktech-brand {
    margin-right: auto;
  }

  #nkktech-ai-telesales .nkktech-mobile-menu-toggle {
    display: flex;
    align-items: center;
    z-index: 1002;
    position: relative;
  }

  /* Mobile menu backdrop overlay */
  #nkktech-ai-telesales .nkktech-nav::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    pointer-events: none;
  }

  /* Hide desktop menu, show mobile menu */
  #nkktech-ai-telesales .nkktech-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(4, 105, 216, 0.15);
    z-index: 1001;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    animation: slideDownMenu 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes slideDownMenu {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideUpMenu {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-20px);
    }
  }

  #nkktech-ai-telesales .nkktech-links.active {
    display: flex;
  }

  #nkktech-ai-telesales .nkktech-links.closing {
    animation: slideUpMenu 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  #nkktech-ai-telesales .nkktech-logo {
    height: 45px;
  }

  #nkktech-ai-telesales .nkktech-nav-link {
    padding: 16px 20px;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    justify-content: flex-start;
  }

  #nkktech-ai-telesales .nkktech-nav-link i {
    font-size: 18px;
    min-width: 24px;
    text-align: center;
  }

  #nkktech-ai-telesales .nkktech-nav-link span {
    display: inline-block;
    font-weight: 600;
  }

  #nkktech-ai-telesales .nkktech-nav-link:hover {
    background: var(--primary-lighter);
    transform: translateX(4px);
  }

  #nkktech-ai-telesales .nkktech-nav-link.active {
    background: var(--primary-lighter);
    color: var(--primary);
  }

  #nkktech-ai-telesales .nkktech-badge {
    display: none;
  }

  #nkktech-ai-telesales .nkktech-hero {
    min-height: 550px;
    padding: 80px 0 60px;
  }
}

@media (max-width: 768px) {
  /* Timeline responsive */
  #nkktech-ai-telesales .nkktech-timeline-wrapper {
    padding: 30px 0;
  }

  #nkktech-ai-telesales .nkktech-timeline-line {
    left: 35px;
    top: 30px;
    bottom: 30px;
  }

  #nkktech-ai-telesales .nkktech-process-list {
    gap: 32px;
  }

  #nkktech-ai-telesales .nkktech-process-card-new {
    padding: 24px;
    gap: 20px;
  }

  #nkktech-ai-telesales .nkktech-process-number-new {
    width: 70px;
    height: 70px;
  }

  #nkktech-ai-telesales .nkktech-process-number-new span {
    font-size: 28px;
  }

  #nkktech-ai-telesales .nkktech-process-icon i {
    font-size: 24px;
  }

  #nkktech-ai-telesales .nkktech-process-title {
    font-size: 22px;
  }

  #nkktech-ai-telesales .nkktech-process-desc {
    font-size: 15px;
  }

  #nkktech-ai-telesales .nkktech-nav-inner {
    padding: 16px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 65px;
  }

  #nkktech-ai-telesales .nkktech-links {
    padding: 16px 20px;
    max-height: calc(100vh - 65px);
  }

  #nkktech-ai-telesales .nkktech-nav-link {
    padding: 14px 18px;
    font-size: 14px;
  }

  #nkktech-ai-telesales .nkktech-hero {
    padding: 60px 0 40px;
    min-height: 500px;
  }


  #nkktech-ai-telesales .nkktech-h1 {
    font-size: 36px;
  }

  #nkktech-ai-telesales .nkktech-sub {
    font-size: 18px;
  }

  #nkktech-ai-telesales .nkktech-section {
    padding: 60px 0;
  }

  #nkktech-ai-telesales .nkktech-grid3,
  #nkktech-ai-telesales .nkktech-grid2 {
    grid-template-columns: 1fr;
  }

  #nkktech-ai-telesales .nkktech-industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  #nkktech-ai-telesales .nkktech-industry-card {
    padding: 28px;
  }

  #nkktech-ai-telesales .nkktech-industry-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
    margin-bottom: 20px;
  }

  #nkktech-ai-telesales .nkktech-industry-title {
    font-size: 18px;
  }

  #nkktech-ai-telesales .nkktech-industry-desc {
    font-size: 13px;
  }

  #nkktech-ai-telesales .nkktech-mvp-wrapper {
    gap: 16px;
  }

  #nkktech-ai-telesales .nkktech-mvp-item-new {
    padding: 24px;
    gap: 20px;
  }

  #nkktech-ai-telesales .nkktech-mvp-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

  #nkktech-ai-telesales .nkktech-mvp-number-new {
    width: 28px;
    height: 28px;
    font-size: 12px;
    top: -6px;
    right: -6px;
  }

  #nkktech-ai-telesales .nkktech-mvp-title-new {
    font-size: 20px;
  }

  #nkktech-ai-telesales .nkktech-mvp-desc-new {
    font-size: 14px;
  }

  #nkktech-ai-telesales .nkktech-mvp-note-new {
    margin-top: 48px;
  }

  #nkktech-ai-telesales .nkktech-mvp-note-content {
    padding: 32px;
  }

  #nkktech-ai-telesales .nkktech-mvp-note-title {
    font-size: 22px;
  }

  #nkktech-ai-telesales .nkktech-mvp-note-text {
    font-size: 15px;
  }

  #nkktech-ai-telesales .nkktech-kpis {
    grid-template-columns: 1fr;
  }

  #nkktech-ai-telesales .nkktech-hero-actions {
    flex-direction: column;
  }

  #nkktech-ai-telesales .nkktech-hero-actions .nkktech-btn {
    width: 100%;
  }

  #nkktech-ai-telesales .nkktech-cta-actions {
    flex-direction: column;
  }

  #nkktech-ai-telesales .nkktech-cta-actions .nkktech-btn {
    width: 100%;
  }

  #nkktech-ai-telesales .nkktech-cta-card {
    padding: 40px 30px;
  }

  #nkktech-ai-telesales .nkktech-cta-card:hover {
    transform: translateY(-6px);
  }

  #nkktech-ai-telesales .nkktech-btn span {
    display: none;
  }
}

@media (max-width: 480px) {
  /* Timeline mobile */
  #nkktech-ai-telesales .nkktech-timeline-wrapper {
    padding: 20px 0;
  }

  #nkktech-ai-telesales .nkktech-timeline-line {
    left: 30px;
    width: 2px;
    top: 20px;
    bottom: 20px;
  }

  #nkktech-ai-telesales .nkktech-process-list {
    gap: 28px;
  }

  #nkktech-ai-telesales .nkktech-process-card-new {
    padding: 20px;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  #nkktech-ai-telesales .nkktech-process-card-new:hover {
    transform: translateY(-4px);
  }

  #nkktech-ai-telesales .nkktech-process-number-new {
    width: 60px;
    height: 60px;
  }

  #nkktech-ai-telesales .nkktech-process-number-new span {
    font-size: 24px;
  }

  #nkktech-ai-telesales .nkktech-process-icon i {
    font-size: 20px;
  }

  #nkktech-ai-telesales .nkktech-process-title {
    font-size: 20px;
  }

  #nkktech-ai-telesales .nkktech-process-desc {
    font-size: 14px;
  }

  #nkktech-ai-telesales .nkktech-container {
    padding: 0 16px;
  }

  #nkktech-ai-telesales .nkktech-nav-inner {
    gap: 0;
    padding: 14px 16px;
    min-height: 65px;
  }

  #nkktech-ai-telesales .nkktech-logo {
    height: 40px;
  }


  #nkktech-ai-telesales .nkktech-h1 {
    font-size: 28px;
  }

  #nkktech-ai-telesales .nkktech-h2 {
    font-size: 24px;
  }

  #nkktech-ai-telesales .nkktech-card {
    padding: 24px;
  }

  #nkktech-ai-telesales .nkktech-hero-card {
    padding: 24px;
  }

  #nkktech-ai-telesales .nkktech-industries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #nkktech-ai-telesales .nkktech-industry-card {
    padding: 24px;
  }

  #nkktech-ai-telesales .nkktech-industry-card:hover {
    transform: translateY(-6px);
  }

  #nkktech-ai-telesales .nkktech-mvp-wrapper {
    gap: 14px;
  }

  #nkktech-ai-telesales .nkktech-mvp-item-new {
    padding: 20px;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  #nkktech-ai-telesales .nkktech-mvp-item-new:hover {
    transform: translateX(4px);
  }

  #nkktech-ai-telesales .nkktech-mvp-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  #nkktech-ai-telesales .nkktech-mvp-number-new {
    width: 24px;
    height: 24px;
    font-size: 11px;
    top: -4px;
    right: -4px;
  }

  #nkktech-ai-telesales .nkktech-mvp-title-new {
    font-size: 18px;
  }

  #nkktech-ai-telesales .nkktech-mvp-desc-new {
    font-size: 13px;
  }

  #nkktech-ai-telesales .nkktech-mvp-note-new {
    margin-top: 40px;
  }

  #nkktech-ai-telesales .nkktech-mvp-note-content {
    padding: 28px 24px;
  }

  #nkktech-ai-telesales .nkktech-mvp-note-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  #nkktech-ai-telesales .nkktech-mvp-note-icon-new {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  #nkktech-ai-telesales .nkktech-mvp-note-title {
    font-size: 20px;
  }

  #nkktech-ai-telesales .nkktech-mvp-note-text {
    font-size: 14px;
  }

  #nkktech-ai-telesales .nkktech-industry-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
    margin-bottom: 16px;
  }

  #nkktech-ai-telesales .nkktech-industry-title {
    font-size: 16px;
  }

  #nkktech-ai-telesales .nkktech-industry-desc {
    font-size: 12px;
  }

  #nkktech-ai-telesales .nkktech-industries-note {
    margin-top: 32px;
    padding: 20px;
  }

  #nkktech-ai-telesales .nkktech-mvp-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #nkktech-ai-telesales .nkktech-mvp-item {
    padding: 20px;
    gap: 14px;
  }

  #nkktech-ai-telesales .nkktech-mvp-item:hover {
    transform: translateY(-4px);
  }

  #nkktech-ai-telesales .nkktech-mvp-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  #nkktech-ai-telesales .nkktech-mvp-title {
    font-size: 15px;
  }

  #nkktech-ai-telesales .nkktech-mvp-desc {
    font-size: 12px;
  }

  #nkktech-ai-telesales .nkktech-mvp-note {
    margin-top: 32px;
    padding: 18px 20px;
  }

  #nkktech-ai-telesales .nkktech-mvp-note-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  #nkktech-ai-telesales .nkktech-cta-card {
    padding: 32px 24px;
  }

  #nkktech-ai-telesales .nkktech-cta-card:hover {
    transform: translateY(-4px);
  }

  #nkktech-ai-telesales .nkktech-cta-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
    margin-bottom: 20px;
  }
}